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/utils/ |
D | packager.py | 235 upload_paths = c.get_config_value('PACKAGES', 'upload_location', 239 upload_paths.append(options.repo) 242 if not upload_paths: 271 upload_paths=upload_paths,
|
/external/autotest/client/common_lib/ |
D | base_packages.py | 216 upload_paths=None, do_locking=True, run_function=utils.run, argument 273 if not upload_paths: 274 self.upload_paths = [] 276 self.upload_paths = list(upload_paths) 481 elif len(self.upload_paths) > 0: 483 upload_path_list = self.upload_paths 605 elif len(self.upload_paths) > 0: 606 remove_path_list = self.upload_paths
|