OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:batch_list
(Results
1 - 3
of
3
) sorted by null
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/dynamodb/
test_layer2.py
328
batch_list
= c.new_batch_list()
329
batch_list
.add_batch(table, [(item2_key, item2_range),
331
response =
batch_list
.submit()
335
batch_list
= c.new_batch_list()
336
batch_list
.add_batch(table, [])
337
response =
batch_list
.submit()
365
batch_list
= c.new_batch_write_list()
366
batch_list
.add_batch(table, puts=[item4, item5])
367
response =
batch_list
.submit()
388
batch_list
= c.new_batch_write_list(
[
all
...]
/external/autotest/client/common_lib/cros/graphite/
es_utils.py
328
batch_list
= [{'terms': {k: v}} for k, v in batch_constraints if k]
330
constraints = eq_list +
batch_list
+ range_list + regex_list
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/dynamodb/
layer2.py
495
def batch_get_item(self,
batch_list
):
500
:type
batch_list
: :class:`boto.dynamodb.batch.BatchList`
501
:param
batch_list
: A BatchList object which consists of a
507
request_items =
batch_list
.to_dict()
511
def batch_write_item(self,
batch_list
):
515
:type
batch_list
: :class:`boto.dynamodb.batch.BatchWriteList`
516
:param
batch_list
: A BatchWriteList object which consists of a
521
request_items =
batch_list
.to_dict()
[
all
...]
Completed in 195 milliseconds