HomeSort by relevance Sort by last modified time
    Searched refs:zipfile (Results 126 - 150 of 187) sorted by null

1 2 3 4 56 7 8

  /external/tensorflow/tensorflow/examples/tutorials/word2vec/
word2vec_basic.py 28 import zipfile
80 with zipfile.ZipFile(filename) as f:
  /external/tensorflow/tensorflow/python/keras/_impl/keras/utils/
data_utils_test.py 26 import zipfile
54 with zipfile.ZipFile(zip_file_path, 'w') as zip_file:
  /test/vts/utils/python/coverage/
sancov_utils.py 21 import zipfile
295 symbols_zip = zipfile.ZipFile(
coverage_utils.py 23 import zipfile
374 cov_zip: the ZipFile object containing the gcno coverage artifacts.
487 cov_zip: the ZipFile object containing the gcno coverage artifacts.
610 cov_zip = zipfile.ZipFile(os.path.join(resource_path, _GCOV_ZIP))
  /external/python/cpython2/Tools/nuget/
make_zip.py 13 from zipfile import ZipFile, ZIP_DEFLATED
127 with ZipFile(str(target), 'w', ZIP_DEFLATED) as f:
  /external/tensorflow/tensorflow/contrib/lite/testing/
generate_examples.py 36 import zipfile
368 archive = zipfile.PyZipFile(zip_path, "w")
437 zipfile.ZIP_DEFLATED)
441 zipfile.ZIP_DEFLATED)
447 example_fp.getvalue(), zipfile.ZIP_DEFLATED)
452 example_fp2.getvalue(), zipfile.ZIP_DEFLATED)
477 archive.writestr("manifest.txt", "".join(zip_manifest), zipfile.ZIP_DEFLATED)
    [all...]
  /build/soong/zip/cmd/
main.go 130 fmt.Fprintf(os.Stderr, "usage: zip -o zipfile [-m manifest] -C dir [-f|-l file]...\n")
  /tools/test/connectivity/acts/framework/acts/
utils.py 31 import zipfile
868 with zipfile.ZipFile(zip_path, 'r') as zip_file:
874 """Extracts a single entry from a ZipFile while maintaining permissions.
877 zip_file: A zipfile.ZipFile.
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/
test_archive_util.py 25 import zipfile
  /external/libmojo/build/android/gyp/util/
build_utils.py 18 import zipfile
224 if not zipfile.is_zipfile(zip_path):
228 with zipfile.ZipFile(zip_path) as z:
258 """Adds a file to the given ZipFile with a hard-coded modified time.
261 zip_file: ZipFile instance to add the file to.
265 compress: Whether to enable compression. Default is take from ZipFile
271 zipinfo = zipfile.ZipInfo(filename=zip_path, date_time=HERMETIC_TIMESTAMP)
284 # zipfile will deflate even when it makes the file bigger. To avoid
290 # default passed to the ZipFile constructor
    [all...]
  /external/python/cpython3/Tools/msi/
make_zip.py 12 from zipfile import ZipFile, ZIP_DEFLATED
142 with ZipFile(str(target), 'w', ZIP_DEFLATED) as f:
  /external/python/cpython2/Lib/plat-mac/
bundlebuilder.py 570 import zipfile
573 zf = zipfile.ZipFile(abspath, "w", zipfile.ZIP_DEFLATED)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/
bundlebuilder.py 570 import zipfile
573 zf = zipfile.ZipFile(abspath, "w", zipfile.ZIP_DEFLATED)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
bundlebuilder.py 570 import zipfile
573 zf = zipfile.ZipFile(abspath, "w", zipfile.ZIP_DEFLATED)
    [all...]
  /external/python/cpython2/Lib/distutils/tests/
test_archive_util.py 27 import zipfile
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_archive_util.py 27 import zipfile
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_archive_util.py 27 import zipfile
  /build/soong/third_party/zip/
android.go 202 // think, see e.g. comments in zipfile.c:putextended() and
  /external/v8/tools/clang/scripts/
update.py 24 import zipfile
146 zipfile.ZipFile(f).extractall(path=output_dir)
    [all...]
  /external/python/cpython3/Lib/test/
test_shutil.py 22 import zipfile
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_zipimport.py 18 from zipfile import ZipFile, ZipInfo, ZIP_STORED, ZIP_DEFLATED
70 z = ZipFile(TEMP_ZIP, "w")
80 # Prepend 'stuff' to the start of the zipfile
208 z = ZipFile(TEMP_ZIP, "w")
252 z = ZipFile(TEMP_ZIP, "w")
286 z = ZipFile(TEMP_ZIP, "w")
312 # try importing from a zipfile which contains additional
  /external/python/cpython2/Lib/test/
test_zipimport.py 18 from zipfile import ZipFile, ZipInfo, ZIP_STORED, ZIP_DEFLATED
70 z = ZipFile(TEMP_ZIP, "w")
80 # Prepend 'stuff' to the start of the zipfile
208 z = ZipFile(TEMP_ZIP, "w")
252 z = ZipFile(TEMP_ZIP, "w")
286 z = ZipFile(TEMP_ZIP, "w")
312 # try importing from a zipfile which contains additional
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_zipimport.py 18 from zipfile import ZipFile, ZipInfo, ZIP_STORED, ZIP_DEFLATED
70 z = ZipFile(TEMP_ZIP, "w")
80 # Prepend 'stuff' to the start of the zipfile
208 z = ZipFile(TEMP_ZIP, "w")
252 z = ZipFile(TEMP_ZIP, "w")
286 z = ZipFile(TEMP_ZIP, "w")
312 # try importing from a zipfile which contains additional
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_zipimport.py 18 from zipfile import ZipFile, ZipInfo, ZIP_STORED, ZIP_DEFLATED
70 z = ZipFile(TEMP_ZIP, "w")
80 # Prepend 'stuff' to the start of the zipfile
208 z = ZipFile(TEMP_ZIP, "w")
252 z = ZipFile(TEMP_ZIP, "w")
286 z = ZipFile(TEMP_ZIP, "w")
312 # try importing from a zipfile which contains additional
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_zipimport.py 18 from zipfile import ZipFile, ZipInfo, ZIP_STORED, ZIP_DEFLATED
70 z = ZipFile(TEMP_ZIP, "w")
80 # Prepend 'stuff' to the start of the zipfile
208 z = ZipFile(TEMP_ZIP, "w")
252 z = ZipFile(TEMP_ZIP, "w")
286 z = ZipFile(TEMP_ZIP, "w")
312 # try importing from a zipfile which contains additional

Completed in 1238 milliseconds

1 2 3 4 56 7 8