Searched full:zip (Results 1 – 25 of 2760) sorted by relevance
12345678910>>...111
142 ft_bzip2_file_init( FT_BZip2File zip, in ft_bzip2_file_init() argument146 bz_stream* bzstream = &zip->bzstream; in ft_bzip2_file_init()150 zip->stream = stream; in ft_bzip2_file_init()151 zip->source = source; in ft_bzip2_file_init()152 zip->memory = stream->memory; in ft_bzip2_file_init()154 zip->limit = zip->buffer + FT_BZIP2_BUFFER_SIZE; in ft_bzip2_file_init()155 zip->cursor = zip->limit; in ft_bzip2_file_init()156 zip->pos = 0; in ft_bzip2_file_init()173 bzstream->opaque = zip->memory; in ft_bzip2_file_init()176 bzstream->next_in = (char*)zip->buffer; in ft_bzip2_file_init()[all …]
104 ft_lzw_file_init( FT_LZWFile zip, in ft_lzw_file_init() argument108 FT_LzwState lzw = &zip->lzw; in ft_lzw_file_init()112 zip->stream = stream; in ft_lzw_file_init()113 zip->source = source; in ft_lzw_file_init()114 zip->memory = stream->memory; in ft_lzw_file_init()116 zip->limit = zip->buffer + FT_LZW_BUFFER_SIZE; in ft_lzw_file_init()117 zip->cursor = zip->limit; in ft_lzw_file_init()118 zip->pos = 0; in ft_lzw_file_init()134 ft_lzw_file_done( FT_LZWFile zip ) in ft_lzw_file_done() argument137 ft_lzwstate_done( &zip->lzw ); in ft_lzw_file_done()[all …]
280 ft_gzip_file_init( FT_GZipFile zip, in ft_gzip_file_init() argument284 z_stream* zstream = &zip->zstream; in ft_gzip_file_init()288 zip->stream = stream; in ft_gzip_file_init()289 zip->source = source; in ft_gzip_file_init()290 zip->memory = stream->memory; in ft_gzip_file_init()292 zip->limit = zip->buffer + FT_GZIP_BUFFER_SIZE; in ft_gzip_file_init()293 zip->cursor = zip->limit; in ft_gzip_file_init()294 zip->pos = 0; in ft_gzip_file_init()304 zip->start = FT_STREAM_POS(); in ft_gzip_file_init()313 zstream->next_in = zip->buffer; in ft_gzip_file_init()[all …]
7 # Note: since "master key", Android uses libziparchive for all zip file14 testing "-l" "unzip -l $FILES/zip/example.zip d1/d2/x.txt && [ ! -f d1/d2/x.txt ] && echo okay" "\15 Archive: $FILES/zip/example.zip\n\24 testing "-lq" "unzip -lq $FILES/zip/example.zip d1/d2/x.txt && [ ! -f d1/d2/x.txt ] && echo okay" "\33 testing "-lv" "unzip -lv $FILES/zip/example.zip d1/d2/x.txt && [ ! -f d1/d2/file ] && echo okay" "\34 Archive: $FILES/zip/example.zip\n\43 testing "-v" "unzip -v $FILES/zip/example.zip d1/d2/x.txt && [ ! -f d1/d2/file ] && echo okay" "\44 Archive: $FILES/zip/example.zip\n\53 testing "one file" "unzip -q $FILES/zip/example.zip d1/d2/a.txt && [ ! -f d1/d2/b.txt ] && cat d1/d…55 testing "all files" "unzip -q $FILES/zip/example.zip && [ -f d1/d2/a.txt ] && [ -f d1/d2/b.txt ] &&…[all …]
19 package org.apache.commons.compress.archivers.zip;36 import java.util.zip.ZipException;52 in = new ZipArchiveInputStream(new FileInputStream(getFile("test-winzip.zip"))); in winzipBackSlashWorkaround()72 zf = new ZipFile(getFile("COMPRESS-189.zip")); in properUseOfInflater()73 final ZipArchiveEntry zae = zf.getEntry("USD0558682-20080101.ZIP"); in properUseOfInflater()94 .getResourceAsStream("/archive_with_trailer.zip"); in shouldConsumeArchiveCompletely()95 final ZipArchiveInputStream zip = new ZipArchiveInputStream(is); in shouldConsumeArchiveCompletely() local96 while (zip.getNextZipEntry() != null) { in shouldConsumeArchiveCompletely()105 zip.close(); in shouldConsumeArchiveCompletely()115 in = new ZipArchiveInputStream(new FileInputStream(getFile("COMPRESS-219.zip"))); in shouldReadNestedZip()[all …]
2 :mod:`zipimport` --- Import modules from Zip archives6 :synopsis: support for importing Python modules from ZIP archives.13 :file:`\*.py[co]`) and packages from ZIP-format archives. It is usually not16 to ZIP archives.19 also allows an item of :data:`sys.path` to be a string naming a ZIP file archive.20 The ZIP archive can contain a subdirectory structure to support package imports,22 subdirectory. For example, the path :file:`example.zip/lib/` would only25 Any files may be present in the ZIP archive, but only files :file:`.py` and26 :file:`.py[co]` are available for import. ZIP import of dynamic modules29 corresponding :file:`.pyc` or :file:`.pyo` file, meaning that if a ZIP archive[all …]
1 :mod:`zipfile` --- Work with ZIP archives5 :synopsis: Read and write ZIP-format archive files.15 The ZIP file format is a common archive and compression standard. This module16 provides tools to create, read, write, append, and list a ZIP file. Any20 This module does not currently handle multi-disk ZIP files.21 It can handle ZIP files that use the ZIP64 extensions22 (that is ZIP files that are more than 4 GByte in size). It supports23 decryption of encrypted files in ZIP archives, but it currently cannot31 The error raised for bad ZIP files (old name: ``zipfile.error``).36 The error raised when a ZIP file would require ZIP64 functionality but that has[all …]
1 :mod:`zipimport` --- Import modules from Zip archives5 :synopsis: support for importing Python modules from ZIP archives.12 :file:`\*.pyc`) and packages from ZIP-format archives. It is usually not15 to ZIP archives.18 also allows an item of :data:`sys.path` to be a string naming a ZIP file archive.19 The ZIP archive can contain a subdirectory structure to support package imports,21 subdirectory. For example, the path :file:`example.zip/lib/` would only24 Any files may be present in the ZIP archive, but only files :file:`.py` and25 :file:`.pyc` are available for import. ZIP import of dynamic modules28 corresponding :file:`.pyc` file, meaning that if a ZIP archive[all …]
1 :mod:`zipfile` --- Work with ZIP archives5 :synopsis: Read and write ZIP-format archive files.14 The ZIP file format is a common archive and compression standard. This module15 provides tools to create, read, write, append, and list a ZIP file. Any19 This module does not currently handle multi-disk ZIP files.20 It can handle ZIP files that use the ZIP64 extensions21 (that is ZIP files that are more than 4 GiB in size). It supports22 decryption of encrypted files in ZIP archives, but it currently cannot30 The error raised for bad ZIP files.44 The error raised when a ZIP file would require ZIP64 functionality but that has[all …]
10 /*! \file rx-zip.hpp27 \snippet zip.cpp zip sample28 \snippet output.txt zip sample31 \snippet zip.cpp Coordination zip sample32 \snippet output.txt Coordination zip sample35 \snippet zip.cpp Selector zip sample36 \snippet output.txt Selector zip sample39 \snippet zip.cpp Coordination+Selector zip sample40 \snippet output.txt Coordination+Selector zip sample136 struct zip : public operator_base<rxu::value_type_t<zip_traits<Coordination, Selector, ObservableN.… struct[all …]
... 100k_Files.zip 100k_Files_7ZIP.zip 100k_Files_PKZip.zip 100k_Files_WinZIP.zip 100k_Files_WindowsCompressedFolders.zip 100
30 <zip destfile="${dist.dir}/core.zip"37 </zip>38 <symlink link="${dist.dir}/cldr-common-${version}.zip" resource="core.zip"/>42 <zip destfile="${dist.dir}/tools.zip"49 </zip>50 <symlink link="${dist.dir}/cldr-tools-${version}.zip" resource="tools.zip"/>53 <zip destfile="${dist.dir}/keyboards.zip"60 </zip>61 <symlink link="${dist.dir}/cldr-keyboards-${version}.zip" resource="keyboards.zip"/>
2 #include <rxcpp/operators/rx-zip.hpp>4 SCENARIO("zip never/never", "[zip][join][operators]"){23 | rxo::zip( in __anonc36241a60102()59 SCENARIO("zip never N", "[zip][join][operators]"){81 | rxo::zip( in __anonc36241a60302()112 SCENARIO("zip never/empty", "[zip][join][operators]"){132 .zip( in __anonc36241a60602()168 SCENARIO("zip empty/never", "[zip][join][operators]"){188 .zip( in __anonc36241a60802()224 SCENARIO("zip empty/empty", "[zip][join][operators]"){[all …]
3 Utility functions for creating archive files (tarballs, zip files,128 """Create a zip file from all the files under 'base_dir'.130 The output zip file will be named 'base_name' + ".zip". Uses either the131 "zipfile" Python module (if available) or the InfoZIP "zip" utility133 available, raises DistutilsExecError. Returns the name of the output zip136 zip_filename = base_name + ".zip"140 # 'zip' command.148 spawn(["zip", zipoptions, zip_filename, base_dir],152 # external 'zip' command" and "zip failed".153 raise DistutilsExecError(("unable to create zip file '%s': "[all …]
29 * This DataEntryReader writes the ZIP entries and files that it reads to a129 boolean outputIsZip = output.endsWith(".zip"); in main()139 // Zip up any zips, if necessary. in main()143 // Always zip. in main()148 // Only zip up zips. in main()151 new ExtensionMatcher(".zip"))), in main()156 // Zip up any ears, if necessary. in main()160 // Always zip. in main()165 // Only zip up ears. in main()173 // Zip up any wars, if necessary. in main()[all …]
3 Utility functions for creating archive files (tarballs, zip files,122 """Create a zip file from all the files under 'base_dir'.124 The output zip file will be named 'base_name' + ".zip". Uses either the125 "zipfile" Python module (if available) or the InfoZIP "zip" utility127 available, raises DistutilsExecError. Returns the name of the output zip135 zip_filename = base_name + ".zip"139 # 'zip' command.147 spawn(["zip", zipoptions, zip_filename, base_dir],151 # external 'zip' command" and "zip failed".153 ("unable to create zip file '%s': "[all …]
16 import java.util.zip.ZipEntry;17 import java.util.zip.ZipOutputStream;25 private final ZipOutputStream zip; field in ZipMultiReportOutput32 * @param zip35 public ZipMultiReportOutput(final ZipOutputStream zip) { in ZipMultiReportOutput() argument36 this.zip = zip; in ZipMultiReportOutput()54 zip.putNextEntry(entry); in createFile()60 zip.close(); in close()71 zip.write(b, off, len); in write()77 zip.write(b); in write()[all …]
35 import java.util.zip.ZipEntry;36 import java.util.zip.ZipFile;43 …* A collection of Java source files and its sub-directories located in a ZIP or JAR file on the fi…53 …* Create a new ZIP parser. An instance of {@link JavaParser} with the default {@link ParserConfigu…54 * used to parse the ZIP.56 * @param zipPath The absolute path of ZIP file to parse.63 …* Create a new ZIP parser. An instance of {@link JavaParser} with the given configuration will be …64 * the ZIP.66 * @param zipPath The absolute path of ZIP file to parse.74 Log.info("New source zip at \"%s\"", this.zipPath); in SourceZip()[all …]
22 <title>Commons Compress ZIP package</title>26 <section name="The ZIP package">28 <p>The ZIP package provides features not found29 in <code>java.util.zip</code>:</p>34 by <code>java.util.zip</code> as well.</li>36 to store Unix permission by some zip implementations).</li>49 <p>ZIP archives store a archive entries in sequence and56 <p>In addition the ZIP format stores certain information only65 <p>This means the ZIP format cannot really be parsed82 with <code>java.util.zip.ZipInputStream</code>.</p>[all …]
36 import java.util.zip.ZipEntry;37 import java.util.zip.ZipException;40 import org.apache.commons.compress.archivers.zip.Zip64Mode;41 import org.apache.commons.compress.archivers.zip.ZipArchiveEntry;42 import org.apache.commons.compress.archivers.zip.ZipArchiveEntryPredicate;43 import org.apache.commons.compress.archivers.zip.ZipArchiveInputStream;44 import org.apache.commons.compress.archivers.zip.ZipArchiveOutputStream;45 import org.apache.commons.compress.archivers.zip.ZipFile;46 import org.apache.commons.compress.archivers.zip.ZipMethod;62 final File output = new File(dir, "bla.zip"); in testZipArchiveCreation()[all …]
34 import java.util.zip.GZIPOutputStream;35 import java.util.zip.ZipEntry;36 import java.util.zip.ZipOutputStream;159 final ZipOutputStream zip = new ZipOutputStream(buffer); in testAnalyzeAll_Zip() local160 zip.putNextEntry(new ZipEntry( in testAnalyzeAll_Zip()162 zip.write(TargetLoader.getClassDataAsBytes(AnalyzerTest.class)); in testAnalyzeAll_Zip()163 zip.finish(); in testAnalyzeAll_Zip()173 final ZipOutputStream zip = new ZipOutputStream(buffer); in testAnalyzeAll_EmptyZipEntry() local174 zip.putNextEntry(new ZipEntry("empty.txt")); in testAnalyzeAll_EmptyZipEntry()175 zip.finish(); in testAnalyzeAll_EmptyZipEntry()[all …]
20 import java.util.zip.*;87 /** Closes all zip files opened by this iterator. */90 for (ZipFile zip : zips) { in close()91 zip.close(); in close()119 ZipFile zip = new JarFile(file); in advance() local120 zips.add(zip); in advance()121 entries = new ZipIterator(zip); in advance()122 } else if (hasExtension(file.getName(), ".zip")) { in advance()123 ZipFile zip = new ZipFile(file); in advance() local124 zips.add(zip); in advance()[all …]
1 7-Zip for installers 9.384 7-Zip is a file archiver for Windows NT/2000/2003/2008/XP/Vista/7/8/10. 6 7-Zip for installers is part of LZMA SDK.9 It's allowed to join 7-Zip SFX module with another software.10 It's allowed to change resources of 7-Zip's SFX modules.16 7zr.exe is reduced version of 7za.exe of 7-Zip.79 Title="7-Zip 4.00"80 BeginPrompt="Do you want to install the 7-Zip 4.00?"87 Title="7-Zip 4.00"88 BeginPrompt="Do you want to install the 7-Zip 4.00?"[all …]
6 SCENARIO("zip sample"){7 printf("//! [zip sample]\n");11 auto values = o1.zip(o2, o3);17 printf("//! [zip sample]\n");22 SCENARIO("Coordination zip sample"){23 printf("//! [Coordination zip sample]\n");38 auto values = o1.zip(thr, o2, o3);46 printf("//! [Coordination zip sample]\n");49 SCENARIO("Selector zip sample"){50 printf("//! [Selector zip sample]\n");[all …]
44 with zipfile.ZipFile(tempzip, 'w') as zip:46 zip.write(contents[arcname], arcname)61 with validUnlockCredsZip() as zip:62 creds = UnlockCredentials.from_credential_archive(zip)75 }) as zip:77 UnlockCredentials.from_credential_archive(zip)83 }) as zip:85 UnlockCredentials.from_credential_archive(zip)91 }) as zip:93 UnlockCredentials.from_credential_archive(zip)[all …]