Searched refs:archive_name (Results 1 – 9 of 9) sorted by relevance
/third_party/jsoncpp/devtools/ |
D | tarball.py | 22 def archive_name(path): function 26 archive_name = path[len(common_path):] 27 if os.path.isabs(archive_name): 28 archive_name = archive_name[1:] 29 return os.path.join(prefix_dir, archive_name) 34 path_in_tar = archive_name(path) 45 path_in_tar = archive_name(source_path)
|
/third_party/python/Lib/distutils/ |
D | archive_util.py | 83 archive_name = base_name + '.tar' 85 archive_name += compress_ext.get(compress, '') 87 mkpath(os.path.dirname(archive_name), dry_run=dry_run) 107 tar = tarfile.open(archive_name, 'w|%s' % tar_compression[compress]) 117 compressed_name = archive_name + compress_ext[compress] 119 cmd = [compress, archive_name, compressed_name] 121 cmd = [compress, '-f', archive_name] 125 return archive_name
|
/third_party/python/Lib/distutils/tests/ |
D | test_sdist.py | 432 archive_name = join(self.tmp_dir, 'dist', 'fake-1.0.tar.gz') 433 archive = tarfile.open(archive_name) 459 archive_name = join(self.tmp_dir, 'dist', 'fake-1.0.tar.gz') 460 archive = tarfile.open(archive_name) 477 archive_name = join(self.tmp_dir, 'dist', 'fake-1.0.tar.gz') 478 archive = tarfile.open(archive_name)
|
D | test_archive_util.py | 375 archive_name = make_tarball(base_name, 'dist', compress=None, 381 self.assertTrue(os.path.exists(archive_name)) 384 archive = tarfile.open(archive_name)
|
/third_party/skia/third_party/externals/freetype/tests/scripts/ |
D | download-test-fonts.py | 152 archive_name: str, 177 % (filepath, archive_name, digest.hex(), expected_digest.hex())
|
/third_party/boost/libs/predef/tools/ci/ |
D | common.py | 387 archive_name = os.path.basename( archive_path ) 388 extension = archive_name[ archive_name.find( '.' ) : ]
|
/third_party/python/Lib/ |
D | shutil.py | 910 archive_name = base_name + '.tar' + compress_ext 911 archive_dir = os.path.dirname(archive_name) 936 tar = tarfile.open(archive_name, 'w|%s' % tar_compression) 942 return archive_name
|
/third_party/python/Doc/library/ |
D | shutil.rst | 717 >>> archive_name = os.path.expanduser(os.path.join('~', 'myarchive')) 719 >>> make_archive(archive_name, 'gztar', root_dir) 761 >>> archive_name = os.path.expanduser(os.path.join('~', 'myarchive')) 763 ... archive_name,
|
/third_party/python/Lib/test/ |
D | test_shutil.py | 1524 archive_name = make_archive(base_name, 'gztar', root_dir, 'dist', 1528 self.assertTrue(os.path.isfile(archive_name)) 1531 archive = tarfile.open(archive_name)
|