view release on metacpan or search on metacpan
hax/optree-additions.c.inc view on Meta::CPAN
{
#if HAVE_PERL_VERSION(5, 22, 0)
OP *op = newMETHOP_named(OP_METHOD_REDIR, flags, methname);
# ifdef USE_ITHREADS
{
/* cargoculted from S_op_relocate_sv() */
PADOFFSET ix = pad_alloc(OP_CONST, SVf_READONLY);
PAD_SETSV(ix, rclass);
cMETHOPx(op)->op_rclass_targ = ix;
}
# else
view all matches for this distribution
view release on metacpan or search on metacpan
MAX_UTF8_TWO_BYTE|5.019004||Viu
MAYBE_DEREF_GV|5.015003||Viu
MAYBE_DEREF_GV_flags|5.015003||Viu
MAYBE_DEREF_GV_nomg|5.015003||Viu
maybe_multimagic_gv|5.019004||Viu
mayberelocate|5.015006||Viu
MBOL|5.003007||Viu
MDEREF_ACTION_MASK|5.021007||Viu
MDEREF_AV_gvav_aelem|5.021007||Viu
MDEREF_AV_gvsv_vivify_rv2av_aelem|5.021007||Viu
MDEREF_AV_padav_aelem|5.021007||Viu
op_refcnt_lock|5.009002|5.009002|u
OpREFCNT_set|5.006000||Viu
OP_REFCNT_TERM|5.006000||Viu
OP_REFCNT_UNLOCK|5.006000||Viu
op_refcnt_unlock|5.009002|5.009002|u
op_relocate_sv|5.021005||Viu
op_scope|5.013007|5.013007|x
OP_SIBLING|5.021002||Viu
OpSIBLING|5.021007|5.003007|p
op_sibling_splice|5.021002|5.021002|n
OpSLAB|5.017002||Viu
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Data/Edit/Xml/To/DitaVb.pm view on Meta::CPAN
allowUniquePartialMatches => xrefAllowUniquePartialMatches,
changeBadXrefToPh => changeBadXrefToPh,
deguidize => °uidize,
fixBadRefs => &fixBadRefs,
fixDitaRefs => &fixDitaRefs ? targets : undef, # Location of targets if we are going to fix dita refs in the output corpus that were valid in the input corpus
fixRelocatedRefs => &fixRelocatedRefs, # Fix references to relocated files that adhere to the GB Standard.
fixXrefsByTitle => &fixXrefsByTitle, # Fix xref by unique title
inputFolder => &out,
matchTopics => &xrefMatchTopics,
maximumNumberOfProcesses => &maximumNumberOfProcesses,
reports => &reports,
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Data/Edit/Xml/Xref.pm view on Meta::CPAN
otherMetaConsolidated => {}, # {Name}{Content}++ : consolidated other meta data across entire corpus
oxygenProjects => undef, #I Create oxygen project files for each map - the project file will have an extension of .xpr and the same name and path as the map file or the name return by your implem...
parseFailed => {}, # {file} files that failed to parse.
publicId => {}, # {file} = Public id on Doctype
references => {}, # {file}{reference}++ - the various references encountered
relocatedReferencesFailed => [], # Failing references that were not fixed by relocation
relocatedReferencesFixed => [], # Relocated references fixed
requestAttributeNameAndValueCounts => undef, #I Report attribute name and value counts
requiredCleanUp => undef, # {full file name}{cleanup} = number of required-cleanups
reports => undef, #I Reports folder: Xref will write text versions of the generated reports to files in this folder.
results => [], # Summary of results table.
# sourceFile => undef, # The source file from whic#h this structure was generated.
lib/Data/Edit/Xml/Xref.pm view on Meta::CPAN
# Fix a file by moving its hrefs and conrefs to the xtrf attribute unless
# deguidization is in effect and the guid can be converted into a valid Dita
# reference accessing a file in the input corpus.
#
# If fixRelocatedRefs is in effect: such references are fixed by assuming that
# the files mentioned in broken links have been relocated else where in the
# folder structure and can be located by base file name alone.
#
# If fixXrefsByTitle is in effect apply the Gearhart Title Method: fix broken
# xrefs by looking for a unique topic with the same title text as the content of
# the xref.
lib/Data/Edit/Xml/Xref.pm view on Meta::CPAN
}
undef # Failed
};
my $fixRelRef = sub # Attempt to fix a reference broken by relocation
{my ($R, $rest) = split m(#)s, $ref, 2; # Get referenced file name
if ($R)
{my $r = fne($R); # Href file base name
if (my $F = $xref->baseFiles->{$r}) # Relocated else where
{my @targets = sort keys(%$F); # Relocation targets
if (@targets == 1) # Just one such relocation
{my $f = relFromAbsAgainstAbs($targets[0], $sourceFile); # Link to it
if ($f ne $R)
{my $newLink; # Fix if the target is else where
if ($rest) # Link has more than one component
{$node->set($attr=>($newLink = $f.q(#).$rest)); # Reset link
}
else # Link has just one component
{$node->set($attr=>($newLink = $f)); # Reset link
}
my $saveRef = $ref; $ref = $newLink; # Try fixing the relocated reference as a dita reference.
my $r = &$fixOneFullDitaRef;
$ref = $saveRef;
return $r;
}
}
lib/Data/Edit/Xml/Xref.pm view on Meta::CPAN
if (@unresolved and $xref->fixBadRefs) # Unresolved - transfer all references to xtrf so some-one else can try
{$node->renameAttr($attr, q(xtrf)); # No target file for guid
&$bad(q(No file for guid)); # Report failure
}
}
elsif ($xref->fixRelocatedRefs and &$fixRelRef) # Try to fix as a relocated ref if possible
{
}
elsif ($xref->fixXrefsByTitle and &$fixXrefByTitle) # Try to fix a missing xref by title
{
}
lib/Data/Edit/Xml/Xref.pm view on Meta::CPAN
END
file => fpe(qw(lists topic_flattening txt)));
}
}
if ($xref->fixRelocatedRefs) # Load base file name to full name but if needed to do relocation fixes
{my %baseFiles; # Map base files back to full files. The base file is the file name shorn of the path - the reason the GB Standard is so important
for my $file(searchDirectoryTreesForMatchingFiles($xref->inputFolder)) # All input files
{my $base = fne $file; # Base file name - the GB Standard name for the file
$baseFiles{$base}{$file}++; # Current location of the file
}
lib/Data/Edit/Xml/Xref.pm view on Meta::CPAN
L<GBStandard> to generate the flattened file names. Xref will then update all
L<Dita> references to match these new file names. If the L<flattenFolder>
folder is the same as the L<inputFolder> then the input files are flattened in
place.
=head2 Locating relocated files
File references in B<conref> or B<hrefs> that have a unique valid base file
name and an invalid path can be fixed by setting the input attribute:
fixRelocatedRefs => 1
lib/Data/Edit/Xml/Xref.pm view on Meta::CPAN
B<publicId> - {file} = Public id on Doctype
B<references> - {file}{reference}++ - the various references encountered
B<relocatedReferencesFailed> - Failing references that were not fixed by relocation
B<relocatedReferencesFixed> - Relocated references fixed
B<requiredCleanUp> - {full file name}{cleanup} = number of required-cleanups
B<results> - Summary of results table.
lib/Data/Edit/Xml/Xref.pm view on Meta::CPAN
<concept id="c">
<title>C2</title>
<conbody>
<p conref="$r#c/p1"/>
<p conref="$r#c1/p1"/> <!-- PASSES: wrong topic id but we ignore topic ids-->
<p conref="$r#c/bad"/> <!-- PASSES: no such id - SHOULD FAIL even though we are relocating -->
<p conref="$r"/>
<p conref="c.dta"/> <!-- FAILS: no such file -->
<p id="q1">aaa</p>
<p conref="#c/q1"/>
</conbody>
lib/Data/Edit/Xml/Xref.pm view on Meta::CPAN
},
"c_aaaa_bbbb_55baefe9258538b26a95b0015a8d5a2b.dita" => { p1 => 1 },
"c_aaaa_cccc_a91633094220d068c453eecae1726eff.dita" => { p2 => 1 },
"c_aaaa_dddd_914b8e11993908497768c50d992ea0f0.dita" => { p3 => 1 },
},
relocatedReferencesFailed => [],
relocatedReferencesFixed => [],
reports => '',
requestAttributeNameAndValueCounts => undef,
requiredCleanUp => {},
results => [[1, "ref"]],
sourceTopicToTargetBookMap => {
lib/Data/Edit/Xml/Xref.pm view on Meta::CPAN
otherMetaRemainWithTopic => [],
oxygenProjects => undef,
parseFailed => {},
publicId => { "c1.dita" => undef, "c2.dita" => undef },
references => {},
relocatedReferencesFailed => [],
relocatedReferencesFixed => [],
reports => '',
requestAttributeNameAndValueCounts => undef,
requiredCleanUp => {
"c1.dita" => { aaa => 1, bbb => 2 },
"c2.dita" => { aaa => 1, bbb => 1, ccc => 1, CCC => 1 },
lib/Data/Edit/Xml/Xref.pm view on Meta::CPAN
"p1" => 1,
"q1" => 1,
},
"c_12345678123456781234567812345678.dita" => { p1 => 1, pp => 1 },
},
relocatedReferencesFailed => [],
relocatedReferencesFixed => [],
reports => '',
requestAttributeNameAndValueCounts => undef,
requiredCleanUp => {},
results => [[1, "duplicate id"], [6, "refs"], [1, "duplicate topic id"]],
sourceTopicToTargetBookMap => {},
lib/Data/Edit/Xml/Xref.pm view on Meta::CPAN
otherMetaRemainWithTopic => [],
oxygenProjects => undef,
parseFailed => {},
publicId => { "concept.dita" => "EN" },
references => {},
relocatedReferencesFailed => [],
relocatedReferencesFixed => [],
reports => "",
requestAttributeNameAndValueCounts => undef,
requiredCleanUp => {},
results => [[2, "urls"]],
sourceTopicToTargetBookMap => {},
view all matches for this distribution
view release on metacpan or search on metacpan
Hierarchy.pm view on Meta::CPAN
$hierarchy = $hierarchy->to_relative('/home/super_project')->to_absolute('/home/awesome_project');
(Data::Hierarchy::Relative objects may be a more convenient
serialization format than Data::Hierarchy objects, if they are
tracking the state of some relocatable resource.)
=cut
sub to_relative {
my $self = shift;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Data/Layout/BuddySystem.pm view on Meta::CPAN
{return bless {};
}
sub freeChains{$_[0]{freeChains} //= []} ## Addresses of free blocks organised by power of two size
sub usedSize {$_[0]{usedSize} //= {}} ## {address} = size of allocation at that address
sub wentTo {$_[0]{wentTo} //= {}} ## {address1} = address2 - where address 1 was relocated to by copy
sub cameFrom {$_[0]{cameFrom} //= {}} ## {address1} = address2 - where address 1 came from before being copied
sub allFrees {$_[0]{allFrees} //= []} ## [chain] = count of allocations minus frees on this chain
sub nameAlloc {$_[0]{nameAlloc} //= {}} ## {name} = name of allocation if a name has been supplied
sub allocName {$_[0]{allocName} //= {}} ## {address} = name of allocation at this address if a name has been supplied
sub size {scalar @{$_[0]->freeChains}} ## Number of free chains in use
lib/Data/Layout/BuddySystem.pm view on Meta::CPAN
}
} # alloc
sub locateAddress($$) # Find the current location of a block by its original address after it has been copied to a new buddy system
{my ($buddySystem, $alloc) = @_; # Buddy system, address at which the block was originally located
$buddySystem->wentTo->{$alloc} // $alloc # The relocated address if there is one, else the current address
} # locateAddress
sub locateName($$) # Find the current location of a named block after it has been copied to a new buddy system
{my ($buddySystem, $name) = @_; # Buddy system, name of the block
my $alloc = $buddySystem->nameAlloc->{$name}; # Address of named block
defined($alloc) or confess "No such named block: $name"; # Complain of no such block exists
$buddySystem->locateAddress($alloc) # The relocated address if there is one, else the current address
} # locateName
sub sizeAddress($$) # Size of allocation at an address
{my ($buddySystem, $address) = @_; # Buddy system, address of allocation whiose size we want
$buddySystem->{usedSize}{$address} # Size of allocation at specified address
lib/Data/Layout/BuddySystem.pm view on Meta::CPAN
say STDOUT "$title $T" if $title;
$T
} # visualise
#2 Relocation # These methods copy one buddy system to another compacting free space in the process.
sub copy($$;$) # Copy a buddy system to compact its free space, the largest blocks are placed in (0) - ascending, (1) - descending order of size, blocks that get relocated to new positi...
{my ($buddySystem, $order, $copy) = @_; # Buddy system, order, optional copy method to copy an old allocation into its corresponding new allocation
my $n = new; # The new buddy system
if (my $u = $buddySystem->usedSize) # Used blocks decreasing in size but increasing by address within each size
{my @u = sort
lib/Data/Layout/BuddySystem.pm view on Meta::CPAN
$a <=> $b # Ascending address
} keys %$u;
for my $a(@u) # Each used block
{my $size = $u->{$a}; # Size of this block
my $A; # Address of relocated block
if (my $name = $buddySystem->allocName->{$a}) # Name attached to the block
{$A = $n->allocField($name, $size); # Create new block with same name in new buddy system
}
else
{$A = $n->alloc($size); # Matching block in new buddy system
lib/Data/Layout/BuddySystem.pm view on Meta::CPAN
These methods copy one buddy system to another compacting free space in the process.
=head3 copy($buddySystem, $order, $copy)
Copy a buddy system to compact its free space, the largest blocks are placed in (0) - ascending, (1) - descending order of size, blocks that get relocated to new positions in the new buddy system will still be accessible by their original address or ...
Parameter Description
1 $buddySystem Buddy system
2 $order order
3 $copy optional copy method to copy an old allocation into its corresponding new allocation
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Data/ParseBinary/Executable/PE32.pm view on Meta::CPAN
my $msdos_header = Struct("msdos_header",
Magic("MZ"),
ULInt16("partPag"),
ULInt16("page_count"),
ULInt16("relocation_count"),
ULInt16("header_size"),
ULInt16("minmem"),
ULInt16("maxmem"),
ULInt16("relocation_stackseg"),
ULInt16("exe_stackptr"),
ULInt16("checksum"),
ULInt16("exe_ip"),
ULInt16("relocation_codeseg"),
ULInt16("table_offset"),
ULInt16("overlay"),
Padding(8),
ULInt16("oem_id"),
ULInt16("oem_info"),
lib/Data/ParseBinary/Executable/PE32.pm view on Meta::CPAN
0 => 'export_table',
1 => 'import_table',
2 => 'resource_table',
3 => 'exception_table',
4 => 'certificate_table',
5 => 'base_relocation_table',
6 => 'debug',
7 => 'architecture',
8 => 'global_ptr',
9 => 'tls_table',
10 => 'load_config_table',
lib/Data/ParseBinary/Executable/PE32.pm view on Meta::CPAN
String("name", 8, padchar => "\x00"),
ULInt32("virtual_size"),
ULInt32("virtual_address"),
ULInt32("raw_data_size"),
ULInt32("raw_data_pointer"),
ULInt32("relocations_pointer"),
ULInt32("line_numbers_pointer"),
ULInt16("number_of_relocations"),
ULInt16("number_of_line_numbers"),
FlagsEnum(ULInt32("characteristics"),
TYPE_REG => 0x00000000,
TYPE_DSECT => 0x00000001,
TYPE_NOLOAD => 0x00000002,
lib/Data/ParseBinary/Executable/PE32.pm view on Meta::CPAN
ULInt16("line_number"),
)
)
),
Pointer(sub { $_->ctx->{relocations_pointer} },
Array(sub { $_->ctx->{number_of_relocations} },
Struct("relocations",
ULInt32("virtual_address"),
ULInt32("symbol_table_index"),
ULInt16("type"),
)
)
view all matches for this distribution
view release on metacpan or search on metacpan
share/dictionary.txt view on Meta::CPAN
reload
reload's
reloaded
reloading
reloads
relocatable
relocate
relocated
relocates
relocating
relocation
relocation's
reluctance
reluctance's
reluctant
reluctantly
rely
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Data/Password/zxcvbn/RankedDictionaries/English.pm view on Meta::CPAN
'religiously' => 14185,
'relinquished' => 10106,
'reliquary' => 23222,
'reloaded' => 18214,
'reloading' => 24108,
'relocate' => 7759,
'relocated' => 2637,
'relocating' => 9715,
'relocation' => 6664,
'reluctance' => 10486,
'reluctant' => 5552,
'reluctantly' => 7499,
'relying' => 7422,
'remade' => 10276,
view all matches for this distribution
view release on metacpan or search on metacpan
MAX_UTF8_TWO_BYTE|5.019004||Viu
MAYBE_DEREF_GV|5.015003||Viu
MAYBE_DEREF_GV_flags|5.015003||Viu
MAYBE_DEREF_GV_nomg|5.015003||Viu
maybe_multimagic_gv|5.019004||Viu
mayberelocate|5.015006||Viu
MBLEN_LOCK|5.033005||Viu
MBLEN_UNLOCK|5.033005||Viu
MBOL|5.003007||Viu
MBOL_t8|5.035004||Viu
MBOL_t8_p8|5.033003||Viu
op_refcnt_lock|5.009002|5.009002|u
OpREFCNT_set|5.006000||Viu
OP_REFCNT_TERM|5.006000||Viu
OP_REFCNT_UNLOCK|5.006000||Viu
op_refcnt_unlock|5.009002|5.009002|u
op_relocate_sv|5.021005||Viu
op_scope|5.013007|5.013007|x
OP_SIBLING|5.021002||Viu
OpSIBLING|5.021007|5.003007|p
op_sibling_splice|5.021002|5.021002|n
OpSLAB|5.017002||Viu
view all matches for this distribution
view release on metacpan or search on metacpan
radius/starent view on Meta::CPAN
VALUE SN1-Disconnect-Reason x2-remote-failure 318
VALUE SN1-Disconnect-Reason x1-pmk-key-change-failure 319
VALUE SN1-Disconnect-Reason sa-rekeying-failure 320
VALUE SN1-Disconnect-Reason sess-sleep-mode-entry-timeout 321
VALUE SN1-Disconnect-Reason phsgw-non-anchor-prohibited 322
VALUE SN1-Disconnect-Reason asnpc-pc-relocation-failed 323
VALUE SN1-Disconnect-Reason asnpc-pc-relocation 324
VALUE SN1-Disconnect-Reason auth_policy_mismatch 325
VALUE SN1-Disconnect-Reason sa-lifetime-expiry 326
VALUE SN1-Disconnect-Reason asnpc-del-ms-entry-recd 327
VALUE SN1-Disconnect-Reason phspc-sleep-mode-timeout 328
VALUE SN1-Disconnect-Reason phspc-sleep-mode-exit 329
radius/starent view on Meta::CPAN
VALUE SN1-Disconnect-Reason mme-Illegal-equipment 465
VALUE SN1-Disconnect-Reason mme-unexpected-attach 466
VALUE SN1-Disconnect-Reason mme-sgw-selection-failure 467
VALUE SN1-Disconnect-Reason mme-pgw-selection-failure 468
VALUE SN1-Disconnect-Reason mme-reselection-to-sgsn 469
VALUE SN1-Disconnect-Reason mme-relocation-to-sgsn 470
VALUE SN1-Disconnect-Reason mme-reselection-to-mme 471
VALUE SN1-Disconnect-Reason mme-relocation-to-mme 472
VALUE SN1-Disconnect-Reason mme-tau-attach-collision 473
VALUE SN1-Disconnect-Reason mme-old-sgsn-resolution-failure 474
VALUE SN1-Disconnect-Reason mme-old-mme-resolution-failure 475
VALUE SN1-Disconnect-Reason mme-reloc-ho-notify-timeout 476
VALUE SN1-Disconnect-Reason mme-reloc-ho-req-ack-timeout 477
radius/starent view on Meta::CPAN
VALUE SN1-Disconnect-Reason mme-policy-no-ue-irat 481
VALUE SN1-Disconnect-Reason mme-x2-handover-failed 482
VALUE SN1-Disconnect-Reason mme-attach-restrict 483
VALUE SN1-Disconnect-Reason mme-regional-zone-code 484
VALUE SN1-Disconnect-Reason mme-no-response-from-ue 485
VALUE SN1-Disconnect-Reason mme-sgw-relocation-failed 486
VALUE SN1-Disconnect-Reason mme-implicit-detach 487
VALUE SN1-Disconnect-Reason sgsn-detach-notify 488
VALUE SN1-Disconnect-Reason policy-initiated-release 489
VALUE SN1-Disconnect-Reason gy-result-code-system-failure 490
VALUE SN1-Disconnect-Reason mme-zone-code-validation-failed 492
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Data/Random/Contact/Language/EN.pm view on Meta::CPAN
reload
reload's
reloaded
reloading
reloads
relocatable
relocate
relocated
relocates
relocating
relocation
relocation's
reluctance
reluctance's
reluctant
reluctantly
rely
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Data/Random/dict view on Meta::CPAN
reload
reloaded
reloader
reloading
reloads
relocatable
relocate
relocated
relocates
relocating
relocation
relocations
reluctance
reluctant
reluctantly
rely
relying
view all matches for this distribution
view release on metacpan or search on metacpan
t/lib/api.pm view on Meta::CPAN
$store->stow( "x" x 8188, $id ); # 12 is max 4092, 13 is max 8187
is( $store->entry_count, 3, "still 3 entry count in store" );
# is( $store->record_count, 3, "still 3 record count in store" );
is( $store->fetch( $yid ), "y", "correctly relocated data" );
# try for a much smaller relocation
$store->stow( "x" x 90, $id );
is( $store->entry_count, 3, "yet still 3 entry count in store" );
# is( $store->record_count, 3, "yet still 3 record count in store" );
view all matches for this distribution
view release on metacpan or search on metacpan
testing resource I use. Bummer!
2.0.1 2015-10-04 10:19:01+01:00 Europe/London
- No functional changes.
- POD relocated.
- Code cleaned-up a little.
2.0.0 2015-09-12 09:37:23+01:00 Europe/London
view all matches for this distribution
view release on metacpan or search on metacpan
MAX_UTF8_TWO_BYTE|5.019004||Viu
MAYBE_DEREF_GV|5.015003||Viu
MAYBE_DEREF_GV_flags|5.015003||Viu
MAYBE_DEREF_GV_nomg|5.015003||Viu
maybe_multimagic_gv|5.019004||Viu
mayberelocate|5.015006||Viu
MBLEN_LOCK|5.033005||Viu
MBLEN_UNLOCK|5.033005||Viu
MBOL|5.003007||Viu
MBOL_t8|5.035004||Viu
MBOL_t8_p8|5.033003||Viu
op_refcnt_lock|5.009002|5.009002|u
OpREFCNT_set|5.006000||Viu
OP_REFCNT_TERM|5.006000||Viu
OP_REFCNT_UNLOCK|5.006000||Viu
op_refcnt_unlock|5.009002|5.009002|u
op_relocate_sv|5.021005||Viu
op_scope|5.013007|5.013007|x
OP_SIBLING|5.021002||Viu
OpSIBLING|5.021007|5.003007|p
op_sibling_splice|5.021002|5.021002|n
OpSLAB|5.017002||Viu
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Data/Table/Text.pm view on Meta::CPAN
realEd => [q(RealEd), "https://goldcoastschools.com/" ],
read => [q(read), "https://en.wikipedia.org/wiki/Reading_(computer)" ],
recursively => [q(recursively), "https://en.wikipedia.org/wiki/Recursion" ],
recursive => [q(recursive), "https://en.wikipedia.org/wiki/Recursion" ],
redmine => [q(Redmine), "https://en.wikipedia.org/wiki/Redmine" ],
relocatable => [q(relocatable), "https://en.wikipedia.org/wiki/Relocation_%28computing%29" ],
repeatability => [q(repeatability), "https://en.wikipedia.org/wiki/Repeatability" ],
restful => [q(REST), "https://en.wikipedia.org/wiki/REST" ],
rfp => [q(Request For Proposal), "https://en.wikipedia.org/wiki/Request_for_proposal" ],
risc => [q(reduced instruction set computer), "https://en.wikipedia.org/wiki/Reduced_instruction_set_computer" ],
riscv => [q(RiscV), "https://en.wikipedia.org/wiki/RISC-V" ],
view all matches for this distribution
view release on metacpan or search on metacpan
MAX_UTF8_TWO_BYTE|5.019004||Viu
MAYBE_DEREF_GV|5.015003||Viu
MAYBE_DEREF_GV_flags|5.015003||Viu
MAYBE_DEREF_GV_nomg|5.015003||Viu
maybe_multimagic_gv|5.019004||Viu
mayberelocate|5.015006||Viu
MBLEN_LOCK|5.033005||Viu
MBLEN_UNLOCK|5.033005||Viu
MBOL|5.003007||Viu
MBOL_t8|5.035004||Viu
MBOL_t8_p8|5.033003||Viu
op_refcnt_lock|5.009002|5.009002|u
OpREFCNT_set|5.006000||Viu
OP_REFCNT_TERM|5.006000||Viu
OP_REFCNT_UNLOCK|5.006000||Viu
op_refcnt_unlock|5.009002|5.009002|u
op_relocate_sv|5.021005||Viu
op_scope|5.013007|5.013007|x
OP_SIBLING|5.021002||Viu
OpSIBLING|5.021007|5.003007|p
op_sibling_splice|5.021002|5.021002|n
OpSLAB|5.017002||Viu
view all matches for this distribution
view release on metacpan or search on metacpan
malloced_size|||n
malloc||5.007002|n
markstack_grow||5.021001|
matcher_matches_sv|||
maybe_multimagic_gv|||
mayberelocate|||
measure_struct|||
memEQs|5.009005||p
memEQ|5.004000||p
memNEs|5.009005||p
memNE|5.004000||p
op_prepend_elem||5.013006|
op_refcnt_dec|||
op_refcnt_inc|||
op_refcnt_lock||5.009002|
op_refcnt_unlock||5.009002|
op_relocate_sv|||
op_scope||5.013007|
op_sibling_splice||5.021002|n
op_std_init|||
op_unscope|||
open_script|||
view all matches for this distribution
view release on metacpan or search on metacpan
MAX_UTF8_TWO_BYTE|5.019004||Viu
MAYBE_DEREF_GV|5.015003||Viu
MAYBE_DEREF_GV_flags|5.015003||Viu
MAYBE_DEREF_GV_nomg|5.015003||Viu
maybe_multimagic_gv|5.019004||Viu
mayberelocate|5.015006||Viu
MBLEN_LOCK|5.033005||Viu
MBLEN_UNLOCK|5.033005||Viu
MBOL|5.003007||Viu
MBOL_t8|5.035004||Viu
MBOL_t8_p8|5.033003||Viu
op_refcnt_lock|5.009002|5.009002|u
OpREFCNT_set|5.006000||Viu
OP_REFCNT_TERM|5.006000||Viu
OP_REFCNT_UNLOCK|5.006000||Viu
op_refcnt_unlock|5.009002|5.009002|u
op_relocate_sv|5.021005||Viu
op_scope|5.013007|5.013007|x
OP_SIBLING|5.021002||Viu
OpSIBLING|5.021007|5.003007|p
op_sibling_splice|5.021002|5.021002|n
OpSLAB|5.017002||Viu
view all matches for this distribution
view release on metacpan or search on metacpan
MAX_UTF8_TWO_BYTE|5.019004||Viu
MAYBE_DEREF_GV|5.015003||Viu
MAYBE_DEREF_GV_flags|5.015003||Viu
MAYBE_DEREF_GV_nomg|5.015003||Viu
maybe_multimagic_gv|5.019004||Viu
mayberelocate|5.015006||Viu
MBLEN_LOCK|5.033005||Viu
MBLEN_UNLOCK|5.033005||Viu
MBOL|5.003007||Viu
MBOL_t8|5.035004||Viu
MBOL_t8_p8|5.033003||Viu
op_refcnt_lock|5.009002|5.009002|u
OpREFCNT_set|5.006000||Viu
OP_REFCNT_TERM|5.006000||Viu
OP_REFCNT_UNLOCK|5.006000||Viu
op_refcnt_unlock|5.009002|5.009002|u
op_relocate_sv|5.021005||Viu
op_scope|5.013007|5.013007|x
OP_SIBLING|5.021002||Viu
OpSIBLING|5.021007|5.003007|p
op_sibling_splice|5.021002|5.021002|n
OpSLAB|5.017002||Viu
view all matches for this distribution
view release on metacpan or search on metacpan
MAX_UTF8_TWO_BYTE|5.019004||Viu
MAYBE_DEREF_GV|5.015003||Viu
MAYBE_DEREF_GV_flags|5.015003||Viu
MAYBE_DEREF_GV_nomg|5.015003||Viu
maybe_multimagic_gv|5.019004||Viu
mayberelocate|5.015006||Viu
MBLEN_LOCK|5.033005||Viu
MBLEN_UNLOCK|5.033005||Viu
MBOL|5.003007||Viu
MBOL_t8|5.035004||Viu
MBOL_t8_p8|5.033003||Viu
op_refcnt_lock|5.009002|5.009002|u
OpREFCNT_set|5.006000||Viu
OP_REFCNT_TERM|5.006000||Viu
OP_REFCNT_UNLOCK|5.006000||Viu
op_refcnt_unlock|5.009002|5.009002|u
op_relocate_sv|5.021005||Viu
op_scope|5.013007|5.013007|x
OP_SIBLING|5.021002||Viu
OpSIBLING|5.021007|5.003007|p
op_sibling_splice|5.021002|5.021002|n
OpSLAB|5.017002||Viu
view all matches for this distribution
view release on metacpan or search on metacpan
bin/deliantra view on Meta::CPAN
unless -e "$root/$1";
}
}
if ($^O eq "MSWin32") {
# pango is relocatable on win32
} else {
# OS X
$ENV{PANGO_RC_FILE} = "$root/pango.rc";
$ENV{DYLD_LIBRARY_PATH} = $root;
chdir $root; # for pango modules, maybe other things
view all matches for this distribution
view release on metacpan or search on metacpan
malloced_size|||n
malloc||5.007002|n
markstack_grow||5.021001|
matcher_matches_sv|||
maybe_multimagic_gv|||
mayberelocate|||
measure_struct|||
memEQs|5.009005||p
memEQ|5.004000||p
memNEs|5.009005||p
memNE|5.004000||p
op_prepend_elem||5.013006|
op_refcnt_dec|||
op_refcnt_inc|||
op_refcnt_lock||5.009002|
op_refcnt_unlock||5.009002|
op_relocate_sv|||
op_scope||5.013007|
op_sibling_splice||5.021002|n
op_std_init|||
op_unscope|||
open_script|||
view all matches for this distribution
view release on metacpan or search on metacpan
malloced_size|||n
malloc||5.007002|n
markstack_grow||5.021001|
matcher_matches_sv|||
maybe_multimagic_gv|||
mayberelocate|||
measure_struct|||
memEQs|5.009005||p
memEQ|5.004000||p
memNEs|5.009005||p
memNE|5.004000||p
op_prepend_elem||5.013006|
op_refcnt_dec|||
op_refcnt_inc|||
op_refcnt_lock||5.009002|
op_refcnt_unlock||5.009002|
op_relocate_sv|||
op_scope||5.013007|
op_sibling_splice||5.021002|n
op_std_init|||
op_unscope|||
open_script|||
view all matches for this distribution
view release on metacpan or search on metacpan
malloced_size|||n
malloc||5.007002|n
markstack_grow||5.021001|
matcher_matches_sv|||
maybe_multimagic_gv|||
mayberelocate|||
measure_struct|||
memEQs|5.009005||p
memEQ|5.004000||p
memNEs|5.009005||p
memNE|5.004000||p
op_prepend_elem||5.013006|
op_refcnt_dec|||
op_refcnt_inc|||
op_refcnt_lock||5.009002|
op_refcnt_unlock||5.009002|
op_relocate_sv|||
op_scope||5.013007|
op_sibling_splice||5.021002|n
op_std_init|||
op_unscope|||
open_script|||
view all matches for this distribution
view release on metacpan or search on metacpan
malloc_good_size|5.010001||nViu
MARK|5.003007|5.003007|
markstack_grow|5.021001|5.021001|u
matcher_matches_sv|5.027008||Viu
maybe_multimagic_gv|5.019004||Viu
mayberelocate|5.015006||Viu
measure_struct|5.007003||Viu
memCHRs|5.031008|5.003007|p
mem_collxfrm|5.003007||dViu
_mem_collxfrm|5.025002||Viu
memEQ|5.004000|5.003007|p
op_prepend_elem|5.013006|5.013006|
op_refcnt_dec|||xiu
op_refcnt_inc|||xiu
op_refcnt_lock|5.009002|5.009002|u
op_refcnt_unlock|5.009002|5.009002|u
op_relocate_sv|5.021005||Viu
op_scope|5.013007|5.013007|x
OpSIBLING|5.021007|5.003007|p
op_sibling_splice|5.021002|5.021002|n
opslab_force_free|5.017002||Viu
opslab_free|5.017002||Viu
view all matches for this distribution
view release on metacpan or search on metacpan
t/11-tainted.t view on Meta::CPAN
use Config;
use Devel::FindPerl qw/find_perl_interpreter perl_is_same/;
my $perlpath = $Config{perlpath};
plan(skip_all => 'Taint test can\'t be run from uninstalled perl') if $ENV{PERL_CORE};
plan(skip_all => 'Taint test can\'t be run for relocatable perl') if $Config{userelocatableinc};
plan(skip_all => 'Taint test can\'t be run for Strawberry Portable') if $INC{"Portable/Config.pm"};
plan(skip_all => "Perl not in perlpath '$perlpath'") unless -x $perlpath and perl_is_same($perlpath);
plan(skip_all => 'Testrun without taint mode') if not $^T;
my $interpreter = do {
view all matches for this distribution
view release on metacpan or search on metacpan
malloc_good_size|5.010001||nViu
MARK|5.003007|5.003007|
markstack_grow|5.021001|5.021001|u
matcher_matches_sv|5.027008||Viu
maybe_multimagic_gv|5.019004||Viu
mayberelocate|5.015006||Viu
measure_struct|5.007003||Viu
memCHRs|5.031008|5.003007|p
mem_collxfrm|5.003007||dViu
_mem_collxfrm|5.025002||Viu
memEQ|5.004000|5.003007|p
op_prepend_elem|5.013006|5.013006|
op_refcnt_dec|||xiu
op_refcnt_inc|||xiu
op_refcnt_lock|5.009002|5.009002|u
op_refcnt_unlock|5.009002|5.009002|u
op_relocate_sv|5.021005||Viu
op_scope|5.013007|5.013007|x
OpSIBLING|5.021007|5.003007|p
op_sibling_splice|5.021002|5.021002|n
opslab_force_free|5.017002||Viu
opslab_free|5.017002||Viu
view all matches for this distribution
view release on metacpan or search on metacpan
* can export graph()
* add: reset()
* add documentation about customizing the Graph::Easy object
0.04 2005-12-07 Tels 5 tests
* relocate flowchart code to Graph::Flowchart
0.03 2005-11-13 Tels 17 tests
* require Graph::Easy v0.33
* require PPI v1.04
* require Perl v5.8.0
view all matches for this distribution