| /external/python/cpython2/Doc/library/ |
| D | zipfile.rst | 1 :mod:`zipfile` --- Work with ZIP archives 5 :synopsis: Read and write ZIP-format archive files. 13 -------------- 15 The ZIP file format is a common archive and compression standard. This module 16 provides tools to create, read, write, append, and list a ZIP file. Any 20 This module does not currently handle multi-disk ZIP files. 21 It can handle ZIP files that use the ZIP64 extensions 22 (that is ZIP files that are more than 4 GByte in size). It supports 23 decryption of encrypted files in ZIP archives, but it currently cannot 31 The error raised for bad ZIP files (old name: ``zipfile.error``). [all …]
|
| /external/python/cpython3/Doc/library/ |
| D | zipfile.rst | 1 :mod:`zipfile` --- Work with ZIP archives 5 :synopsis: Read and write ZIP-format archive files. 12 -------------- 14 The ZIP file format is a common archive and compression standard. This module 15 provides tools to create, read, write, append, and list a ZIP file. Any 19 This module does not currently handle multi-disk ZIP files. 20 It can handle ZIP files that use the ZIP64 extensions 21 (that is ZIP files that are more than 4 GiB in size). It supports 22 decryption of encrypted files in ZIP archives, but it currently cannot 30 The error raised for bad ZIP files. [all …]
|
| /external/expat/expat/ |
| D | Makefile.am | 9 # Copyright (c) 2017-2023 Sebastian Pipping <sebastian@pipping.org> 35 dist-bzip2 \ 36 dist-lzip \ 37 dist-xz \ 39 subdir-objects 41 ACLOCAL_AMFLAGS = -I m4 42 LIBTOOLFLAGS = --verbose 63 cmake/autotools/expat-config-version.cmake \ 64 cmake/autotools/expat-noconfig.cmake \ 65 cmake/expat-config.cmake [all …]
|
| /external/rust/crates/zip/ |
| D | README.md | 1 zip-rs 4 …Status](https://img.shields.io/github/workflow/status/zip-rs/zip/CI)](https://github.com/zip-rs/zi… 5 [](https://crates.io/crates/zip) 8 [Documentation](https://docs.rs/zip/0.6.3/zip/) 11 ---- 14 A zip library for rust which supports reading and writing of simple ZIP files. 23 Currently unsupported zip extensions: 26 * Multi-disk 29 ----- 35 zip = "0.6" [all …]
|
| /external/lzma/DOC/ |
| D | 7zip.hhp | 3 Compiled file=7-zip.chm 4 Contents file=7zip.hhc 7 Full-text search=Yes 8 Index file=7zip.hhk 27 cmdline\commands\extract.htm 79 fm\plugins\7-zip\extract.htm 80 fm\plugins\7-zip\index.htm 81 fm\plugins\7-zip\add.htm
|
| D | 7zC.txt | 1 7z ANSI-C Decoder 9.35 2 ---------------------- 4 7z ANSI-C provides 7z/LZMA decoding. 5 7z ANSI-C version is simplified version ported from C++ code. 8 in 7-Zip compression program (www.7-zip.org). LZMA provides high 13 ------- 15 7z ANSI-C Decoder is part of the LZMA SDK. 19 --------------------- 21 7zDecode.* - Low level 7z decoding 22 7zExtract.* - High level 7z decoding [all …]
|
| /external/skia/infra/bots/task_drivers/common/ |
| D | bazel_utils.go | 3 // Use of this source code is governed by a BSD-style license that can be 9 "archive/zip" 24 // validBazelLabelRegexps represent valid, fully-qualified Bazel labels. 26 regexp.MustCompile(`^//:[a-zA-Z0-9_-]+$`), // Matches "//:foo". 27 …regexp.MustCompile(`^/(/[a-zA-Z0-9_-]+)+:[a-zA-Z0-9_-]+$`), // Matches "//foo:bar", "//foo/bar:baz… 31 // the checkout directory where the ZIP archive with undeclared test outputs will be found, if 47 "bazel-testlogs", 50 "outputs.zip"), nil 53 // ExtractOutputsZip extracts the undeclared outputs ZIP archive into a temporary directory, and 57 extractionDir, err := os_steps.TempDir(ctx, "", "bazel-test-output-dir-*") [all …]
|
| D | goldctl_steps_test.go | 3 // Use of this source code is governed by a BSD-style license that can be 31 … := UploadToGold(ctx, utgArgs, "/path/to/skia/bazel-testlogs/some/test/target/test.outputs/outputs… 40 …"Test did not produce an undeclared test outputs ZIP file or directory; nothing to upload to Gold", 47 test("post-submit task", UploadToGoldArgs{ 64 ChangelistID: "changelist-id", 66 TryjobID: "tryjob-id", 71 test := func(name string, zip bool, utgArgs UploadToGoldArgs) { 75 "image-with-invalid-json-file.png": "fake PNG", 76 "image-with-invalid-json-file.json": `{ 79 "image-with-no-json-file.png": "fake PNG", [all …]
|
| D | perf_steps_test.go | 3 // Use of this source code is governed by a BSD-style license that can be 34 test("post-submit task", BenchmarkInfo{ 36 TaskName: "BazelTest-Foo-Bar", 39 "--gitHash", "ff99ff99ff99ff99ff99ff99ff99ff99ff99ff99", 40 "--links", 41 "task", "https://task-scheduler.skia.org/task/1234567890", 46 TaskName: "BazelTest-Foo-Bar", 51 "--gitHash", "ff99ff99ff99ff99ff99ff99ff99ff99ff99ff99", 52 "--issue", "12345", 53 "--patchset", "3", [all …]
|
| /external/sdv/vsomeip/third_party/boost/unordered/ci/ |
| D | download-boost-snapshot.py | 15 extension_priorities = { '.bz2': 2, '.gz': 1, '.zip': 0 } 36 extract(filename, dir) 45 def extract(filename, path = '.'): function 54 elif (filename.endswith(".zip")): 55 zip = zipfile.ZipFile(filename, "r") 56 zip.extractall(path) 57 zip.close 66 print "Usage: %s [stable|branch-name]" % (sys.argv[0])
|
| /external/rust/crates/zip/src/read/ |
| D | stream.rs | 12 /// Stream decoder for zip. 18 pub fn new(reader: R) -> Self { in new() 24 fn parse_central_directory(&mut self) -> ZipResult<Option<ZipStreamFileMetadata>> { in parse_central_directory() 41 /// Iteraate over the stream and extract all file and their 43 pub fn visit<V: ZipStreamVisitor>(mut self, visitor: &mut V) -> ZipResult<()> { in visit() 55 /// Extract a Zip archive into a directory, overwriting files if they 60 pub fn extract<P: AsRef<Path>>(self, directory: P) -> ZipResult<()> { in extract() method 63 fn visit_file(&mut self, file: &mut ZipFile<'_>) -> ZipResult<()> { in extract() 87 ) -> ZipResult<()> { in extract() 112 /// * `file` - contains the content of the file and most of the metadata, [all …]
|
| /external/rust/crates/libz-sys/src/zlib/contrib/minizip/ |
| D | miniunzip.1 | 1 .\" Hey, EMACS: -*- nroff -*- 14 .\" for manpage-specific macros, see man(7) 16 miniunzip - uncompress and examine ZIP archives 19 .RI [ -exvlo ] 20 zipfile [ files_to_extract ] [-d tempdir] 24 archives in the ZIP format used by the MS-DOS utility PKZIP. It was 32 .BI \-d\ tempdir 36 .BI \-l\ ,\ \-\-v 39 .B \-o 42 .B \-x [all …]
|
| /external/lzma/CPP/7zip/Bundles/SFXWin/ |
| D | resource.rc | 16 CAPTION "7-Zip self-extracting archive" 19 EDITTEXT IDC_EXTRACT_PATH, m, 21, xc - bxsDots - 12, 14, ES_AUTOHSCROLL 20 PUSHBUTTON "...", IDB_EXTRACT_SET_PATH, xs - m - bxsDots, 20, bxsDots, bys, WS_GROUP 21 DEFPUSHBUTTON "Extract", IDOK, bx2, by, bxs, bys, WS_GROUP 31 CAPTION "7-Zip self-extracting archive" 33 LTEXT "E&xtract to:", IDT_EXTRACT_EXTRACT_TO, m, m, xc - bxsDots - 12, 8 35 PUSHBUTTON "...", IDB_EXTRACT_SET_PATH, xs - m - bxsDots, m, bxsDots, bys, WS_GROUP 36 DEFPUSHBUTTON "Extract", IDOK, bx2, by, bxs, bys, WS_GROUP 45 #include "../../UI/GUI/Extract.rc"
|
| /external/freetype/tests/scripts/ |
| D | download-test-fonts.py | 20 # - File item: 38 # - Zip items: 41 # remote zip archive. Each entry has the following fields: 46 # Description: URL to download the zip archive from. 57 # - File entries: 59 # These are dictionaries describing a single font file to extract from an 66 # top-level directory. 81 "zip_url": "https://github.com/python-pillow/Pillow/files/6622147/As.I.Lay.Dying.zip", 156 """Extract a file from a given zipfile.ZipFile archive. 161 human-readable error message. [all …]
|
| /external/toybox/tests/ |
| D | file.test | 3 [ -f testing.sh ] && . testing.sh 12 ln -s "$FILES"/java.class symlink 14 ln -s "$FILES"/java.klass dangler 22 rm -f empty 24 testing "script" "file input | grep -o ' script'" " script\n" "#!/bin/bash\n" "" 25 testing "script with spaces" "file input | grep -o ' script'" " script\n" \ 27 testing "env script" "file input | egrep -o '(python|script)' | sort" \ 30 testing "utf-8" \ 31 "file \"$FILES\"/utf8/japan.txt | egrep -o '(UTF-8|text)' | LANG=c sort" \ 32 "UTF-8\ntext\n" "" "" [all …]
|
| /external/turbine/javatests/com/google/turbine/zip/ |
| D | ZipTest.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 17 package com.google.turbine.zip; 41 import java.util.zip.ZipException; 42 import java.util.zip.ZipFile; 43 import java.util.zip.ZipOutputStream; 50 /** {@link Zip}Test */ 104 for (Zip.Entry e : new Zip.ZipIterable(path)) { in actual() 164 ZipException e = assertThrows(ZipException.class, () -> actual(path)); in malformedComment() 165 assertThat(e).hasMessageThat().isEqualTo("zip file comment length was 33, expected 17"); in malformedComment() 184 // version needed to extract 2 bytes in zip64extension() [all …]
|
| /external/okio/okio/src/jvmMain/kotlin/okio/internal/ |
| D | ZipFiles.kt | 9 * http://www.apache.org/licenses/LICENSE-2.0 in <lambda>() 55 * Opens the file at [zipPath] for use as a file system. This uses UTF-8 to comments and names in in <lambda>() 56 * the zip file. in <lambda>() 65 predicate: (ZipEntry) -> Boolean = { true }, in <lambda>() 67 fileSystem.openReadOnly(zipPath).use { fileHandle -> in fileHandle() 70 // backwards byte-by-byte until we reach it. (The number of bytes scanned will equal the comment in fileHandle() 72 var scanOffset = fileHandle.size() - 22 // end of central directory record size is 22 bytes. in fileHandle() 74 throw IOException("not a zip: size=${fileHandle.size()}") in fileHandle() 76 val stopOffset = maxOf(scanOffset - 65_536L, 0L) in fileHandle() 93 scanOffset-- in fileHandle() [all …]
|
| /external/tensorflow/tensorflow/python/keras/utils/ |
| D | data_utils.py | 7 # http://www.apache.org/licenses/LICENSE-2.0 15 # pylint: disable=g-import-not-at-top 28 import sys # pylint: disable=unused-import 66 content_type = response.info().get('Content-Length') 67 total_size = -1 86 from urllib.request import urlretrieve # pylint: disable=g-importing-member 100 """Extracts an archive if it matches tar, tar.gz, tar.bz, or zip formats. 104 path: path to extract the archive file 106 Options are 'auto', 'tar', 'zip', and None. 108 The default 'auto' is ['tar', 'zip']. [all …]
|
| /external/apache-commons-compress/src/test/java/org/apache/commons/compress/archivers/zip/ |
| D | Lister.java | 9 * http://www.apache.org/licenses/LICENSE-2.0 19 package org.apache.commons.compress.archivers.zip; 33 * Simple command line application that lists the contents of a ZIP archive. 67 extract(cl.dir, ze, zs); in main() 79 extract(cl.dir, ze, is); in main() 91 private static void extract(final String dir, final ZipArchiveEntry entry, in extract() method in Lister 112 if (args[i].equals("-enc")) { in parse() 116 System.err.println("missing argument to -enc"); in parse() 119 } else if (args[i].equals("-extract")) { in parse() 123 System.err.println("missing argument to -extract"); in parse() [all …]
|
| /external/zlib/contrib/minizip/ |
| D | README.chromium | 1 Name: ZIP file API for reading file entries in a ZIP archive 12 Minizip provides API on top of zlib that can enumerate and extract ZIP archive 16 - Fixed uncompressing files with wrong uncompressed size set 18 0014-minizip-unzip-with-incorrect-size.patch 20 - Enable traditional PKWARE decryption in zlib/contrib/minizip 22 zip. (crrev.com/580862) 23 0015-minizip-unzip-enable-decryption.patch 25 - Add parsing of the 'Info-ZIP Unicode Path Extra Field' as described in 28 0016-minizip-parse-unicode-path-extra-field.patch
|
| /external/webrtc/rtc_tools/testing/ |
| D | README.md | 1 This directory contains prebuilt tools used during end-to-end tests. 4 Updating prebuilt_apprtc.zip: 6 - Follow AppRTC instructions: 7 - `git clone https://github.com/webrtc/apprtc` 8 - Install NodeJS: 9 - Download <https://nodejs.org/> and extract it 10 - `export PATH="$(pwd)/node-v6.10.3-linux-x64/bin:$PATH"` 11 - `cd apprtc` 12 - `npm install` 13 - `export PATH="$(pwd)/node_modules/.bin:$PATH"` [all …]
|
| /external/cldr/tools/scripts/ansible/ |
| D | README.md | 16 - Install Ansible <https://ansible.com> 17 - Install some prereqs: 20 ansible-galaxy install -r requirements.yml 23 - Make sure you can `ssh` into all of the needed systems. For example, 24 `ssh cldr-ref.unicode.org` should succeed without needing a password. 26 - You should be able to run `ansible all -m ping` and get something back 30 cldr-ref.unicode.org | SUCCESS => { 41 - Install python3. Make sure `python --version` 42 or `python3 --version` returns "Python 3…" 44 - TODO: these shouldn't be needed, but they are. Here's the entire [all …]
|
| /external/rust/crates/libsqlite3-sys/ |
| D | upgrade.sh | 8 # Download and extract amalgamation 9 SQLITE=sqlite-amalgamation-3350400 10 curl -O https://sqlite.org/2021/$SQLITE.zip 11 unzip -p "$SQLITE.zip" "$SQLITE/sqlite3.c" > "$SQLITE3_LIB_DIR/sqlite3.c" 12 unzip -p "$SQLITE.zip" "$SQLITE/sqlite3.h" > "$SQLITE3_LIB_DIR/sqlite3.h" 13 unzip -p "$SQLITE.zip" "$SQLITE/sqlite3ext.h" > "$SQLITE3_LIB_DIR/sqlite3ext.h" 14 rm -f "$SQLITE.zip" 17 rm -f "$SQLITE3_LIB_DIR/bindgen_bundled_version.rs" 21 find "$SCRIPT_DIR/../target" -type f -name bindgen.rs -exec rm {} \; 22 env LIBSQLITE3_SYS_BUNDLING=1 cargo build --features "buildtime_bindgen" --no-default-features [all …]
|
| /external/python/cpython2/Lib/ |
| D | zipfile.py | 2 Read and write ZIP files. 32 ZIP64_LIMIT = (1 << 31) - 1 33 ZIP_FILECOUNT_LIMIT = (1 << 16) - 1 34 ZIP_MAX_COMMENT = (1 << 16) - 1 36 # constants for Zip file compression methods 39 # Other ZIP compression methods not supported 43 # in the PKWARE description of the ZIP file format: 143 """Quickly see if a file is a ZIP file by checking the magic number. 145 The filename argument may be a file or file-like object too. 160 Read the ZIP64 end-of-archive records and use that to update endrec [all …]
|
| /external/skia/ |
| D | serve-bazel-test-undeclared-outputs.sh | 5 # Use of this source code is governed by a BSD-style license that can be 10 if [ $# -ne 1 ] 12 echo "Usage: $0 <path to outputs.zip>" 16 echo "https://bazel.build/reference/test-encyclopedia#initial-conditions." 22 echo "undeclared test outputs are typically found inside a ZIP file named" 23 echo "bazel-testlogs/path/to/some_test/test.outputs/outputs.zip (relative to the repository's" 29 echo " $ $0 bazel-testlogs/path/to/some_test/test.outputs/outputs.zip" 35 # Create a temporary directory where we will extract the ZIP file, and delete it on exit. 36 TMP_DIR="$(mktemp -d)" 37 trap "rm -rf $TMP_DIR" EXIT [all …]
|