Searched refs:upload_paths (Results 1 – 3 of 3) sorted by relevance
/external/jsoncpp/ |
D | makerelease.py | 220 upload_paths = set( [os.path.basename(p) for p in antglob.glob( doc_dir )] ) 221 paths_to_remove = existing_paths - upload_paths 228 print('Uploading %d files:' % len(upload_paths)) 230 upload_paths = list(upload_paths) 232 for index in range(0,len(upload_paths),batch_size): 233 paths = upload_paths[index:index+batch_size] 235 remaining_files = len(upload_paths) - index 237 print('%d/%d, ETA=%.1fs' % (index+1, len(upload_paths), remaining_sec))
|
/external/autotest/client/common_lib/ |
D | packages.py | 239 upload_paths=None, do_locking=True, run_function=utils.run, argument 296 if not upload_paths: 297 self.upload_paths = [] 299 self.upload_paths = list(upload_paths) 509 elif len(self.upload_paths) > 0: 511 upload_path_list = self.upload_paths 638 elif len(self.upload_paths) > 0: 639 remove_path_list = self.upload_paths
|
/external/autotest/utils/ |
D | packager.py | 322 upload_paths = c.get_config_value('PACKAGES', 'upload_location', 326 upload_paths.append(options.repo) 329 if not upload_paths: 362 upload_paths=upload_paths,
|