Searched full:bz2 (Results 1 – 25 of 564) sorted by relevance
12345678910>>...23
188 run-next-files.sh run-next-lines.sh testfile-only-debug-line.bz2 \192 testfile.bz2 testfile2.bz2 testfile3.bz2 testfile4.bz2 \193 testfile5.bz2 testfile6.bz2 testfile7.bz2 testfile8.bz2 \194 testfile9.bz2 testfile10.bz2 testfile11.bz2 testfile12.bz2 \195 testfile13.bz2 run-strip-test3.sh run-allfcts.sh \196 testfile_class_func.bz2 testfile_nested_funcs.bz2 \197 run-line2addr.sh run-elflint-test.sh testfile14.bz2 \203 run-annobingroup.sh testfile-annobingroup.o.bz2 \204 testfile-annobingroup-i386.o.bz2 \205 testfile-annobingroup-x86_64.o.bz2 \[all …]
47 * testfile_gnu_props.32le.o.bz2: New testfile.48 * testfile_gnu_props.64le.o.bz2: Likewise.49 * testfile_gnu_props.32be.o.bz2: Likewise.50 * testfile_gnu_props.64be.o.bz2: Likewise.67 * testfile-version.bz2: New test file.69 (EXTRA_DIST): Add run-strip-version.sh and testfile-version.bz2.87 * testfile-bpf-reloc.expect.bz2: Update with new expected jump98 * testfile-debug-rel-ppc64-g.o.bz2: New test file.99 * testfile-debug-rel-ppc64-z.o.bz2: Likewise.100 * testfile-debug-rel-ppc64.o.bz2: Likewise.[all …]
9 bzcat "$BDIR"/squashfs.bz2 > temp.img13 testing "cramfs" 'bzcat "$BDIR"/cramfs.bz2 | blkid -' \15 testing "ext2" 'bzcat "$BDIR"/ext2.bz2 | blkid -' \18 testing "ext3" 'bzcat "$BDIR"/ext3.bz2 | blkid -' \21 testing "ext4" 'bzcat "$BDIR"/ext4.bz2 | blkid -' \24 testing "f2fs" 'bzcat "$BDIR"/f2fs.bz2 | blkid -' \27 testing "msdos" 'bzcat "$BDIR"/msdos.bz2 | blkid -' \29 testing "ntfs" 'bzcat "$BDIR"/ntfs.bz2 | blkid -' \31 testing "reiserfs" 'bzcat "$BDIR"/reiser3.bz2 | blkid -' \34 testing "squashfs" 'bzcat "$BDIR"/squashfs.bz2 | blkid -' \[all …]
9 bzcat "$BDIR"/squashfs.bz2 > temp.img15 testing "$i" 'bzcat "$BDIR"/$i.bz2 | fstype -' "$i\n" "" ""18 testing "msdos" 'bzcat "$BDIR"/msdos.bz2 | fstype -' 'vfat\n' "" ""19 testing "reiserfs" 'bzcat "$BDIR"/reiser3.bz2 | fstype -' 'reiserfs\n' "" ""21 #testing "blkid minix" 'bzcat "$BDIR"/minix.bz2 | blkid -'
elfutils-0.140/ elfutils-0.140/AUTHORS elfutils-0.140/libdwfl/ elfutils-0.140/ ...
1 # Microsoft Developer Studio Project File - Name="bz2" - Package Owner=<4>7 CFG=bz2 - Win32 Debug11 !MESSAGE NMAKE /f "bz2.mak".16 !MESSAGE NMAKE /f "bz2.mak" CFG="bz2 - Win32 Debug"20 !MESSAGE "bz2 - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library")21 !MESSAGE "bz2 - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library")26 # PROP Scc_ProjName "bz2"32 !IF "$(CFG)" == "bz2 - Win32 Release"42 # PROP Intermediate_Dir "x86-temp-release\bz2"57 …ase:"0x1D170000" /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"libc" /out:"./bz2.pyd"[all …]
5 Name="bz2"6 RootNamespace="bz2"7 SccProjectName="bz2"17 IntermediateDirectory=".\x86-temp-debug\bz2"74 IntermediateDirectory=".\x86-temp-release\bz2"97 OutputFile="./bz2.pyd"102 ProgramDatabaseFile=".\./bz2.pdb"105 ImportLibrary=".\./bz2.lib"134 IntermediateDirectory=".\ia64-temp-release\bz2"162 OutputFile="./bz2.pyd"[all …]
1 """Python 'bz2_codec' Codec - bz2 compression encoding.11 import bz2 # this codec needs the optional bz2 module !17 return (bz2.compress(input), len(input))21 return (bz2.decompress(input), len(input))33 self.compressobj = bz2.BZ2Compressor()43 self.compressobj = bz2.BZ2Compressor()49 self.decompressobj = bz2.BZ2Decompressor()58 self.decompressobj = bz2.BZ2Decompressor()70 name="bz2",
1 """ Python 'bz2_codec' Codec - bz2 compression encoding11 import bz2 # this codec needs the optional bz2 module !26 output = bz2.compress(input)44 output = bz2.decompress(input)58 self.compressobj = bz2.BZ2Compressor()68 self.compressobj = bz2.BZ2Compressor()74 self.decompressobj = bz2.BZ2Decompressor()83 self.decompressobj = bz2.BZ2Decompressor()95 name="bz2",
35 assertTrue(BZip2Utils.isCompressedFilename("x.bz2")); in testIsCompressedFilename()53 assertEquals(".bz2", BZip2Utils.getUncompressedFilename(".bz2")); in testGetUncompressedFilename()57 assertEquals("x", BZip2Utils.getUncompressedFilename("x.bz2")); in testGetUncompressedFilename()71 assertEquals(".bz2", BZip2Utils.getCompressedFilename("")); in testGetCompressedFilename()72 assertEquals(" .bz2", BZip2Utils.getCompressedFilename(" ")); in testGetCompressedFilename()73 assertEquals("x.bz2", BZip2Utils.getCompressedFilename("x")); in testGetCompressedFilename()74 assertEquals("X.bz2", BZip2Utils.getCompressedFilename("X")); in testGetCompressedFilename()75 assertEquals("x.tar.bz2", BZip2Utils.getCompressedFilename("x.tar")); in testGetCompressedFilename()76 assertEquals("x.tar.bz2", BZip2Utils.getCompressedFilename("x.TAR")); in testGetCompressedFilename()
18 <p><b>December 1, 2009</b> - <a href=downloads/toybox-0.1.0.tar.bz2>toybox-0.1.0</a> is out.</p>24 <a href=downloads/toybox-0.0.9.2.tar.bz2>toybox-0.0.9.2</a>, off by one allocation error in patch.<…30 <a href=downloads/toybox-0.0.9.1.tar.bz2>toybox 0.0.9.1</a> which is a bugfix40 <a href=downloads/toybox-0.0.9.tar.bz2>toybox 0.0.9.tar.bz2</a> which is a minor packaging47 <p><b>January 20, 2009</b> - <a href=downloads/toybox-0.0.8.tar.bz2>toybox 0.0.8</a>64 <a href=downloads/toybox-0.0.7.tar.bz2>toybox 0.0.7</a>68 <p><b>May 26, 2008</b> - <a href=downloads/toybox-0.0.6.tar.bz2>toybox 0.0.6</a>79 Time to release <a href=downloads/toybox-0.0.5.tar.bz2>toybox 0.0.5</a>, with94 <p><b>January 2, 2008</b> - And <a href=downloads/toybox-0.0.4.tar.bz2>toybox-0.0.4.tar.bz2</a> is …108 <a href=downloads/toybox-0.0.3.tar.bz2>toybox-0.0.3.tar.bz2</a> since it's[all …]
15 bz2 = import_module('bz2') variable16 from bz2 import BZ2File, BZ2Compressor, BZ2Decompressor38 ret = bz2.decompress(data)44 return bz2.decompress(data)256 # Bug #1194181: bz2.BZ2File opened for write with mode "U"304 with bz2.BZ2File(self.filename, 'wb') as f:314 with bz2.BZ2File(self.filename, 'wb') as f:319 with bz2.BZ2File(self.filename, 'rb') as f:336 f = bz2.BZ2File(self.filename)373 bz2c = bz2.BZ2Compressor()[all …]
31 .\\bzip2 -d < sample1.bz2 > sample1.tst32 .\\bzip2 -d < sample2.bz2 > sample2.tst33 .\\bzip2 -ds < sample3.bz2 > sample3.tst35 @echo If fc finds an error on sample3.bz2, this could be40 fc sample1.bz2 sample1.rb2 41 fc sample2.bz2 sample2.rb242 fc sample3.bz2 sample3.rb2
46 FILE=`echo "$1" | sed 's/.bz2$//'`47 bzip2 -cd "$FILE.bz2" | $comp $OPTIONS - "$FILE"52 *.bz2)54 *.bz2)55 F=`echo "$2" | sed 's|.*/||;s|.bz2$||'`65 *.bz2)
61 ./bzip2 -d < sample1.bz2 > sample1.tst62 ./bzip2 -d < sample2.bz2 > sample2.tst63 ./bzip2 -ds < sample3.bz2 > sample3.tst64 cmp sample1.bz2 sample1.rb2 65 cmp sample2.bz2 sample2.rb266 cmp sample3.bz2 sample3.rb2168 $(DISTNAME)/sample1.bz2 \169 $(DISTNAME)/sample2.bz2 \170 $(DISTNAME)/sample3.bz2 \
50 itself, with the name "original_name.bz2". 86 filename.bz2 becomes filename93 .I .bz2, 342 a multi-block .bz2353 blocks in .bz2 files, and write each block out into its own .bz2 363 and writes a number of files "rec00001file.bz2",364 "rec00002file.bz2", etc, containing the extracted blocks.367 "bzip2 -dc rec*file.bz2 > recovered_data" -- processes the files in371 should be of most use dealing with large .bz2
41 cp elfutils-$VERSION.tar.bz2 $VERSION/43 gpg -b elfutils-$VERSION.tar.bz252 && ln -sf $VERSION/elfutils-$VERSION.tar.bz2 elfutils-latest.tar.bz2 \53 && ln -sf $VERSION/elfutils-$VERSION.tar.bz2.sig elfutils-latest.tar.bz2.sig \
457 wget $XORG_RELEASES/util/$XORGMACROS_VERSION.tar.bz2458 tar -jxvf $XORGMACROS_VERSION.tar.bz2461 wget $XORG_RELEASES/proto/$GLPROTO_VERSION.tar.bz2462 tar -jxvf $GLPROTO_VERSION.tar.bz2465 wget $XORG_RELEASES/proto/$DRI2PROTO_VERSION.tar.bz2466 tar -jxvf $DRI2PROTO_VERSION.tar.bz2469 wget $XCB_RELEASES/$XCBPROTO_VERSION.tar.bz2470 tar -jxvf $XCBPROTO_VERSION.tar.bz2473 wget $XCB_RELEASES/$LIBXCB_VERSION.tar.bz2474 tar -jxvf $LIBXCB_VERSION.tar.bz2[all …]
38 // tbz form, so .tar.bz2 has to be added explicitly39 uncompressSuffix.put(".tar.bz2", ".tar");42 uncompressSuffix.put(".bz2", "");44 fileNameUtil = new FileNameUtil(uncompressSuffix, ".bz2");67 * "package.tar". And any filenames with the generic ".bz2" suffix82 * ".bz2" to the filename based on the standard behaviour of the "bzip2"
19 <tr><th>Format</th><th>Packed as .zip</th><th>Packed as .tar.bz2</th></tr>22 …<td><a href="{{ dlbase }}/python-{{ release }}-docs-pdf-letter.tar.bz2">Download</a> (ca. 13 MiB)<…26 … <td><a href="{{ dlbase }}/python-{{ release }}-docs-pdf-a4.tar.bz2">Download</a> (ca. 13 MiB)</td>30 <td><a href="{{ dlbase }}/python-{{ release }}-docs-html.tar.bz2">Download</a> (ca. 6 MiB)</td>34 <td><a href="{{ dlbase }}/python-{{ release }}-docs-text.tar.bz2">Download</a> (ca. 2 MiB)</td>51 <p>Unix users should download the .tar.bz2 archives; these are bzipped tar54 used to handle the ZIP archives if desired. The .tar.bz2 archives provide the
67 …_DIR/refpolicy.tar.bz2" https://github.com/SELinuxProject/refpolicy/releases/download/RELEASE_2_20…68 - tar -C "$TRAVIS_BUILD_DIR" -xvjf "$TRAVIS_BUILD_DIR/refpolicy.tar.bz2"72 - sudo rm -rf "$TRAVIS_BUILD_DIR/refpolicy.tar.bz2" "$TRAVIS_BUILD_DIR/refpolicy"83 …ry 10 -o python.tar.bz2 "https://s3.amazonaws.com/travis-python-archives/binaries/ubuntu/16.04/x86…84 sudo tar xjf python.tar.bz2 --directory / &&85 rm python.tar.bz2 ;
24 <th>{% trans %}Packed as .tar.bz2{% endtrans %}</th>33 <a href="{{ dlbase }}/python-{{ release }}-docs-pdf-letter.tar.bz2">44 <a href="{{ dlbase }}/python-{{ release }}-docs-pdf-a4.tar.bz2">55 <a href="{{ dlbase }}/python-{{ release }}-docs-html.tar.bz2">68 <a href="{{ dlbase }}/python-{{ release }}-docs-text.tar.bz2">85 <p>{% trans %}Unix users should download the .tar.bz2 archives; these89 .tar.bz2 archives provide the best compression and fastest download
3 # Creates LLVM SVN snapshots: llvm-$REV.tar.bz2 and llvm-gcc-4.2-$REV.tar.bz2,29 # Create "module-revision.tar.bz2" packages from the SVN checkout dirs.30 local tarball="${module}-${REV}.tar.bz2"