view release on metacpan or search on metacpan
SHA1 2d1bf1c0628ba1ee7e4633c4722bd0fd6a60d6d1 README
SHA1 9f4e216645ca231fcbb2b77259db4a70e7246ed4 inc/Devel/CheckLib.pm
SHA1 9d11dab2af59b1f9d5192a4a4f15984e9eedb353 lib/Archive/Extract/Libarchive.pm
SHA1 78c19e42bf9bd8b1c92cf4bfe5985127873a2363 lib/Archive/Extract/Libarchive.xs
SHA1 fc2ccef7b2a9a8686652e554b1318a781263faad lib/Archive/Extract/ppport.h
SHA1 d2565abae28cda3ac37b79cc38ac780870224f63 t/archive.tar.bz2
SHA1 bb676bad66d662bf721423172141552ed3f5510b t/archive.tgz
SHA1 90aa2f4056bba3c375dbbf0dd11b2597d3a0ae87 t/archive.zip
SHA1 cc0afecfd4e6d03574131fe90200652ddf0fb752 t/pod.t
SHA1 41c7f675349d24899ed1b3284d21427dedfd09cb t/simple.t
-----BEGIN PGP SIGNATURE-----
view all matches for this distribution
view release on metacpan or search on metacpan
],
"cookies": [],
"content": {
"size": 213057,
"mimeType": "text/html",
"text": "<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"en-AU\"><head><meta content=\"/images/branding/googleg/1x/googleg_standard_color_128dp.png\" itemprop=\"image\"><link href=\"/images/branding/produ...
},
"redirectURL": "",
"headersSize": -1,
"bodySize": -1,
"_transferSize": 68060
"bodySize": 0,
"_transferSize": 0
},
"cache": {},
"timings": {
"blocked": 0.242999999954918,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 0.9810000001380121,
"receive": 1.5020000000731655,
],
"cookies": [],
"content": {
"size": 436180,
"mimeType": "text/javascript",
"text": "/* _GlobalPrefix_ */\n/* _Module_:quantum */\ntry{\nvar s_,s_aaa=\"function\"==typeof Object.defineProperties?Object.defineProperty:function(a,b,c){if(c.get||c.set)throw new TypeError(\"ES3 does not support getters and setters.\"...
},
"redirectURL": "",
"headersSize": -1,
"bodySize": 0,
"_transferSize": 0
"blocked": 0.179000000116503,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 0.29699999959120704,
"receive": 0.4870000002483723,
"ssl": -1
},
"serverIPAddress": "144.131.80.163",
"pageref": "page_4"
},
],
"cookies": [],
"content": {
"size": 122055,
"mimeType": "text/javascript",
"text": "/* JS */ gapi.loaded_0(function(_){var window=this;\nvar ba,ca,da,ha,ia,Fa,Ga;\nfor(_.g,_.n=function(a){return function(){return ba[a].apply(this,arguments)}},_.r=function(a,b){return ba[a]=b},_._DumpException=function(a){throw a...
},
"redirectURL": "",
"headersSize": -1,
"bodySize": 0,
"_transferSize": 0
},
"cache": {},
"timings": {
"blocked": 0.241000000187341,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 0.602999999955501,
"receive": 2.27900000027148,
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Archive/Lha.pm view on Meta::CPAN
=back
=head1 ACKNOWLEDGMENTS
The XS/C decompression code is based on LHa for UNIX version
1.14i-ac20050924p1, with modifications for thread-safety and XS
integration. Those parts are copyrighted by Nobutaka Watazaki (1993-1995),
Tsugio Okamoto (1996-2000?), and Koji Arai (2002-). Kudos also to the
broader LHa family authors: Masaru Oki, Yoichi Tagawa, Haruhiko Okumura,
Haruyasu Yoshizaki, Kazuhiko Miki and others.
view all matches for this distribution
view release on metacpan or search on metacpan
t/common_entry.t view on Meta::CPAN
SKIP: {
skip 'requires archive_entry_dev_is_set', 1 unless Archive::Libarchive::Any->can('archive_entry_dev_is_set');
ok !archive_entry_dev_is_set($e), 'archive_entry_dev_is_set';
};
$r = archive_entry_set_devmajor($e, 0x24);
is $r, ARCHIVE_OK, 'archive_entry_devmajor';
is archive_entry_devmajor($e), 0x24, 'archive_entry_devmajor';
$r = archive_entry_set_devminor($e, 0x67);
is $r, ARCHIVE_OK, 'archive_entry_set_devminor';
is archive_entry_devminor($e), 0x67, 'archive_entry_devminor';
#is sprintf("%x", archive_entry_dev($e)), sprintf("%x", 0x2467), 'archive_entry_dev';
SKIP: {
skip 'requires archive_entry_dev_is_set', 1 unless Archive::Libarchive::Any->can('archive_entry_dev_is_set');
ok archive_entry_dev_is_set($e), 'archive_entry_dev_is_set';
};
t/common_entry.t view on Meta::CPAN
skip 'archive_entry_ino_is_set', 1 unless Archive::Libarchive::Any->can('archive_entry_ino_is_set');
ok eval { archive_entry_ino_is_set($e) }, 'archive_entry_ino_is_set';
diag $@ if $@;
};
$r = archive_entry_set_rdevmajor($e, 0x24);
is $r, ARCHIVE_OK, 'archive_entry_rdevmajor';
is archive_entry_rdevmajor($e), 0x24, 'archive_entry_rdevmajor';
$r = archive_entry_set_rdevminor($e, 0x67);
is $r, ARCHIVE_OK, 'archive_entry_set_rdevminor';
is archive_entry_rdevminor($e), 0x67, 'archive_entry_rdevminor';
#is sprintf("%x", archive_entry_rdev($e)), sprintf("%x", 0x2467), 'archive_entry_rdev';
$r = archive_entry_set_rdev($e, 0x1234);
is $r, ARCHIVE_OK, 'archive_entry_set_rdev';
is archive_entry_rdev($e), 0x1234, 'archive_entry_rdev';
view all matches for this distribution
view release on metacpan or search on metacpan
t/common_entry.t view on Meta::CPAN
SKIP: {
skip 'requires archive_entry_dev_is_set', 1 unless Archive::Libarchive::FFI->can('archive_entry_dev_is_set');
ok !archive_entry_dev_is_set($e), 'archive_entry_dev_is_set';
};
$r = archive_entry_set_devmajor($e, 0x24);
is $r, ARCHIVE_OK, 'archive_entry_devmajor';
is archive_entry_devmajor($e), 0x24, 'archive_entry_devmajor';
$r = archive_entry_set_devminor($e, 0x67);
is $r, ARCHIVE_OK, 'archive_entry_set_devminor';
is archive_entry_devminor($e), 0x67, 'archive_entry_devminor';
#is sprintf("%x", archive_entry_dev($e)), sprintf("%x", 0x2467), 'archive_entry_dev';
SKIP: {
skip 'requires archive_entry_dev_is_set', 1 unless Archive::Libarchive::FFI->can('archive_entry_dev_is_set');
ok archive_entry_dev_is_set($e), 'archive_entry_dev_is_set';
};
t/common_entry.t view on Meta::CPAN
skip 'archive_entry_ino_is_set', 1 unless Archive::Libarchive::FFI->can('archive_entry_ino_is_set');
ok eval { archive_entry_ino_is_set($e) }, 'archive_entry_ino_is_set';
diag $@ if $@;
};
$r = archive_entry_set_rdevmajor($e, 0x24);
is $r, ARCHIVE_OK, 'archive_entry_rdevmajor';
is archive_entry_rdevmajor($e), 0x24, 'archive_entry_rdevmajor';
$r = archive_entry_set_rdevminor($e, 0x67);
is $r, ARCHIVE_OK, 'archive_entry_set_rdevminor';
is archive_entry_rdevminor($e), 0x67, 'archive_entry_rdevminor';
#is sprintf("%x", archive_entry_rdev($e)), sprintf("%x", 0x2467), 'archive_entry_rdev';
$r = archive_entry_set_rdev($e, 0x1234);
is $r, ARCHIVE_OK, 'archive_entry_set_rdev';
is archive_entry_rdev($e), 0x1234, 'archive_entry_rdev';
view all matches for this distribution
view release on metacpan or search on metacpan
t/common_entry.t view on Meta::CPAN
SKIP: {
skip 'requires archive_entry_dev_is_set', 1 unless Archive::Libarchive::XS->can('archive_entry_dev_is_set');
ok !archive_entry_dev_is_set($e), 'archive_entry_dev_is_set';
};
$r = archive_entry_set_devmajor($e, 0x24);
is $r, ARCHIVE_OK, 'archive_entry_devmajor';
is archive_entry_devmajor($e), 0x24, 'archive_entry_devmajor';
$r = archive_entry_set_devminor($e, 0x67);
is $r, ARCHIVE_OK, 'archive_entry_set_devminor';
is archive_entry_devminor($e), 0x67, 'archive_entry_devminor';
#is sprintf("%x", archive_entry_dev($e)), sprintf("%x", 0x2467), 'archive_entry_dev';
SKIP: {
skip 'requires archive_entry_dev_is_set', 1 unless Archive::Libarchive::XS->can('archive_entry_dev_is_set');
ok archive_entry_dev_is_set($e), 'archive_entry_dev_is_set';
};
t/common_entry.t view on Meta::CPAN
skip 'archive_entry_ino_is_set', 1 unless Archive::Libarchive::XS->can('archive_entry_ino_is_set');
ok eval { archive_entry_ino_is_set($e) }, 'archive_entry_ino_is_set';
diag $@ if $@;
};
$r = archive_entry_set_rdevmajor($e, 0x24);
is $r, ARCHIVE_OK, 'archive_entry_rdevmajor';
is archive_entry_rdevmajor($e), 0x24, 'archive_entry_rdevmajor';
$r = archive_entry_set_rdevminor($e, 0x67);
is $r, ARCHIVE_OK, 'archive_entry_set_rdevminor';
is archive_entry_rdevminor($e), 0x67, 'archive_entry_rdevminor';
#is sprintf("%x", archive_entry_rdev($e)), sprintf("%x", 0x2467), 'archive_entry_rdev';
$r = archive_entry_set_rdev($e, 0x1234);
is $r, ARCHIVE_OK, 'archive_entry_set_rdev';
is archive_entry_rdev($e), 0x1234, 'archive_entry_rdev';
view all matches for this distribution
view release on metacpan or search on metacpan
SHA1 f62addc3ee3055462d147b11bca55e80a67a2cdc META.yml
SHA1 f103251efaabb9be7a3afc176a989aef8634208d README
SHA1 cb675d1864e65e14edf642b109e978a0f9eabe8f lib/Archive/Peek/External.pm
SHA1 0615b7dc089d3baa9033330d6440284ec623c85c lib/Archive/Peek/External/Tar.pm
SHA1 ba43436c006fa3ddcf1871cb27c8ceadfc1d8f7e lib/Archive/Peek/External/Zip.pm
SHA1 d2565abae28cda3ac37b79cc38ac780870224f63 t/archive.tar.bz2
SHA1 bb676bad66d662bf721423172141552ed3f5510b t/archive.tgz
SHA1 90aa2f4056bba3c375dbbf0dd11b2597d3a0ae87 t/archive.zip
SHA1 cc0afecfd4e6d03574131fe90200652ddf0fb752 t/pod.t
SHA1 57c4ca7dd784f4331b9780a42be64eb00ea75ade t/simple.t
-----BEGIN PGP SIGNATURE-----
view all matches for this distribution
view release on metacpan or search on metacpan
fatlib/ExtUtils/CppGuess.pm view on Meta::CPAN
constructor or to L<ExtUtils::MakeMaker>'s C<WriteMakefile>
function.
=head1 ENVIRONMENT
As of 0.24, the environment variable C<CXX>
defines the obvious value, and will be used instead of any detection.
Supplied arguments to L</new> will still win.
=head1 METHODS
view all matches for this distribution
view release on metacpan or search on metacpan
distribution_type: module
requires:
Archive::Tar::Wrapper: 0.1
Digest::MD5: 0
File::Temp: 0
Sysadm::Install: 0.24
Test::More: 0
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.2.html
version: 1.2
author:
view all matches for this distribution
view release on metacpan or search on metacpan
0.25 2018-06-04
- Implemented refactoring due warnings from Perl::Critic.
- Merge pull request #3 from manwar/suggest-code-tidy
0.24 2018-06-02
- Added a LICENSE file (GNU GPL v3).
- Removed MYMETA files (https://rt.cpan.org/Ticket/Display.html?id=108171).
- Improved Kwalitee by adding information to Makefile.PL
- Fixed tests under OpenBSD
- Added some code to check for OpenBSD tar, which is not quite compatible to
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Archive/Tar.pm view on Meta::CPAN
= File::Spec->splitpath( $cwd );
my @cwd = File::Spec->splitdir( $cwd_dir );
push @cwd, $cwd_file if length $cwd_file;
### We need to pass '' as the last element to catpath. Craig Berry
### explains why (msgid <p0624083dc311ae541393@[172.16.52.1]>):
### The root problem is that splitpath on UNIX always returns the
### final path element as a file even if it is a directory, and of
### course there is no way it can know the difference without checking
### against the filesystem, which it is documented as not doing. When
### you turn around and call catpath, on VMS you have to know which bits
view all matches for this distribution
view release on metacpan or search on metacpan
t/Archive/Data/Secs2.pm view on Meta::CPAN
#
#
my %format = (
L => 0x00, # List (length in elements)
B => 0x20, # Binary
T => 0x24, # Boolean
A => 0x40, # ASCII
J => 0x44, # JIS-8
S8 => 0x60, # 8-byte integer (unsigned)
S1 => 0x62, # 1-byte integer (unsigned)
S2 => 0x64, # 2-byte integer (unsigned)
t/Archive/Data/Secs2.pm view on Meta::CPAN
unpacked binary octal hex description
----------------------------------------
L 000000 00 0x00 LIST (length of elements, not bytes)
B 001000 10 0x20 Binary
T 001001 11 0x24 Boolean
A 010000 20 0x40 ASCII
J 010001 21 0x44 JIS-8
S8 011000 30 0x60 8-byte integer (signed)
S1 011001 31 0x62 1-byte integer (signed)
S2 011010 32 0x64 2-byte integer (signed)
view all matches for this distribution
view release on metacpan or search on metacpan
unzip-6.0/crc32.c view on Meta::CPAN
0x633d0ffaL, 0xf50d088dL, 0xc8206e3bL, 0x5e10694cL, 0xe44160d5L,
0x727167a2L, 0xd1e4033cL, 0x47d4044bL, 0xfd850dd2L, 0x6bb50aa5L,
0xfaa8b535L, 0x6c98b242L, 0xd6c9bbdbL, 0x40f9bcacL, 0xe36cd832L,
0x755cdf45L, 0xcf0dd6dcL, 0x593dd1abL, 0xac30d926L, 0x3a00de51L,
0x8051d7c8L, 0x1661d0bfL, 0xb5f4b421L, 0x23c4b356L, 0x9995bacfL,
0x0fa5bdb8L, 0x9eb80228L, 0x0888055fL, 0xb2d90cc6L, 0x24e90bb1L,
0x877c6f2fL, 0x114c6858L, 0xab1d61c1L, 0x3d2d66b6L, 0x9041dc76L,
0x0671db01L, 0xbc20d298L, 0x2a10d5efL, 0x8985b171L, 0x1fb5b606L,
0xa5e4bf9fL, 0x33d4b8e8L, 0xa2c90778L, 0x34f9000fL, 0x8ea80996L,
0x18980ee1L, 0xbb0d6a7fL, 0x2d3d6d08L, 0x976c6491L, 0x015c63e6L,
0xf4516b6bL, 0x62616c1cL, 0xd8306585L, 0x4e0062f2L, 0xed95066cL,
unzip-6.0/crc32.c view on Meta::CPAN
0x8ae8effaL, 0xcbd9f4e3L, 0x0c4fb5acL, 0x4d7eaeb5L, 0x8e2d839eL,
0xcf1c9887L, 0x5112c24aL, 0x1023d953L, 0xd370f478L, 0x9241ef61L,
0x55d7ae2eL, 0x14e6b537L, 0xd7b5981cL, 0x96848305L, 0x59981b82L,
0x18a9009bL, 0xdbfa2db0L, 0x9acb36a9L, 0x5d5d77e6L, 0x1c6c6cffL,
0xdf3f41d4L, 0x9e0e5acdL, 0xa2248495L, 0xe3159f8cL, 0x2046b2a7L,
0x6177a9beL, 0xa6e1e8f1L, 0xe7d0f3e8L, 0x2483dec3L, 0x65b2c5daL,
0xaaae5d5dL, 0xeb9f4644L, 0x28cc6b6fL, 0x69fd7076L, 0xae6b3139L,
0xef5a2a20L, 0x2c09070bL, 0x6d381c12L, 0xf33646dfL, 0xb2075dc6L,
0x715470edL, 0x30656bf4L, 0xf7f32abbL, 0xb6c231a2L, 0x75911c89L,
0x34a00790L, 0xfbbc9f17L, 0xba8d840eL, 0x79dea925L, 0x38efb23cL,
0xff79f373L, 0xbe48e86aL, 0x7d1bc541L, 0x3c2ade58L, 0x054f79f0L,
unzip-6.0/crc32.c view on Meta::CPAN
0x5d1a24d2L, 0x10fe5ec5L, 0x27949cc4L, 0x7e2adac6L, 0x494018c7L,
0xcc5657c2L, 0xfb3c95c3L, 0xa282d3c1L, 0x95e811c0L, 0xa8af4dcbL,
0x9fc58fcaL, 0xc67bc9c8L, 0xf1110bc9L, 0x740744ccL, 0x436d86cdL,
0x1ad3c0cfL, 0x2db902ceL, 0x4096af91L, 0x77fc6d90L, 0x2e422b92L,
0x1928e993L, 0x9c3ea696L, 0xab546497L, 0xf2ea2295L, 0xc580e094L,
0xf8c7bc9fL, 0xcfad7e9eL, 0x9613389cL, 0xa179fa9dL, 0x246fb598L,
0x13057799L, 0x4abb319bL, 0x7dd1f39aL, 0x3035898dL, 0x075f4b8cL,
0x5ee10d8eL, 0x698bcf8fL, 0xec9d808aL, 0xdbf7428bL, 0x82490489L,
0xb523c688L, 0x88649a83L, 0xbf0e5882L, 0xe6b01e80L, 0xd1dadc81L,
0x54cc9384L, 0x63a65185L, 0x3a181787L, 0x0d72d586L, 0xa0d0e2a9L,
0x97ba20a8L, 0xce0466aaL, 0xf96ea4abL, 0x7c78ebaeL, 0x4b1229afL,
unzip-6.0/crc32.c view on Meta::CPAN
0xf41f6e93L, 0x03f7263bL, 0x66909a83L, 0x883f2f91L, 0xed589329L,
0x546044b4L, 0x3107f80cL, 0xdfa84d1eL, 0xbacff1a6L, 0xecdf92feL,
0x89b82e46L, 0x67179b54L, 0x027027ecL, 0xbb48f071L, 0xde2f4cc9L,
0x3080f9dbL, 0x55e74563L, 0x9ca03f6bL, 0xf9c783d3L, 0x176836c1L,
0x720f8a79L, 0xcb375de4L, 0xae50e15cL, 0x40ff544eL, 0x2598e8f6L,
0x73888baeL, 0x16ef3716L, 0xf8408204L, 0x9d273ebcL, 0x241fe921L,
0x41785599L, 0xafd7e08bL, 0xcab05c33L, 0x3bb659edL, 0x5ed1e555L,
0xb07e5047L, 0xd519ecffL, 0x6c213b62L, 0x094687daL, 0xe7e932c8L,
0x828e8e70L, 0xd49eed28L, 0xb1f95190L, 0x5f56e482L, 0x3a31583aL,
0x83098fa7L, 0xe66e331fL, 0x08c1860dL, 0x6da63ab5L, 0xa4e140bdL,
0xc186fc05L, 0x2f294917L, 0x4a4ef5afL, 0xf3762232L, 0x96119e8aL,
unzip-6.0/crc32.c view on Meta::CPAN
0x18b74777L, 0x88085ae6L, 0xff0f6a70L, 0x66063bcaL, 0x11010b5cL,
0x8f659effL, 0xf862ae69L, 0x616bffd3L, 0x166ccf45L, 0xa00ae278L,
0xd70dd2eeL, 0x4e048354L, 0x3903b3c2L, 0xa7672661L, 0xd06016f7L,
0x4969474dL, 0x3e6e77dbL, 0xaed16a4aL, 0xd9d65adcL, 0x40df0b66L,
0x37d83bf0L, 0xa9bcae53L, 0xdebb9ec5L, 0x47b2cf7fL, 0x30b5ffe9L,
0xbdbdf21cL, 0xcabac28aL, 0x53b39330L, 0x24b4a3a6L, 0xbad03605L,
0xcdd70693L, 0x54de5729L, 0x23d967bfL, 0xb3667a2eL, 0xc4614ab8L,
0x5d681b02L, 0x2a6f2b94L, 0xb40bbe37L, 0xc30c8ea1L, 0x5a05df1bL,
0x2d02ef8dL
# ifdef IZ_CRCOPTIM_UNFOLDTBL
,
unzip-6.0/crc32.c view on Meta::CPAN
0xe9627e44L, 0xc24f2d87L, 0xdb541cc6L, 0x94158a01L, 0x8d0ebb40L,
0xa623e883L, 0xbf38d9c2L, 0x38a0c50dL, 0x21bbf44cL, 0x0a96a78fL,
0x138d96ceL, 0x5ccc0009L, 0x45d73148L, 0x6efa628bL, 0x77e153caL,
0xbabb5d54L, 0xa3a06c15L, 0x888d3fd6L, 0x91960e97L, 0xded79850L,
0xc7cca911L, 0xece1fad2L, 0xf5facb93L, 0x7262d75cL, 0x6b79e61dL,
0x4054b5deL, 0x594f849fL, 0x160e1258L, 0x0f152319L, 0x243870daL,
0x3d23419bL, 0x65fd6ba7L, 0x7ce65ae6L, 0x57cb0925L, 0x4ed03864L,
0x0191aea3L, 0x188a9fe2L, 0x33a7cc21L, 0x2abcfd60L, 0xad24e1afL,
0xb43fd0eeL, 0x9f12832dL, 0x8609b26cL, 0xc94824abL, 0xd05315eaL,
0xfb7e4629L, 0xe2657768L, 0x2f3f79f6L, 0x362448b7L, 0x1d091b74L,
0x04122a35L, 0x4b53bcf2L, 0x52488db3L, 0x7965de70L, 0x607eef31L,
unzip-6.0/crc32.c view on Meta::CPAN
0x7e54a903L, 0x5579fac0L, 0x4c62cb81L, 0x8138c51fL, 0x9823f45eL,
0xb30ea79dL, 0xaa1596dcL, 0xe554001bL, 0xfc4f315aL, 0xd7626299L,
0xce7953d8L, 0x49e14f17L, 0x50fa7e56L, 0x7bd72d95L, 0x62cc1cd4L,
0x2d8d8a13L, 0x3496bb52L, 0x1fbbe891L, 0x06a0d9d0L, 0x5e7ef3ecL,
0x4765c2adL, 0x6c48916eL, 0x7553a02fL, 0x3a1236e8L, 0x230907a9L,
0x0824546aL, 0x113f652bL, 0x96a779e4L, 0x8fbc48a5L, 0xa4911b66L,
0xbd8a2a27L, 0xf2cbbce0L, 0xebd08da1L, 0xc0fdde62L, 0xd9e6ef23L,
0x14bce1bdL, 0x0da7d0fcL, 0x268a833fL, 0x3f91b27eL, 0x70d024b9L,
0x69cb15f8L, 0x42e6463bL, 0x5bfd777aL, 0xdc656bb5L, 0xc57e5af4L,
0xee530937L, 0xf7483876L, 0xb809aeb1L, 0xa1129ff0L, 0x8a3fcc33L,
0x9324fd72L
unzip-6.0/crc32.c view on Meta::CPAN
0x1b2f0bacL, 0x1aed619bL, 0x18abdfc2L, 0x1969b5f5L, 0x1235f2c8L,
0x13f798ffL, 0x11b126a6L, 0x10734c91L, 0x153c5a14L, 0x14fe3023L,
0x16b88e7aL, 0x177ae44dL, 0x384d46e0L, 0x398f2cd7L, 0x3bc9928eL,
0x3a0bf8b9L, 0x3f44ee3cL, 0x3e86840bL, 0x3cc03a52L, 0x3d025065L,
0x365e1758L, 0x379c7d6fL, 0x35dac336L, 0x3418a901L, 0x3157bf84L,
0x3095d5b3L, 0x32d36beaL, 0x331101ddL, 0x246be590L, 0x25a98fa7L,
0x27ef31feL, 0x262d5bc9L, 0x23624d4cL, 0x22a0277bL, 0x20e69922L,
0x2124f315L, 0x2a78b428L, 0x2bbade1fL, 0x29fc6046L, 0x283e0a71L,
0x2d711cf4L, 0x2cb376c3L, 0x2ef5c89aL, 0x2f37a2adL, 0x709a8dc0L,
0x7158e7f7L, 0x731e59aeL, 0x72dc3399L, 0x7793251cL, 0x76514f2bL,
0x7417f172L, 0x75d59b45L, 0x7e89dc78L, 0x7f4bb64fL, 0x7d0d0816L,
unzip-6.0/crc32.c view on Meta::CPAN
0x8c5d7112L, 0x34e11677L, 0xa9362eceL, 0x118a49abL, 0x033fe645L,
0xbb838120L, 0xe3e09176L, 0x5b5cf613L, 0x49e959fdL, 0xf1553e98L,
0x6c820621L, 0xd43e6144L, 0xc68bceaaL, 0x7e37a9cfL, 0xd67f4138L,
0x6ec3265dL, 0x7c7689b3L, 0xc4caeed6L, 0x591dd66fL, 0xe1a1b10aL,
0xf3141ee4L, 0x4ba87981L, 0x13cb69d7L, 0xab770eb2L, 0xb9c2a15cL,
0x017ec639L, 0x9ca9fe80L, 0x241599e5L, 0x36a0360bL, 0x8e1c516eL,
0x866616a7L, 0x3eda71c2L, 0x2c6fde2cL, 0x94d3b949L, 0x090481f0L,
0xb1b8e695L, 0xa30d497bL, 0x1bb12e1eL, 0x43d23e48L, 0xfb6e592dL,
0xe9dbf6c3L, 0x516791a6L, 0xccb0a91fL, 0x740cce7aL, 0x66b96194L,
0xde0506f1L
# endif /* IZ_CRCOPTIM_UNFOLDTBL */
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Archive/Zip/Crypt.pm view on Meta::CPAN
0x18b74777, 0x88085ae6, 0xff0f6a70, 0x66063bca, 0x11010b5c,
0x8f659eff, 0xf862ae69, 0x616bffd3, 0x166ccf45, 0xa00ae278,
0xd70dd2ee, 0x4e048354, 0x3903b3c2, 0xa7672661, 0xd06016f7,
0x4969474d, 0x3e6e77db, 0xaed16a4a, 0xd9d65adc, 0x40df0b66,
0x37d83bf0, 0xa9bcae53, 0xdebb9ec5, 0x47b2cf7f, 0x30b5ffe9,
0xbdbdf21c, 0xcabac28a, 0x53b39330, 0x24b4a3a6, 0xbad03605,
0xcdd70693, 0x54de5729, 0x23d967bf, 0xb3667a2e, 0xc4614ab8,
0x5d681b02, 0x2a6f2b94, 0xb40bbe37, 0xc30c8ea1, 0x5a05df1b,
0x2d02ef8d
);
view all matches for this distribution
view release on metacpan or search on metacpan
- Switched to GitHub as issue tracker
- Replaced references to Test::MockModule in
t/23_closed_handle.t with code from PR #32, RT #110087
- Unixified line endings in t/23_closed_handle.t
- Added documentation for Archive::Zip::Member::isSymbolicLink,
RT #130524
- Implemented other, unrelated doc fixes
- Fixed examples/zipcheck.pl to skip symbolic links, RT #130525
- Described version 1.59, RT #117371 (tagged important!)
- Completely re-did test suite:
1.43 Wed 14 Jan 2015
- Restore 101374 - failing tests were not regressions.
1.42 Sun 11 Jan 2015
- Revert 101374, caused tester regression
- https://rt.cpan.org/Public/Bug/Display.html?id=101240 [cpan/PMQS]
1.41 Fri 09 Jan 2015
- https://rt.cpan.org/Public/Bug/Display.html?id=101374 [zefram]
1.40 Sun 04 Jan 2015
- Moved crc32 to bin/crc32 in line with package layout conventions
1.16 Mon Jul 04 12:49:30 CDT 2005
- Grrrr...removed test that fails when installing under CPANPLUS.
1.15 Wed Jun 22 10:24:25 CDT 2005
- added fix for RT #12771 Minor nit: warning in Archive::Zip::DirectoryMember::contents()
- added fix for RT #13327 Formatting problem in Archive::Zip::Tree manpage
1.15_02 Sat Mar 12 09:16:30 CST 2005
- fixed dates in previous entry!
view all matches for this distribution
view release on metacpan or search on metacpan
0.11 2014-10-27
- Tests now force use of AnyEvent::Loop (pure perl loop) for consistency
- Force version 0.11 of Coro::ProcessPool, which fixes recursive Coro::Handle read bug
- Removed namespace::autoclean from Argon.pm (thanks CPAN testers)
0.10 2014-10-24
- Migrated to Moo and Types::Standard
- Bug fixes in service initialization and shutdown
- Added integration test
0.9 2014-03-06
view all matches for this distribution
view release on metacpan or search on metacpan
- Bugfix: previous versions silently removed '--' from @ARGV.
- POD work.
----------------------------------------------------------------------------
1.00 Wed Aug 29 00:10:24 EDT 2001
= Test Env: Solaris 8/Win2K SP2/Perl 5.6/CC 4.2
- Fixed a bug in the interaction with IPC::ChildSafe;
the status from system() wasn't being correctly returned
in coprocess mode.
- Added a ->quiet() attribute which suppresses stdout from
view all matches for this distribution
view release on metacpan or search on metacpan
xt/03-number.t view on Meta::CPAN
my @test_div = (
[ qw<10 18 1 18> ]
, [ qw<10 18 2 9> ]
, [ qw<16 C0 A 13> ]
, [ qw<10 35 8 4> ]
, [ qw<10 24 2 12> ]
, [ qw<10 20 2 10> ]
);
my @test_odd = (
[ qw<10 1 1> ]
, [ qw<10 2 0> ]
view all matches for this distribution
view release on metacpan or search on metacpan
SHA1 3c99ace3c14ee6f43510aca433238f3b4c5d33fd META.json
SHA1 74922e2cd98018399897b9d8e16602bfd96389ab META.yml
SHA1 6da7a880c92046370654cb86560a5bf599a99503 README
SHA1 20c5d53c7ccd3988398cc004de00198a15854faf lib/Array/Base.pm
SHA1 a7f8723fc2e48de09de69dd06da1e3d276b2ed2e lib/Array/Base.xs
SHA1 36ab4f2819cb9b140504246e807cb7ff111f2b60 t/aeach.t
SHA1 8fbab418dd4b6a8017c51c2921efe47527961182 t/aelem.t
SHA1 08f5638bee0803464bbfe60409b41011cccf8d51 t/akeys.t
SHA1 e61771d8c807b47a6eb0af5d110a03b3d7aeb6c2 t/aslice.t
SHA1 8fe53d65992b6d61e926fc257669d07c5ff1da4e t/av2arylen.t
SHA1 56d5a4e3588e8cf6c168d1ee6647cf5cbc0871be t/kvaslice.t
view all matches for this distribution
view release on metacpan or search on metacpan
SHA1 aeb7733cd182d36bf5859732e08ed181b62b9fb1 Changes
SHA1 2dd78ffb024dc92047f956ff6d6d450b8bc58cca GNUmakefile
SHA1 f1d1732c3159f52d3cc2a0f31f4358bceeb07f72 MANIFEST
SHA1 f0303daea3e40dfa3338afd29ccf1d1114a88b60 META.json
SHA1 4ad20e1e6b81acf68ec848b4178524077b0e6fcd META.yml
SHA1 9fa7916b771b6b22d684acab640dcea37b5e0624 Makefile.PL
SHA1 2ba9d3ca762dc4e74bd95fb4282d36262f5c739e README.md
SHA1 8647b636e5a29e0a83d49c37b36726a87214c583 eg/example.pl
SHA1 e86b93934ed213bc9a6dccb3848923b01ab456b5 lib/Array/Columnize.pm
SHA1 07ce2ea0b7b79d71488feca8404d63c35382feb5 lib/Array/Columnize/columnize.pm
SHA1 b27525e3218cb1a9fb6f1875c2c7dc1973435f32 lib/Array/Columnize/options.pm
view all matches for this distribution
view release on metacpan or search on metacpan
t/clobbered_items.t view on Meta::CPAN
[[32,34,'oops'],[]],
[[4,4,'oops'],[]],
[[24,26,'oops'],[[24,26,'ef']]],
[[24,29,'oops'],[[24,26,'ef']]],
[[10,16,'oops'],[[13,16,'ef']]],
[[20,24,'oops'],[[20,24,'ef']]],
[[0,9,'oops'],[[1,3,'ab'],[5,7,'cd']]],
[[0,6,'oops'],[[1,3,'ab'],[5,6,'cd']]],
)
{
my @clobbered = $r->clobbered_items(@{$t->[0]}) ;
view all matches for this distribution
view release on metacpan or search on metacpan
Test: 0
provides:
Array::Stream::Transactional:
file: lib/Array/Stream/Transactional.pm
version: 1.02
generated_by: Module::Build version 0.24
view all matches for this distribution
view release on metacpan or search on metacpan
Added build_info API call
0.0.25 2014/4/14
Added build_runs API call
0.0.24 2014/4/11
Added delete_item API call
0.0.23 2014/4/10
Added all_builds API call
view all matches for this distribution
view release on metacpan or search on metacpan
- Added: Ask::Caroline.
- Added: Ask::Clui.
- Added: Ask::Prima.
- file_selection now returns Path::Tiny objects instead of strings.
0.011 2020-10-24
[ Bug Fixes ]
- Minor issues with Ask::Functions fixed.
[ Other ]
- Added: Ask::Question.
0.010 2020-10-24
[ Bug Fixes ]
- Fix syntax error in Ask::Wx introduced in version 0.009.
[ Packaging ]
view all matches for this distribution
view release on metacpan or search on metacpan
2.13.01. Updated copyright inside the module.
* README: updated copyright inside the file.
2016-03-22 Bogdan Drozdowski <bogdro \at\ cpan . org>
* Version 0.24
* X86.pm: Updated the register and instruction list from FASM version
1.71.51 and NASM version 2.12.01. Updated copyright inside the
module.
* README: updated copyright inside the file, quoted module names.
* Version 0.07:
Documentation fixes.
Verified instruction list to be complete with fasm-1.67.28 and
updated it from nasm-2.05.01.
2008-10-24 Bogdan Drozdowski <bogdro \at\ cpan . org>
* Version 0.06:
Updated instruction list from fasm-1.67.27. Changed double to
single quotes in one place.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Asm/Z80/Table.pm view on Meta::CPAN
0x1C
]
},
'h' => {
'' => [
0x24
]
},
'hl' => {
'' => [
0x23
lib/Asm/Z80/Table.pm view on Meta::CPAN
]
},
'ixh' => {
'' => [
0xDD,
0x24
]
},
'ixl' => {
'' => [
0xDD,
lib/Asm/Z80/Table.pm view on Meta::CPAN
]
},
'iyh' => {
'' => [
0xFD,
0x24
]
},
'iyl' => {
'' => [
0xFD,
lib/Asm/Z80/Table.pm view on Meta::CPAN
'h' => {
'' => [
0xDD,
0xCB,
0x00,
0x24
]
},
'l' => {
'' => [
0xDD,
lib/Asm/Z80/Table.pm view on Meta::CPAN
'h' => {
'' => [
0xDD,
0xCB,
'DIS',
0x24
]
},
'l' => {
'' => [
0xDD,
lib/Asm/Z80/Table.pm view on Meta::CPAN
'h' => {
'' => [
0xDD,
0xCB,
'NDIS',
0x24
]
},
'l' => {
'' => [
0xDD,
lib/Asm/Z80/Table.pm view on Meta::CPAN
'h' => {
'' => [
0xFD,
0xCB,
0x00,
0x24
]
},
'l' => {
'' => [
0xFD,
lib/Asm/Z80/Table.pm view on Meta::CPAN
'h' => {
'' => [
0xFD,
0xCB,
'DIS',
0x24
]
},
'l' => {
'' => [
0xFD,
lib/Asm/Z80/Table.pm view on Meta::CPAN
'h' => {
'' => [
0xFD,
0xCB,
'NDIS',
0x24
]
},
'l' => {
'' => [
0xFD,
lib/Asm/Z80/Table.pm view on Meta::CPAN
]
},
'h' => {
'' => [
0xCB,
0x24
]
},
'hl' => {
'' => [
0x29
lib/Asm/Z80/Table.pm view on Meta::CPAN
'de'
]
}
}
},
0x24 => {
'' => [
'sla',
'h'
]
},
lib/Asm/Z80/Table.pm view on Meta::CPAN
')',
',',
'e'
]
},
0x24 => {
'' => [
'sla',
'(',
'ix',
')',
lib/Asm/Z80/Table.pm view on Meta::CPAN
')',
',',
'e'
]
},
0x24 => {
'' => [
'sla',
'(',
'ix',
'+',
lib/Asm/Z80/Table.pm view on Meta::CPAN
')',
',',
'e'
]
},
0x24 => {
'' => [
'sla',
'(',
'ix',
'-',
lib/Asm/Z80/Table.pm view on Meta::CPAN
'' => [
'inc',
'ix'
]
},
0x24 => {
'' => [
'inc',
'ixh'
]
},
lib/Asm/Z80/Table.pm view on Meta::CPAN
')',
',',
'e'
]
},
0x24 => {
'' => [
'sla',
'(',
'iy',
')',
lib/Asm/Z80/Table.pm view on Meta::CPAN
')',
',',
'e'
]
},
0x24 => {
'' => [
'sla',
'(',
'iy',
'+',
lib/Asm/Z80/Table.pm view on Meta::CPAN
')',
',',
'e'
]
},
0x24 => {
'' => [
'sla',
'(',
'iy',
'-',
lib/Asm/Z80/Table.pm view on Meta::CPAN
'' => [
'inc',
'iy'
]
},
0x24 => {
'' => [
'inc',
'iyh'
]
},
lib/Asm/Z80/Table.pm view on Meta::CPAN
'' => [
'inc',
'hl'
]
},
0x24 => {
'' => [
'inc',
'h'
]
},
lib/Asm/Z80/Table.pm view on Meta::CPAN
sla (ix),a ; DD CB 00 27
sla (ix),b ; DD CB 00 20
sla (ix),c ; DD CB 00 21
sla (ix),d ; DD CB 00 22
sla (ix),e ; DD CB 00 23
sla (ix),h ; DD CB 00 24
sla (ix),l ; DD CB 00 25
sla (ix+DIS) ; DD CB DIS 26
sla (ix+DIS),a ; DD CB DIS 27
sla (ix+DIS),b ; DD CB DIS 20
sla (ix+DIS),c ; DD CB DIS 21
lib/Asm/Z80/Table.pm view on Meta::CPAN
sla (iy),a ; FD CB 00 27
sla (iy),b ; FD CB 00 20
sla (iy),c ; FD CB 00 21
sla (iy),d ; FD CB 00 22
sla (iy),e ; FD CB 00 23
sla (iy),h ; FD CB 00 24
sla (iy),l ; FD CB 00 25
sla (iy+DIS) ; FD CB DIS 26
sla (iy+DIS),a ; FD CB DIS 27
sla (iy+DIS),b ; FD CB DIS 20
sla (iy+DIS),c ; FD CB DIS 21
view all matches for this distribution
view release on metacpan or search on metacpan
for some AspectContext internals.
- Added wantarray context test, which uncovered a bug where
void-context calls were incorrectly running the advice in scalar
context.
0.24 Wed 30 Dec 2009 - Adam Kennedy
- Changes file now uses tabs (to make it less annoying for me) :)
- Moved the inline Aspect::Hook::LexWrap::Cleanup class into it's
own dedicated Aspect::Cleanup class.
- Merged Advice-specific hooks from Aspect::Hook::Lexwrap into the
advice classes.
view all matches for this distribution
view release on metacpan or search on metacpan
contrib/countries.en.txt view on Meta::CPAN
90228,Turkey / Bilecik -
90426,Turkey / Bingöl -
90434,Turkey / Bitlis -
90374,Turkey / Bolu -
90248,Turkey / Burdur -
90224,Turkey / Bursa -
90286,Turkey / Çanakkale -
90376,Turkey / Çankiri -
90364,Turkey / Çorum -
90258,Turkey / Denizili -
90412,Turkey / Dlyarbakir -
90284,Turkey / Edirne -
90424,Turkey / Elazig -
90446,Turkey / Erzincan -
90442,Turkey / Erzurum -
90222,Turkey / Eskisehir -
90342,Turkey / Gaziantep -
90454,Turkey / Giresun -
90456,Turkey / Gümüshane -
90438,Turkey / Hakkari -
90326,Turkey / Hatay -
90324,Turkey / Içel (Mersin) -
90476,Turkey / Igdir -
90246,Turkey / Isparta -
90216,Turkey / Istanbul (Anatolia) -
90212,Turkey / Istanbul (Thrace) -
90232,Turkey / Izmir -
view all matches for this distribution