Home | History | Annotate | Download | only in telemetry

Lines Matching full:buckets

20 BUCKETS = {bucket: easy_bucket_name for easy_bucket_name, bucket
36 """Returns a dict of all files and which buckets they're in."""
37 # Preprocessing: get the contents of all buckets.
39 for bucket in BUCKETS:
59 for bucket in BUCKETS:
103 for file_path, buckets in sorted(files.iteritems()):
104 if buckets:
105 buckets = [BUCKETS[bucket] for bucket in buckets]
106 print '%-11s %s' % (','.join(buckets), file_path)
126 for file_path, buckets in sorted(files.iteritems()):
127 if not buckets:
130 for file_path, buckets in sorted(files.iteritems()):
131 if args.bucket in buckets:
132 buckets.remove(args.bucket)
133 if not buckets:
139 cloud_storage.Move(buckets.pop(), args.bucket, file_hash)
142 for bucket in buckets:
155 for file_path, buckets in sorted(files.iteritems()):
157 for bucket in buckets: