HomeSort by relevance Sort by last modified time
    Searched refs:Bucket (Results 51 - 75 of 166) sorted by null

1 23 4 5 6 7

  /external/opencv3/3rdparty/jinja2/
bccache.py 57 class Bucket(object):
73 """Resets the bucket (unloads the bytecode)."""
93 raise TypeError('can\'t write empty bucket')
112 these methods are passed a :class:`~jinja2.bccache.Bucket`.
123 def load_bytecode(self, bucket):
124 filename = path.join(self.directory, bucket.key)
127 bucket.load_bytecode(f)
129 def dump_bytecode(self, bucket):
130 filename = path.join(self.directory, bucket.key)
132 bucket.write_bytecode(f
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/s3/
test_connection.py 31 from boto.s3.bucket import Bucket
42 # create a new, empty bucket
44 bucket = c.create_bucket(bucket_name)
46 bucket = c.get_bucket(bucket_name)
50 bucket.enable_logging(target_bucket=logging_bucket, target_prefix=bucket.name)
51 bucket.disable_logging()
53 k = bucket.new_key('foobar')
92 bucket.delete_key(k
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/quotas/backend/quotas/
services.py 58 """Result of checking quota of a single bucket.
61 name: Name of quota bucket to check.
68 """Mode for individual bucket quota check.
74 will only fail if the remaining tokens in the bucket are already at
76 CHECK_ALL: All tokens must be available in bucket or else quota check
78 a deduction to occur for the indicated bucket.
79 CHECK_ALL: At least some tokens must be available in bucket or else quota
81 not cause a deduction to occur for the indicated bucket.
94 """A request to check or deduct tokens from a users bucket.
109 status: Status of quota check for bucket. See Status enum for details
    [all...]
services_test.py 31 services.QuotaConfig.Bucket(
34 services.QuotaConfig.Bucket(
49 buckets = dict((bucket.name, bucket) for bucket in SIMPLE_CONFIG.buckets)
181 services.QuotaCheck(name=bucket,
184 for bucket, tokens, mode in quotas
  /external/clang/lib/ASTMatchers/
ASTMatchFinder.cpp 491 TimeBucketRegion() : Bucket(nullptr) {}
496 /// If there was a bucket already set, it will finish the timing for that
497 /// other bucket.
500 /// If \p NewBucket is the same as the currently timed bucket, this call
503 if (Bucket != NewBucket) {
505 if (Bucket)
506 *Bucket += Now;
509 Bucket = NewBucket;
514 llvm::TimeRecord *Bucket;
718 /// \brief Bucket to record map
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/gs/
bucket.py 38 from boto.s3.bucket import Bucket as S3Bucket
49 class Bucket(S3Bucket):
50 """Represents a Google Cloud Storage bucket."""
61 super(Bucket, self).__init__(connection, name, key_class)
76 """Returns a Key instance for an object in this bucket.
98 :returns: A Key object from this bucket.
122 """Create a new key in the bucket by copying an existing key.
128 :param src_bucket_name: The name of the source bucket
159 on the bucket), a value of False will be significantly mor
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/gslib/commands/
defacl.py 53 If you specify a default object ACL for a certain bucket, Google Cloud
55 bucket, unless an ACL for that object is separately specified during upload.
62 Setting a default object ACL on a bucket provides a convenient way to ensure
63 newly uploaded objects have a specific ACL. If you don't set the bucket's
72 Gets the default ACL text for a bucket, which you can save and edit
79 access control list for a bucket. The syntax is shared with the "acl ch"
85 in the bucket example-bucket:
87 gsutil defacl ch -u AllUsers:R gs://example-bucket
95 Add the user john.doe@example.com to the default object ACL on bucket
    [all...]
acl.py 58 The "acl get" command gets the ACL text for a bucket or object, which you can
68 gsutil acl set private gs://bucket
70 If you want to make an object or bucket publicly readable or writable, it is
81 gsutil acl get gs://bucket/file.txt > acl.txt
90 gsutil acl set acl.txt gs://bucket/*.jpg
96 gsutil -m acl set acl.txt gs://bucket/*.jpg
137 gsutil acl ch -u AllUsers:R gs://example-bucket/example-object
145 Grant anyone on the internet WRITE access to the bucket example-bucket
148 gsutil acl ch -u AllUsers:W gs://example-bucket
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/s3/
connection.py 34 from boto.s3.bucket import Bucket
42 Bucket names must not contain uppercase characters. We check for
44 Note this also covers cases like numeric bucket names with dashes.
49 BotoClientError: S3Error: Bucket names cannot contain upper-case
59 raise BotoClientError("Bucket names cannot contain upper-case " \
75 def get_bucket_server(self, server, bucket):
78 def build_url_base(self, connection, protocol, server, bucket, key=''):
80 url_base += self.build_host(server, bucket)
81 url_base += connection.get_path(self.build_path_base(bucket, key)
    [all...]
bucket.py 75 class Bucket(object):
99 return '<Bucket: %s>' % self.name
120 Set the Key class associated with this bucket. By default, this
123 bucket so that when you call bucket.new_key() or when you get a listing
124 of keys in the bucket you will get an instances of your key class
140 :returns: A Key object from this bucket.
147 Check to see if a particular key exists within the bucket. This
172 :returns: A Key object from this bucket.
235 List key objects within a bucket. This returns an instance of a
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/gslib/addlhelp/
naming.py 15 """Additional help about gsutil object and bucket naming."""
22 <B>BUCKET NAME REQUIREMENTS</B>
24 to create a bucket with a name already in use by another user. You can,
25 however, carve out parts of the bucket name space corresponding to your
28 Bucket names must conform to standard DNS naming conventions. This is
29 because a bucket name can appear in a DNS record as part of a CNAME
31 Storage imposes other requirements on bucket naming. At a minimum, your
32 bucket names must meet the following requirements:
34 - Bucket names must contain only lowercase letters, numbers, dashes (-), and
37 - Bucket names must start and end with a number or letter
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/gslib/
command.py 604 # Handle bucket ACL setting operations single-threaded, because
612 # If user specified -R option, convert any bucket args to bucket
613 # wildcards (e.g., gs://bucket/*), to prevent the operation from
712 url.bucket_name, apitools_messages.Bucket(),
721 bucket_metadata = apitools_messages.Bucket(
728 url.bucket_name, apitools_messages.Bucket(),
733 bucket_metadata = apitools_messages.Bucket(acl=bucket_acl)
    [all...]
boto_translation.py 213 for bucket in buckets_iter:
214 if self.provider == 's3' and bucket.name.lower() != bucket.name:
218 yield self._BotoBucketToBucket(bucket, fields=get_fields)
286 # Pass storage_class param only if this is a GCS bucket. (In S3 the
327 'delete this bucket.' % bucket_name, status=e.status)
336 raise NotFoundException('Bucket %s does not exist.' % bucket_name)
367 # Listed keys are populated with these fields during bucket listing.
368 key_http_fields = set(['bucket', 'etag', 'name', 'updated',
372 # If the caller requested any fields that are not populated by bucket
    [all...]
  /prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/compile/internal/gc/
reflect.go 111 // Builds a type representing a Bucket structure for
131 if t.Bucket != nil {
132 return t.Bucket
135 bucket := typ(TSTRUCT)
187 // Arrange for the bucket to have no pointers by changing
190 otyp := Ptrto(bucket)
198 bucket.Noalg = 1
199 bucket.Local = t.Local
200 bucket.Type = field[0]
205 dowidth(bucket)
    [all...]
go.go 208 Bucket *Type // internal type representing a hash bucket
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
reflect.go 108 // Builds a type representing a Bucket structure for
128 if t.Bucket != nil {
129 return t.Bucket
132 bucket := typ(TSTRUCT)
184 // Arrange for the bucket to have no pointers by changing
187 otyp := Ptrto(bucket)
195 bucket.Noalg = 1
196 bucket.Local = t.Local
197 bucket.Type = field[0]
202 dowidth(bucket)
    [all...]
go.go 205 Bucket *Type // internal type representing a hash bucket
  /prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/compile/internal/gc/
reflect.go 111 // Builds a type representing a Bucket structure for
131 if t.Bucket != nil {
132 return t.Bucket
135 bucket := typ(TSTRUCT)
187 // Arrange for the bucket to have no pointers by changing
190 otyp := Ptrto(bucket)
198 bucket.Noalg = 1
199 bucket.Local = t.Local
200 bucket.Type = field[0]
205 dowidth(bucket)
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
reflect.go 108 // Builds a type representing a Bucket structure for
128 if t.Bucket != nil {
129 return t.Bucket
132 bucket := typ(TSTRUCT)
184 // Arrange for the bucket to have no pointers by changing
187 otyp := Ptrto(bucket)
195 bucket.Noalg = 1
196 bucket.Local = t.Local
197 bucket.Type = field[0]
202 dowidth(bucket)
    [all...]
  /external/icu/icu4c/source/test/intltest/
alphaindextst.cpp 33 const AlphabeticIndex::Bucket *bucket; local
34 for (int32_t i = 0; (bucket = index.getBucket(i)) != NULL; ++i) {
38 dest.append(bucket->getLabel());
368 assertEquals("initial bucket index", -1, index.getBucketIndex());
372 assertEquals("bucket index", bucketIndex, index.getBucketIndex());
377 const AlphabeticIndex::Bucket *bucket = immIndex->getBucket(bucketIndex); local
378 TEST_ASSERT(bucket != NULL);
379 assertEquals("bucket label vs. immutable: locale=" + UnicodeString(localeName)
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jar 
  /external/icu/tools/srcgen/currysrc/libs/
org.eclipse.core.resources_3.10.0.v20150423-0755.jar 
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/samples/storage_sample/storage/
storage_v1.py 169 usage = """bucketAccessControls_delete <bucket> <entity>"""
174 def RunWithArgs(self, bucket, entity):
176 specified bucket.
179 bucket: Name of a bucket.
187 bucket=bucket.decode('utf8'),
198 usage = """bucketAccessControls_get <bucket> <entity>"""
203 def RunWithArgs(self, bucket, entity):
204 """Returns the ACL entry for the specified entity on the specified bucket
    [all...]
storage_v1_messages.py 16 class Bucket(_messages.Message):
17 """A bucket.
21 LifecycleValue: The bucket's lifecycle configuration. See lifecycle
23 LoggingValue: The bucket's logging configuration, which defines the
24 destination bucket and optional name prefix for the current bucket's
26 OwnerValue: The owner of the bucket. This is always the project team's
28 VersioningValue: The bucket's versioning configuration.
29 WebsiteValue: The bucket's website configuration.
32 acl: Access controls on the bucket
248 bucket = _messages.StringField(1) variable in class:BucketAccessControl
484 bucket = _messages.StringField(2) variable in class:Object
549 bucket = _messages.StringField(1) variable in class:ObjectAccessControl
675 bucket = _messages.StringField(1, required=True) variable in class:StorageBucketAccessControlsDeleteRequest
693 bucket = _messages.StringField(1, required=True) variable in class:StorageBucketAccessControlsGetRequest
704 bucket = _messages.StringField(1, required=True) variable in class:StorageBucketAccessControlsListRequest
718 bucket = _messages.StringField(1, required=True) variable in class:StorageBucketsDeleteRequest
753 bucket = _messages.StringField(1, required=True) variable in class:StorageBucketsGetRequest
838 bucket = _messages.MessageField('Bucket', 1) variable in class:StorageBucketsInsertRequest
955 bucket = _messages.StringField(1, required=True) variable in class:StorageBucketsPatchRequest
1042 bucket = _messages.StringField(1, required=True) variable in class:StorageBucketsUpdateRequest
1065 bucket = _messages.StringField(1, required=True) variable in class:StorageDefaultObjectAccessControlsDeleteRequest
1083 bucket = _messages.StringField(1, required=True) variable in class:StorageDefaultObjectAccessControlsGetRequest
1098 bucket = _messages.StringField(1, required=True) variable in class:StorageDefaultObjectAccessControlsListRequest
1116 bucket = _messages.StringField(1, required=True) variable in class:StorageObjectAccessControlsDeleteRequest
1139 bucket = _messages.StringField(1, required=True) variable in class:StorageObjectAccessControlsGetRequest
1157 bucket = _messages.StringField(1, required=True) variable in class:StorageObjectAccessControlsInsertRequest
1173 bucket = _messages.StringField(1, required=True) variable in class:StorageObjectAccessControlsListRequest
1193 bucket = _messages.StringField(1, required=True) variable in class:StorageObjectAccessControlsPatchRequest
1215 bucket = _messages.StringField(1, required=True) variable in class:StorageObjectAccessControlsUpdateRequest
1388 bucket = _messages.StringField(1, required=True) variable in class:StorageObjectsDeleteRequest
1433 bucket = _messages.StringField(1, required=True) variable in class:StorageObjectsGetRequest
1511 bucket = _messages.StringField(1, required=True) variable in class:StorageObjectsInsertRequest
1557 bucket = _messages.StringField(1, required=True) variable in class:StorageObjectsListRequest
1625 bucket = _messages.StringField(1, required=True) variable in class:StorageObjectsPatchRequest
1808 bucket = _messages.StringField(1, required=True) variable in class:StorageObjectsUpdateRequest
1855 bucket = _messages.StringField(1, required=True) variable in class:StorageObjectsWatchAllRequest
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/gslib/third_party/storage_apitools/
storage_v1_messages.py 28 class Bucket(messages.Message):
29 """A bucket.
33 LifecycleValue: The bucket's lifecycle configuration. See lifecycle
35 LoggingValue: The bucket's logging configuration, which defines the
36 destination bucket and optional name prefix for the current bucket's
38 OwnerValue: The owner of the bucket. This is always the project team's
40 VersioningValue: The bucket's versioning configuration.
41 WebsiteValue: The bucket's website configuration.
44 acl: Access controls on the bucket
260 bucket = messages.StringField(1) variable in class:BucketAccessControl
496 bucket = messages.StringField(2) variable in class:Object
561 bucket = messages.StringField(1) variable in class:ObjectAccessControl
683 bucket = messages.StringField(1, required=True) variable in class:StorageBucketAccessControlsDeleteRequest
701 bucket = messages.StringField(1, required=True) variable in class:StorageBucketAccessControlsGetRequest
712 bucket = messages.StringField(1, required=True) variable in class:StorageBucketAccessControlsListRequest
726 bucket = messages.StringField(1, required=True) variable in class:StorageBucketsDeleteRequest
761 bucket = messages.StringField(1, required=True) variable in class:StorageBucketsGetRequest
846 bucket = messages.MessageField('Bucket', 1) variable in class:StorageBucketsInsertRequest
963 bucket = messages.StringField(1, required=True) variable in class:StorageBucketsPatchRequest
1050 bucket = messages.StringField(1, required=True) variable in class:StorageBucketsUpdateRequest
1073 bucket = messages.StringField(1, required=True) variable in class:StorageDefaultObjectAccessControlsDeleteRequest
1091 bucket = messages.StringField(1, required=True) variable in class:StorageDefaultObjectAccessControlsGetRequest
1106 bucket = messages.StringField(1, required=True) variable in class:StorageDefaultObjectAccessControlsListRequest
1124 bucket = messages.StringField(1, required=True) variable in class:StorageObjectAccessControlsDeleteRequest
1147 bucket = messages.StringField(1, required=True) variable in class:StorageObjectAccessControlsGetRequest
1165 bucket = messages.StringField(1, required=True) variable in class:StorageObjectAccessControlsInsertRequest
1181 bucket = messages.StringField(1, required=True) variable in class:StorageObjectAccessControlsListRequest
1201 bucket = messages.StringField(1, required=True) variable in class:StorageObjectAccessControlsPatchRequest
1223 bucket = messages.StringField(1, required=True) variable in class:StorageObjectAccessControlsUpdateRequest
1396 bucket = messages.StringField(1, required=True) variable in class:StorageObjectsDeleteRequest
1441 bucket = messages.StringField(1, required=True) variable in class:StorageObjectsGetRequest
1519 bucket = messages.StringField(1, required=True) variable in class:StorageObjectsInsertRequest
1564 bucket = messages.StringField(1, required=True) variable in class:StorageObjectsListRequest
1632 bucket = messages.StringField(1, required=True) variable in class:StorageObjectsPatchRequest
1815 bucket = messages.StringField(1, required=True) variable in class:StorageObjectsUpdateRequest
1861 bucket = messages.StringField(1, required=True) variable in class:StorageObjectsWatchAllRequest
    [all...]

Completed in 8956 milliseconds

1 23 4 5 6 7