| /external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/ |
| D | ArchiveStreamFactory.java | 10 * http://www.apache.org/licenses/LICENSE-2.0 44 import org.apache.commons.compress.archivers.tar.TarArchiveInputStream; 45 import org.apache.commons.compress.archivers.tar.TarArchiveOutputStream; 59 * Compressing a ZIP-File: 75 * Decompressing a ZIP-File: 107 * Not supported as an output stream type. 120 * Not supported as an output stream type. 132 * Constant used to identify the TAR archive format. 135 public static final String TAR = "tar"; field in ArchiveStreamFactory 183 * Constructs a new sorted map from input stream provider names to provider [all …]
|
| D | ArchiveStreamProvider.java | 10 * http://www.apache.org/licenses/LICENSE-2.0 34 * Creates an archive input stream from an archiver name and an input 35 * stream. 42 * {@value org.apache.commons.compress.archivers.ArchiveStreamFactory#TAR}, 49 * the input stream 52 * @return the archive input stream 56 * if the format cannot be read from a stream 58 * if the archiver name or stream is null 64 * Creates an archive output stream from an archiver name and an output 65 * stream. [all …]
|
| /external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/tar/ |
| D | TarArchiveInputStream.java | 9 * http://www.apache.org/licenses/LICENSE-2.0 24 package org.apache.commons.compress.archivers.tar; 41 * The TarInputStream reads a UNIX tar archive as an InputStream. 43 * the archive, and the read each entry as a normal input stream 53 /** The size the TAR header */ 65 /** How far into the entry the stream is at */ 68 /** An input stream to read from */ 71 /** The meta-data about the current entry */ 85 * @param is the input stream to use 93 * @param is the input stream to use [all …]
|
| D | TarArchiveOutputStream.java | 10 * http://www.apache.org/licenses/LICENSE-2.0 19 package org.apache.commons.compress.archivers.tar; 40 * The TarOutputStream writes a UNIX tar archive as an OutputStream. Methods are provided to put 41 * entries, and then write their contents by writing to this stream using write(). 43 * <p>tar archives consist of a sequence of records of 512 bytes each 67 * GNU tar extensions are used to store long file names in the archive. 82 * star/GNU tar/BSD tar extensions are used to store big number in the archive. 125 private static final int BLOCK_SIZE_UNSPECIFIED = -511; 132 * @param os the output stream to use 143 * @param os the output stream to use [all …]
|
| D | package.html | 2 <!-- 11 http://www.apache.org/licenses/LICENSE-2.0 19 --> 21 <p>Provides stream classes for reading and writing archives using 22 the TAR format.</p> 25 TAR. The classes of this package can read and write archives in 26 the traditional pre-POSIX <b>ustar</b> format and support GNU 27 specific extensions for long filenames that GNU tar itself by
|
| /external/apache-commons-compress/src/changes/ |
| D | release-notes.vm | 9 ## http://www.apache.org/licenses/LICENSE-2.0 23 ## http://maven.apache.org/plugins/maven-changes-plugin/examples/using-a-custom-announcement-templa… 24 ## Hack to improve layout: replace all pairs of spaces with a single new-line 28 ## Fix up indentation for multi-line action descriptions 38 ## Use replaceAll to fix up LF-only line ends on Windows. 67 ## Use replaceAll to fix up LF-only line ends on Windows. 96 ## Use replaceAll to fix up LF-only line ends on Windows. 125 ## Use replaceAll to fix up LF-only line ends on Windows. 153 $url.replaceAll("proper/commons-","") 165 ----------- [all …]
|
| D | changes.xml | 1 <?xml version="1.0" encoding="UTF-8"?> 2 <!-- 11 http://www.apache.org/licenses/LICENSE-2.0 19 --> 21 <!-- 22 This file is also used by the maven-changes-plugin to generate the release notes. 26 release process easy :-). 30 3. Use the report generated by the maven-changelog-plugin to see all 35 mvn changes:announcement-generate -Prelease-notes [-Dchanges.version=m.n] 38 --> [all …]
|
| /external/apache-commons-compress/ |
| D | RELEASE-NOTES.txt | 6 Brotli, Zstandard and ar, cpio, jar, tar, zip, dump, 7z, arj. 9 ------------ 12 o It is now possible to specify the arguments of zstd-jni's 14 Issue: COMPRESS-460. 23 o Changed the OSGi Import-Package to also optionally import 25 Issue: COMPRESS-456. 28 thrown during the closing the stream. 29 Issue: COMPRESS-457. 33 Issue: COMPRESS-455. 34 o The cpio streams didn't handle archives using a multi-byte [all …]
|
| /external/apache-commons-compress/src/site/xdoc/ |
| D | examples.xml | 2 <!-- 11 http://www.apache.org/licenses/LICENSE-2.0 19 --> 30 stream of data compressor formats while all formats that 36 cpio, dump, tar and zip. Pack200 is a special case as it can 47 <p>The stream classes all wrap around streams provided by the 51 users wrap their stream 62 format of an input stream.</p> 72 archiver stream:</p> 79 compressor stream:</p> [all …]
|
| D | tar.xml | 2 <!-- 11 http://www.apache.org/licenses/LICENSE-2.0 19 --> 22 <title>Commons Compress TAR package</title> 26 <section name="The TAR package"> 33 <p>There are several different dialects of the TAR format, maybe 34 even different TAR formats. The tar package contains special 38 longer than 100 characters or bigger than 8 GiB and the tar 41 all the existing tar dialects and is understood by most of the 44 <p>The tar package does not support the full POSIX tar standard [all …]
|
| /external/python/cpython2/Doc/library/ |
| D | tarfile.rst | 1 :mod:`tarfile` --- Read and write tar archive files 5 :synopsis: Read and write tar-format archive files. 15 -------------- 17 The :mod:`tarfile` module makes it possible to read and write tar 20 higher-level functions in :ref:`shutil <archiving-operations>`. 27 * read/write support for the POSIX.1-1988 (ustar) format. 29 * read/write support for the GNU tar format including *longname* and *longlink* 30 extensions, read-only support for the *sparse* extension. 32 * read/write support for the POSIX.1-2001 (pax) format. 45 allowed, see :ref:`tarfile-objects`. [all …]
|
| /external/apache-commons-compress/src/test/java/org/apache/commons/compress/compressors/ |
| D | DetectCompressorTestCase.java | 10 * http://www.apache.org/licenses/LICENSE-2.0 109 final CompressorInputStream xz = getStreamFor("bla.tar.xz"); in testDetection() 113 final CompressorInputStream zlib = getStreamFor("bla.tar.deflatez"); in testDetection() 117 final CompressorInputStream zstd = getStreamFor("bla.tar.zst"); in testDetection() 123 fail("No exception thrown for an empty input stream"); in testDetection() 135 assertEquals(CompressorStreamFactory.XZ, detect("bla.tar.xz")); in testDetect() 136 assertEquals(CompressorStreamFactory.DEFLATE, detect("bla.tar.deflatez")); in testDetect() 137 assertEquals(CompressorStreamFactory.LZ4_FRAMED, detect("bla.tar.lz4")); in testDetect() 138 assertEquals(CompressorStreamFactory.LZMA, detect("bla.tar.lzma")); in testDetect() 139 assertEquals(CompressorStreamFactory.SNAPPY_FRAMED, detect("bla.tar.sz")); in testDetect() [all …]
|
| /external/apache-commons-compress/src/test/java/org/apache/commons/compress/archivers/ |
| D | ArchiveStreamFactoryTest.java | 10 * http://www.apache.org/licenses/LICENSE-2.0 40 import org.apache.commons.compress.archivers.tar.TarArchiveInputStream; 49 * see https://issues.apache.org/jira/browse/COMPRESS-171 55 ….createArchiveInputStream(new ByteArrayInputStream("This certainly is not a tar archive, really, n… in shortTextFilesAreNoTARs() 56 fail("created an input stream for a non-archive"); in shortTextFilesAreNoTARs() 63 * see https://issues.apache.org/jira/browse/COMPRESS-191 70 fail("created an input stream for a non-archive"); in aiffFilesAreNoTARs() 82 fail("created an input stream for a non-archive"); in testCOMPRESS209() 105 * <a href="https://issues.apache.org/jira/browse/COMPRESS-267" 106 * >COMPRESS-267</a>. [all …]
|
| /external/tink/cc/integration/awskms/ |
| D | tink_cc_awskms_deps.bzl | 1 """Tink C++ AWS-KMS Integration Dependencies.""" 6 """Loads dependencies for Tink C++ AWS-KMS.""" 8 # Release from 2020-06-01 12 url = "https://github.com/aws/aws-sdk-cpp/archive/1.7.345.tar.gz", 14 strip_prefix = "aws-sdk-cpp-1.7.345", 21 url = "https://github.com/awslabs/aws-c-common/archive/v0.4.29.tar.gz", 23 strip_prefix = "aws-c-common-0.4.29", 30 url = "https://github.com/awslabs/aws-c-event-stream/archive/v0.1.4.tar.gz", 32 strip_prefix = "aws-c-event-stream-0.1.4", 39 url = "https://github.com/awslabs/aws-checksums/archive/v0.1.5.tar.gz", [all …]
|
| /external/bazelbuild-rules_rust/.github/workflows/ |
| D | release.yaml | 1 --- 7 - main 9 - version.bzl 16 BAZEL_STARTUP_FLAGS: --bazelrc=${{ github.workspace }}/.github/github.bazelrc 20 runs-on: ubuntu-20.04 22 - uses: actions/checkout@v3 25 - name: Ensure branch is 'main' 28 branch="$(git rev-parse --abbrev-ref HEAD)" 35 - name: Ensure release does not already exist 39 if [[ -n "$(git tag -l ${version})" ]]; then [all …]
|
| /external/python/cpython3/Doc/library/ |
| D | tarfile.rst | 1 :mod:`tarfile` --- Read and write tar archive files 5 :synopsis: Read and write tar-format archive files. 12 -------------- 14 The :mod:`tarfile` module makes it possible to read and write tar 17 higher-level functions in :ref:`shutil <archiving-operations>`. 24 * read/write support for the POSIX.1-1988 (ustar) format. 26 * read/write support for the GNU tar format including *longname* and *longlink* 27 extensions, read-only support for all variants of the *sparse* extension 30 * read/write support for the POSIX.1-2001 (pax) format. 44 allowed, see :ref:`tarfile-objects`. [all …]
|
| /external/bazelbuild-rules_rust/examples/crate_universe_unnamed/vendor_remote_manifests/crates/ |
| D | defs.bzl | 3 # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To 11 - [aliases](#aliases) 12 - [crate_deps](#crate_deps) 13 - [all_crate_deps](#all_crate_deps) 14 - [crate_repositories](#crate_repositories) 76 # Alert on any miss-matched dependencies 298 "tokio": Label("@crates_vendor_manifests__tokio-1.36.0//:tokio"), 313 "tempfile": Label("@crates_vendor_manifests__tempfile-3.10.0//:tempfile"), 314 "tokio-test": Label("@crates_vendor_manifests__tokio-test-0.4.3//:tokio_test"), 369 "aarch64-apple-darwin": ["@rules_rust//rust/platform:aarch64-apple-darwin"], [all …]
|
| /external/bazelbuild-rules_rust/examples/crate_universe/vendor_remote_manifests/crates/ |
| D | defs.bzl | 3 # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To 11 - [aliases](#aliases) 12 - [crate_deps](#crate_deps) 13 - [all_crate_deps](#all_crate_deps) 14 - [crate_repositories](#crate_repositories) 76 # Alert on any miss-matched dependencies 298 "tokio": Label("@cvm__tokio-1.36.0//:tokio"), 313 "tempfile": Label("@cvm__tempfile-3.10.0//:tempfile"), 314 "tokio-test": Label("@cvm__tokio-test-0.4.3//:tokio_test"), 369 "aarch64-apple-darwin": ["@rules_rust//rust/platform:aarch64-apple-darwin"], [all …]
|
| /external/python/cpython2/Lib/ |
| D | tarfile.py | 1 # -*- coding: iso-8859-1 -*- 2 #------------------------------------------------------------------- 4 #------------------------------------------------------------------- 29 """Read from and write to tar format archives. 41 #--------- 43 #--------- 64 #--------------------------------------------------------- 65 # tar constants 66 #--------------------------------------------------------- 70 GNU_MAGIC = "ustar \0" # magic gnu tar string [all …]
|
| D | mimetypes.py | 5 guess_type(url, strict=1) -- guess the MIME type and encoding of a URL. 7 guess_extension(type, strict=1) -- guess the extension for a given MIME type. 13 knownfiles -- list of files to parse 14 inited -- flag set when init() has been called 15 suffix_map -- dictionary mapping suffixes to suffixes 16 encodings_map -- dictionary mapping suffixes to encodings 17 types_map -- dictionary mapping suffixes to types 21 init([files]) -- parse a list of files, default knownfiles (on Windows, the 23 read_mime_types(file) -- parse one file, return a dictionary or None 57 """MIME-types datastore. [all …]
|
| /external/python/cpython3/Lib/ |
| D | tarfile.py | 2 #------------------------------------------------------------------- 4 #------------------------------------------------------------------- 29 """Read from and write to tar format archives. 36 #--------- 38 #--------- 76 #--------------------------------------------------------- 77 # tar constants 78 #--------------------------------------------------------- 82 GNU_MAGIC = b"ustar \0" # magic gnu tar string 83 POSIX_MAGIC = b"ustar\x0000" # magic posix tar string [all …]
|
| D | mimetypes.py | 5 guess_type(url, strict=True) -- guess the MIME type and encoding of a URL. 7 guess_extension(type, strict=True) -- guess the extension for a given MIME type. 13 knownfiles -- list of files to parse 14 inited -- flag set when init() has been called 15 suffix_map -- dictionary mapping suffixes to suffixes 16 encodings_map -- dictionary mapping suffixes to encodings 17 types_map -- dictionary mapping suffixes to types 21 init([files]) -- parse a list of files, default knownfiles (on Windows, the 23 read_mime_types(file) -- parse one file, return a dictionary or None 65 """MIME-types datastore. [all …]
|
| /external/armnn/python/pyarmnn/scripts/ |
| D | download_test_resources.py | 3 # SPDX-License-Identifier: MIT 6 …n this script prior to running unit tests. Resources are stored as a tar.gz or a tar.bz2 archive a… 17 …_URL = "https://snapshots.linaro.org/components/pyarmnn-tests/pyarmnn_testdata_201100_20201022.tar… 21 # download archive - only support tar.gz or tar.bz2 24 if url.endswith(".tar.bz2"): 25 temp_filename += ".tar.bz2" 26 elif url.endswith(".tar.gz"): 27 temp_filename += ".tar.gz" 31 r = requests.get(url, stream=True) 39 with tarfile.open(file_path, "r:bz2" if temp_filename.endswith(".tar.bz2") else "r:gz") as tar: [all …]
|
| /external/curl/docs/examples/ |
| D | ftpget.c | 21 * SPDX-License-Identifier: curl 35 FILE *stream; member 38 static size_t my_fwrite(void *buffer, size_t size, size_t nmemb, void *stream) in my_fwrite() argument 40 struct FtpFile *out = (struct FtpFile *)stream; in my_fwrite() 41 if(!out->stream) { in my_fwrite() 43 out->stream = fopen(out->filename, "wb"); in my_fwrite() 44 if(!out->stream) in my_fwrite() 47 return fwrite(buffer, size, nmemb, out->stream); in my_fwrite() 56 "curl.tar.gz", /* name to store the file as if successful */ in main() 68 "ftp://ftp.example.com/curl/curl-7.9.2.tar.gz"); in main() [all …]
|
| /external/mesa3d/docs/relnotes/ |
| D | 7.8.3.rst | 15 ------------- 19 x MesaLib-7.8.3.tar.gz 20 x MesaLib-7.8.3.tar.bz2 21 x MesaLib-7.8.3.zip 22 x MesaDemos-7.8.3.tar.gz 23 x MesaDemos-7.8.3.tar.bz2 24 x MesaDemos-7.8.3.zip 25 x MesaGLUT-7.8.3.tar.gz 26 x MesaGLUT-7.8.3.tar.bz2 27 x MesaGLUT-7.8.3.zip [all …]
|