/third_party/python/Lib/ |
D | zipimport.py | 98 self.archive = path 210 if pathname.startswith(self.archive + path_sep): 211 key = pathname[len(self.archive + path_sep):] 217 return _get_data(self.archive, toc_entry) 255 return _get_data(self.archive, toc_entry).decode() 296 fullpath = _bootstrap_external._path_join(self.archive, path) 333 self._files = _read_directory(self.archive) 334 _zip_directory_cache[self.archive] = self._files 336 _zip_directory_cache.pop(self.archive, None) 402 def _read_directory(archive): argument [all …]
|
D | zipapp.py | 38 def _maybe_open(archive, mode): argument 39 if isinstance(archive, (str, os.PathLike)): 40 with open(archive, mode) as f: 43 yield archive 53 def _copy_archive(archive, new_archive, interpreter=None): argument 55 with _maybe_open(archive, 'rb') as src: 150 def get_interpreter(archive): argument 151 with _maybe_open(archive, 'rb') as f:
|
/third_party/elfutils/src/ |
D | make-debug-archive.in | 85 archive=$dir/debug.a 95 if [ $force_kernel = no -a "$archive" -nt "$dep" ]; then 100 [ ! -e "$archive" ] || $sudo $RM -f "$archive" || exit 102 set "$archive" "-K$release" 109 archive="$1" 112 case "$archive" in 114 *) archive="`/bin/pwd`/$archive" ;; 118 new_archive="$archive.new" 130 $sudo $MV -f "$new_archive" "$archive"
|
/third_party/lzma/CPP/7zip/UI/GUI/ |
D | Extract.rc | 9 IDS_UPDATE_NOT_SUPPORTED "Update operations are not supported for this archive." 10 IDS_CANT_OPEN_ARCHIVE "Cannot open file '{0}' as archive" 11 IDS_CANT_OPEN_ENCRYPTED_ARCHIVE "Cannot open encrypted archive '{0}'. Wrong password?" 12 IDS_UNSUPPORTED_ARCHIVE_TYPE "Unsupported archive type" 14 IDS_CANT_OPEN_AS_TYPE "Cannot open the file as {0} archive" 15 IDS_IS_OPEN_AS_TYPE "The file is open as {0} archive" 16 IDS_IS_OPEN_WITH_OFFSET "The archive is open with offset" 50 IDS_EXTRACT_MSG_IS_NOT_ARC "Is not archive" 54 IDS_OPEN_MSG_UNAVAILABLE_START "Unavailable start of archive" 55 IDS_OPEN_MSG_UNCONFIRMED_START "Unconfirmed start of archive" [all …]
|
/third_party/lzma/DOC/ |
D | 7zC.txt | 24 7zIn.* - .7z archive opening 32 You can create .7z archive with 7z.exe, 7za.exe or 7zr.exe: 34 7z.exe a archive.7z *.htm -r -mx -m0fb=255 36 If you have big number of files in archive, and you need fast extracting, 39 7za.exe a archive.7z *.htm -ms=512K -r -mx -m0fb=255 -m0d=512K 42 512KB for extracting one file from such archive. 48 - It reads only "FileName", "Size", "LastWriteTime" and "CRC" information for each file in archive. 61 e: Extract files from archive 62 l: List contents of archive 63 t: Test integrity of archive [all …]
|
D | installer.txt | 21 7zr a archive.7z files 26 Such module extracts archive to temp folder and then runs specified program and removes 27 temp files after program finishing. Self-extract archive for installers must be created 30 self-extract archive: 32 copy /b 7zSD.sfx + config.txt + archive.7z archive.exe 35 uncompressed before including to 7z archive. 63 Use RunProgram, if you want to run some program from .7z archive. 64 Use ExecuteFile, if you want to open some document from .7z archive or 117 - It decompresses solid 7z blocks (it can be whole 7z archive) to RAM. 119 solid 7z block (size of 7z archive at simplest case). [all …]
|
/third_party/skia/third_party/externals/dawn/scripts/ |
D | extract.py | 94 archive, output = args 96 if not os.path.exists(archive): 100 with open(archive) as f: 116 if archive.endswith('.zip'): 117 entries = IterateZip(archive) 118 elif archive.endswith('.tar.gz'): 119 entries = IterateTar(archive, 'gz') 120 elif archive.endswith('.tar.bz2'): 121 entries = IterateTar(archive, 'bz2') 123 raise ValueError(archive) [all …]
|
/third_party/skia/third_party/externals/expat/expat/ |
D | distribute.sh | 51 archive=expat-${version}.tar.${ext} 52 gpg --armor --output ${archive}.asc --detach-sign ${archive} 53 gpg --verify ${archive}.asc ${archive}
|
/third_party/python/Doc/library/ |
D | zipapp.rst | 26 can be used to create an executable archive from a directory containing 27 Python code. When run, the archive will execute the ``main`` function from 28 the module ``myapp`` in the archive. 48 If *source* is a directory, this will create an archive from the contents of 49 *source*. If *source* is a file, it should be an archive, and it will be 50 copied to the target archive (or the contents of its shebang line will be 64 An output filename must be specified if the *source* is an archive (and in 69 Add a ``#!`` line to the archive specifying *interpreter* as the command 70 to run. Also, on POSIX, make the archive executable. The default is to 75 Write a ``__main__.py`` file to the archive that executes *mainfn*. The [all …]
|
D | zipfile.rst | 5 :synopsis: Read and write ZIP-format archive files. 14 The ZIP file format is a common archive and compression standard. This module 72 Class used to represent information about a member of an archive. Instances 76 module. *filename* should be the full name of the archive member, and 92 The numeric constant for an uncompressed archive member. 131 Information about the Info-ZIP project's ZIP archive programs and development 154 ZIP file, then a new ZIP archive is appended to the file. This is meant for 155 adding a ZIP archive to another file (such as :file:`python.exe`). If 159 *compression* is the ZIP compression method to use when writing the archive, 173 writing files to the archive. [all …]
|
D | zipimport.rst | 20 also allows an item of :data:`sys.path` to be a string naming a ZIP file archive. 21 The ZIP archive can contain a subdirectory structure to support package imports, 22 and a path within the archive can be specified to only import from a 24 import from the :file:`lib/` subdirectory within the archive. 26 Any files may be present in the ZIP archive, but importers are only invoked for 28 (:file:`.pyd`, :file:`.so`) is disallowed. Note that if an archive only contains 29 :file:`.py` files, Python will not attempt to modify the archive by adding the 30 corresponding :file:`.pyc` file, meaning that if a ZIP archive 34 Previously, ZIP archives with an archive comment were not supported. 75 archive. [all …]
|
D | tarfile.rst | 1 :mod:`tarfile` --- Read and write tar archive files 5 :synopsis: Read and write tar-format archive files. 165 Return :const:`True` if *name* is a tar archive file, that the :mod:`tarfile` 182 Is raised when a tar archive is opened, that either cannot be handled by the 217 Each of the following constants defines a tar archive format that the 256 Documentation for tar archive files, including GNU tar extensions. 264 The :class:`TarFile` object provides an interface to a tar archive. A tar 265 archive is a sequence of blocks. An archive member (a stored file) is made up of 267 archive several times. Each archive member is represented by a :class:`TarInfo` 272 note that in the event of an exception an archive opened for writing will not [all …]
|
/third_party/cef/tests/ceftests/ |
D | zip_reader_unittest.cc | 221 CefRefPtr<CefZipArchive> archive(new CefZipArchive()); in TEST() local 223 ASSERT_EQ(archive->Load(stream, CefString(), false), (size_t)5); in TEST() 225 ASSERT_TRUE(archive->HasFile("test_archive/file 1.txt")); in TEST() 226 ASSERT_TRUE(archive->HasFile("test_archive/folder 1/file 1a.txt")); in TEST() 227 ASSERT_TRUE(archive->HasFile("test_archive/FOLDER 1/file 1b.txt")); in TEST() 228 ASSERT_TRUE(archive->HasFile("test_archive/folder 1/folder 1a/file 1a1.txt")); in TEST() 229 ASSERT_TRUE(archive->HasFile("test_archive/folder 2/file 2a.txt")); in TEST() 233 file = archive->GetFile("test_archive/folder 2/file 2a.txt"); in TEST()
|
/third_party/googletest/ |
D | WORKSPACE | 9 …urls = ["https://github.com/abseil/abseil-cpp/archive/52835439ca90d86b27bf8cd1708296e95604d724.zip… 18 urls = ["https://github.com/google/re2/archive/d0b1f8f2ecc2ea74956c7608b6f915175314ff0e.zip"], 25 …urls = ["https://github.com/bazelbuild/rules_python/archive/70cce26432187a60b4e950118791385e6fb3c2… 32 …urls = ["https://github.com/bazelbuild/bazel-skylib/archive/5bfcb1a684550626ce138fe0fe8f5f702b3764… 39 …urls = ["https://github.com/bazelbuild/platforms/archive/3fbc687756043fb58a407c2ea8c944bc2fe1d922.…
|
/third_party/lzma/CPP/7zip/UI/Console/ |
D | List.cpp | 379 HRESULT AddMainProps(IInArchive *archive); 455 HRESULT CFieldPrinter::AddMainProps(IInArchive *archive) in AddMainProps() argument 458 RINOK(archive->GetNumberOfProperties(&numProps)); in AddMainProps() 464 RINOK(archive->GetPropertyInfo(i, &name, &propID, &vt)); in AddMainProps() 784 static HRESULT GetUInt64Value(IInArchive *archive, UInt32 index, PROPID propID, CListUInt64Def &val… in GetUInt64Value() argument 789 RINOK(archive->GetProperty(index, propID, &prop)); in GetUInt64Value() 794 static HRESULT GetItemMTime(IInArchive *archive, UInt32 index, CListFileTimeDef &t) in GetItemMTime() argument 801 RINOK(archive->GetProperty(index, kpidMTime, &prop)); in GetItemMTime() 919 static HRESULT PrintArcProp(CStdOutStream &so, IInArchive *archive, PROPID propID, const wchar_t *n… in PrintArcProp() argument 922 RINOK(archive->GetArchiveProperty(propID, &prop)); in PrintArcProp() [all …]
|
/third_party/node/deps/v8/tools/ |
D | fuzz-harness.sh | 97 archive="$2" 99 archive=fuzz-results-$(date +%Y%m%d%H%M%S).tar.bz2 101 echo "Creating archive $archive" 102 tar -cjf $archive err-* w*
|
/third_party/curl/docs/ |
D | BINDINGS.md | 15 [Ada95](https://web.archive.org/web/20070403105909/www.almroth.com/adacurl/index.html) Written by A… 38 [Euphoria](https://web.archive.org/web/20050204080544/rays-web.com/eulibcurl.htm) Written by Ray Sm… 42 [Ferite](https://web.archive.org/web/20150102192018/ferite.org/) Written by Paul Querna 48 [glib/GTK+](https://web.archive.org/web/20100526203452/atterer.net/glibcurl) Written by Richard Att… 68 Lua: [luacurl](https://web.archive.org/web/20201205052437/luacurl.luaforge.net/) by Alexander Marin… 70 [Mono](https://web.archive.org/web/20070606064500/https://forge.novell.com/modules/xfmod/project/?l… 78 [Object-Pascal](https://web.archive.org/web/20020610214926/www.tekool.com/opcurl) Free Pascal, Delp… 82 [Pascal](https://web.archive.org/web/20030804091414/houston.quik.com/jkp/curlpas/) Free Pascal, Del… 124 [SPL](https://web.archive.org/web/20210203022158/www.clifford.at/spl/spldoc/curl.html) Written by C… 126 [Tcl](https://web.archive.org/web/20160826011806/mirror.yellow5.com/tclcurl/) Tclcurl by Andrés Gar… [all …]
|
/third_party/lzma/CPP/7zip/UI/Common/ |
D | OpenArchive.cpp | 952 static HRESULT Archive_GetItem_Size(IInArchive *archive, UInt32 index, UInt64 &size, bool &defined) in Archive_GetItem_Size() argument 957 RINOK(archive->GetProperty(index, kpidSize, &prop)); in Archive_GetItem_Size() 1258 HRESULT CArc::ReadBasicProps(IInArchive *archive, UInt64 startPos, HRESULT openRes) in ReadBasicProps() argument 1269 RINOK(archive->GetArchiveProperty(kpidErrorFlags, &prop)); in ReadBasicProps() 1274 RINOK(archive->GetArchiveProperty(kpidWarningFlags, &prop)); in ReadBasicProps() 1280 RINOK(archive->GetArchiveProperty(kpidError, &prop)); in ReadBasicProps() 1287 RINOK(archive->GetArchiveProperty(kpidWarning, &prop)); in ReadBasicProps() 1294 RINOK(Archive_GetArcProp_UInt(archive, kpidPhySize, PhySize, PhySize_Defined)); in ReadBasicProps() 1305 RINOK(Archive_GetArcProp_Int(archive, kpidOffset, Offset, offsetDefined)); in ReadBasicProps() 1336 …T CArc::PrepareToOpen(const COpenOptions &op, unsigned formatIndex, CMyComPtr<IInArchive> &archive) in PrepareToOpen() argument [all …]
|
/third_party/node/tools/dep_updaters/ |
D | utils.sh | 14 archive="$2" 16 bsd_formatted_checksum=$(shasum -a 256 --tag "$archive") 20 archive_checksum=$(shasum -a 256 "$archive")
|
/third_party/protobuf/ |
D | protobuf_deps.bzl | 24 urls = ["https://github.com/madler/zlib/archive/v1.2.11.tar.gz"], 40 …urls = ["https://github.com/bazelbuild/rules_cc/archive/818289e5613731ae410efb54218a4077fb9dbb03.t… 48 …urls = ["https://github.com/bazelbuild/rules_java/archive/981f06c3d2bd10225e85209904090eb7b5fb26bd… 56 …urls = ["https://github.com/bazelbuild/rules_proto/archive/97d8af4dc474595af3900dd85cb3a29ad28cc31… 64 …urls = ["https://github.com/bazelbuild/rules_python/archive/4b84ad270387a7c439ebdccfd530e2339601ef…
|
/third_party/node/deps/v8/tools/jsfunfuzz/ |
D | fuzz-harness.sh | 90 archive="$2" 92 archive=fuzz-results-$(date +%Y%m%d%H%M%S).tar.bz2 94 echo "Creating archive $archive" 95 tar -cjf $archive err-* w*
|
/third_party/node/ |
D | node.gypi | 7 # --whole-archive,force_load and /WHOLEARCHIVE are used to include 161 '-Wl,--whole-archive', 163 '-Wl,--no-whole-archive', 200 '-Wl,--whole-archive', 202 '-Wl,--no-whole-archive', 287 '-Wl,--whole-archive <(v8_base)', 288 '-Wl,--no-whole-archive', 361 # -force_load or --whole-archive are not applicable for 379 '-Wl,--whole-archive,' 381 '-Wl,--no-whole-archive',
|
/third_party/elfutils/tests/ |
D | run-arextract.sh | 23 archive=${abs_top_builddir}/libelf/libelf.a 24 if test -f $archive; then 30 testrun ${abs_builddir}/arextract $archive `basename $f` arextract.test || exit 1
|
/third_party/vk-gl-cts/framework/common/ |
D | tcuImageIO.hpp | 39 void loadImage (TextureLevel& dst, const tcu::Archive& archive, const char* fileName); 41 void loadPNG (TextureLevel& dst, const tcu::Archive& archive, const char* fileName); 44 void loadPKM (CompressedTexture& dst, const tcu::Archive& archive, const char* fileName);
|
D | tcuImageIO.cpp | 55 void loadImage (TextureLevel& dst, const tcu::Archive& archive, const char* fileName) in loadImage() argument 60 loadPNG(dst, archive, fileName); in loadImage() 82 void loadPNG (TextureLevel& dst, const tcu::Archive& archive, const char* fileName) in loadPNG() argument 84 de::UniquePtr<Resource> resource(archive.getResource(fileName)); in loadPNG() 228 void loadPKM (CompressedTexture& dst, const tcu::Archive& archive, const char* fileName) in loadPKM() argument 230 de::UniquePtr<Resource> resource(archive.getResource(fileName)); in loadPKM()
|