HomeSort by relevance Sort by last modified time
    Searched refs:download_path (Results 1 - 9 of 9) sorted by null

  /external/toolchain-utils/crosperf/
download_images.py 75 download_path = os.path.join(chromeos_root, 'chroot/tmp', build_id)
76 image_path = os.path.join(download_path, 'chromiumos_test_image.bin')
77 if not os.path.exists(download_path):
78 os.makedirs(download_path)
84 command = '%s cp %s %s' % (gsutil_cmd, image_name, download_path)
89 downloaded_image_name = os.path.join(download_path,
104 download_path = os.path.join(chromeos_root, 'chroot/tmp', build_id)
105 command = ('cd %s ; tar -Jxf chromiumos_test_image.tar.xz ' % download_path)
107 clean_cmd = ('cd %s ; rm -f chromiumos_test_image.bin ' % download_path)
126 command = ('cd %s ; rm -f chromiumos_test_image.tar.xz; ' % download_path)
    [all...]
  /external/chromium-trace/catapult/dependency_manager/dependency_manager/
cloud_storage_info_unittest.py 27 None, None, 'download_path', None)
31 None, 'cs_hash', 'download_path', 'cs_remote_path')
33 'cs_bucket', None, 'download_path', 'cs_remote_path')
37 'cs_bucket', 'cs_hash', 'download_path', None)
45 'download_path', 'cs_remote_path', version_in_cs='version_in_cs')
48 'cs_bucket', 'cs_hash', 'download_path', 'cs_remote_path',
53 self.assertEqual('download_path', cs_info._download_path)
58 'download_path', 'unzip_location', 'path_within_archive')
76 'download_path', 'unzip_location', 'path_within_archive')
78 'cs_bucket', 'cs_hash', 'download_path', 'cs_remote_path'
    [all...]
base_config.py 31 "download_path": "download_path111",
37 "download_path": "download_path2",
58 "download_path" and all paths in "local_paths" are relative to the
63 "cloud_storage_hash", "download_path", "cs_remote_path"
147 download_path = platform_info.get('download_path')
148 if download_path:
149 download_path = self._FormatPath(download_path)
150 download_path = os.path.abspath
    [all...]
cloud_storage_info.py 14 def __init__(self, cs_bucket, cs_hash, download_path, cs_remote_path,
22 download_path: Where the file should be downloaded to.
28 self._download_path = download_path
107 'CloudStorageInfo(download_path=%s, cs_remote_path=%s, cs_bucket=%s, '
dependency_info_unittest.py 81 download_path='download_path2', cs_remote_path='cs_remote_path2')
90 download_path='download_path4', cs_remote_path='cs_remote_path4')
188 download_path='download_path2', cs_remote_path='cs_remote_path2')
199 download_path='download_path4', cs_remote_path='cs_remote_path4')
base_config_unittest.py 30 'download_path': '../../relative/dep1/path1'},
33 'download_path': '../../relative/dep1/path2'}}},
38 'download_path': '../../relative/dep2/path1'},
41 'download_path': '../../relative/dep2/path2'}}}}
49 '"download_path": "../../relative/dep1/path1"', '},',
51 '"download_path": "../../relative/dep1/path2"', '}', '}', '},',
54 '"download_path": "../../relative/dep2/path1"', '},',
56 '"download_path": "../../relative/dep2/path2"', '}', '}', '}',
71 'download_path': '../../relative/dep1/path1'},
74 'download_path': '../../relative/dep1/path2'}}}
    [all...]
  /external/autotest/client/site_tests/video_VideoEncodeAccelerator/
video_VideoEncodeAccelerator.py 26 def _download_video(download_path, local_file):
27 url = '%s%s' % (DOWNLOAD_BASE, download_path)
34 if md5sum not in download_path:
  /external/chromium-trace/catapult/common/py_utils/py_utils/
cloud_storage.py 383 def GetIfHashChanged(cs_path, download_path, bucket, file_hash):
384 """Downloads |download_path| to |file_path| if |file_path| doesn't exist or
394 with _FileLock(download_path):
395 if (os.path.exists(download_path) and
396 CalculateHash(download_path) == file_hash):
398 _GetLocked(bucket, cs_path, download_path)
  /external/autotest/client/site_tests/video_VDAPerf/
video_VDAPerf.py 208 def _download_video(self, download_path, local_file):
209 url = '%s%s' % (DOWNLOAD_BASE, download_path)
216 if md5sum not in download_path:

Completed in 890 milliseconds