Home
last modified time | relevance | path

Searched refs:tuples (Results 1 – 25 of 372) sorted by relevance

12345678910>>...15

/external/python/uritemplates/uritemplate/
Dvariable.py148 tuples, items = is_list_of_tuples(value)
151 if list_test(value) and not tuples:
162 if dict_test(value) or tuples:
197 tuples, items = is_list_of_tuples(value)
199 if list_test(value) and not tuples:
206 if dict_test(value) or tuples:
234 tuples, items = is_list_of_tuples(value)
236 if list_test(value) and not tuples:
248 if dict_test(value) or tuples:
275 tuples, items = is_list_of_tuples(value)
[all …]
/external/tensorflow/tensorflow/core/kernels/
Dpadding_fifo_queue.cc106 if (!attempt->tuples.empty()) { in TryDequeueMany()
108 for (int64 i = attempt->tuples.size() - 1; i >= 0; --i) { in TryDequeueMany()
111 Status s = GetElementComponent(attempt->tuples[i], j, in TryDequeueMany()
127 attempt->tuples.clear(); in TryDequeueMany()
152 attempt->tuples.push_back(tuple); in TryDequeueMany()
160 std::vector<Tuple>& tuples = attempt->tuples; in TryDequeueMany()
163 const int64 batch_size = tuples.size(); in TryDequeueMany()
177 for (const Tuple& t : tuples) { in TryDequeueMany()
203 for (size_t index = 0; index < tuples.size(); ++index) { in TryDequeueMany()
208 tuples[index][i], &attempt->tuple[i], index)); in TryDequeueMany()
[all …]
/external/rust/crates/itertools/tests/
Dtuples.rs4 fn tuples() { in tuples() function
6 let mut iter = v.iter().cloned().tuples(); in tuples()
15 let mut iter = v.iter().cloned().tuples(); in tuples()
21 let mut iter = v.iter().cloned().tuples(); in tuples()
26 let mut iter = v.iter().cloned().tuples(); in tuples()
/external/tensorflow/tensorflow/compiler/xla/service/
Dar_crs_combiner.cc252 std::vector<HloInstruction*> tuples; in GetAllTuples() local
264 tuples.insert(tuples.end(), branch_tuples->begin(), in GetAllTuples()
268 return tuples; in GetAllTuples()
274 auto tuples = GetAllTuples(instruction->operands()[0], visited); in GetAllTuples() local
275 if (!tuples) { in GetAllTuples()
278 for (auto tuple : *tuples) { in GetAllTuples()
319 auto tuples = GetAllTuples(tuple_shaped_instruction, &visited); in TupleElementsComputeSameValue() local
320 if (!tuples) { in TupleElementsComputeSameValue()
323 for (auto tuple : *tuples) { in TupleElementsComputeSameValue()
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_QueueDequeueMany.pbtxt13 The number of tuples to dequeue.
36 summary: "Dequeues `n` tuples of one or more tensors from the given queue."
46 the tuples stored in the given queue, and output `i` is the ith
Dapi_def_QueueDequeueManyV2.pbtxt15 The number of tuples to dequeue.
38 summary: "Dequeues `n` tuples of one or more tensors from the given queue."
48 the tuples stored in the given queue, and output `i` is the ith
Dapi_def_QueueDequeueUpToV2.pbtxt15 The number of tuples to dequeue.
38 summary: "Dequeues `n` tuples of one or more tensors from the given queue."
55 the tuples stored in the given queue, and output `i` is the ith
Dapi_def_QueueDequeueUpTo.pbtxt13 The number of tuples to dequeue.
36 summary: "Dequeues `n` tuples of one or more tensors from the given queue."
53 the tuples stored in the given queue, and output `i` is the ith
Dapi_def_QueueEnqueueMany.pbtxt25 summary: "Enqueues zero or more tuples of one or more tensors in the given queue."
32 tuples stored in the given queue.
Dapi_def_QueueEnqueueManyV2.pbtxt27 summary: "Enqueues zero or more tuples of one or more tensors in the given queue."
34 tuples stored in the given queue.
/external/fonttools/Lib/fontTools/ttLib/tables/
D_c_v_a_r.py32 tupleVariationCount, tuples, data = compileTupleVariationStore(
42 "offsetToData": CVAR_HEADER_SIZE + len(tuples),
46 tuples,
DTupleVariation.py636 tuples = []
646 tuples.append(sharedTuple)
651 tuples.append(privateTuple)
656 tupleVariationCount = TUPLES_SHARE_POINT_NUMBERS | len(tuples)
659 tupleVariationCount = len(tuples)
660 tuples = bytesjoin(tuples)
661 return tupleVariationCount, tuples, data
D_g_v_a_r.py213 tupleVariationCount, tuples, data = tv.compileTupleVariationStore(
218 struct.pack(">HH", tupleVariationCount, 4 + len(tuples)) + tuples + data
/external/tensorflow/tensorflow/compiler/tests/
Dmatrix_triangular_solve_op_test.py110 tuples = itertools.product(self.float_types, shapes)
111 for dtype, (a_shape, b_shape) in tuples:
122 tuples = itertools.product(self.float_types, shapes)
123 for dtype, (a_shape, b_shape) in tuples:
/external/rust/crates/criterion/src/plot/gnuplot_backend/
Dsummary.rs87 let mut tuples: Vec<_> = group in line_comparison() localVariable
97 tuples.sort_by(|&(ax, _), &(bx, _)| (ax.partial_cmp(&bx).unwrap_or(Ordering::Less))); in line_comparison()
98 let (xs, mut ys): (Vec<_>, Vec<_>) = tuples.into_iter().unzip(); in line_comparison()
/external/python/cpython2/Misc/NEWS.d/next/Library/
D2018-06-28-14-56-44.bpo-33974.SA8nNP.rst1 Fixed passing lists and tuples of strings containing special characters
D2018-04-18-19-12-25.bpo-33308.fW75xi.rst2 tree of tuples or lists with ``line_info=False`` and ``col_info=True``.
/external/rust/crates/criterion/src/plot/plotters_backend/
Dsummary.rs136 let mut tuples: Vec<_> = group in line_comparison_series_data() localVariable
146 tuples.sort_by(|&(ax, _), &(bx, _)| (ax.partial_cmp(&bx).unwrap_or(Ordering::Less))); in line_comparison_series_data()
148 let (xs, mut ys): (Vec<_>, Vec<_>) = tuples.into_iter().unzip(); in line_comparison_series_data()
/external/fonttools/Tests/ttLib/tables/
DTupleVariation_test.py654 tupleVariationCount, tuples, data = compileTupleVariationStore(
660 sharedTuples={}, data=(tuples + data),
661 pos=0, dataPos=len(tuples)),
672 tupleVariationCount, tuples, data = compileTupleVariationStore(
678 sharedTuples={}, data=(tuples + data),
679 pos=0, dataPos=len(tuples)),
/external/rust/crates/grpcio-sys/grpc/src/core/ext/transport/chttp2/transport/
Dbin_decoder.cc94 size_t tuples = len / 4; in grpc_chttp2_base64_infer_length_after_decode() local
103 return tuples * 3 + tail_xtra[tail_case]; in grpc_chttp2_base64_infer_length_after_decode()
/external/grpc-grpc/src/core/ext/transport/chttp2/transport/
Dbin_decoder.cc94 size_t tuples = len / 4; in grpc_chttp2_base64_infer_length_after_decode() local
103 return tuples * 3 + tail_xtra[tail_case]; in grpc_chttp2_base64_infer_length_after_decode()
/external/python/cpython2/Lib/plat-irix6/
Dreadcd.doc59 gettrackinfo([tracklist]) -- Return a list of tuples. Each tuple
61 length information consist of three-tuples with minutes, seconds and
94 track number (that is, both were specified as integers, not as tuples),
/external/python/cpython2/Lib/plat-irix5/
Dreadcd.doc59 gettrackinfo([tracklist]) -- Return a list of tuples. Each tuple
61 length information consist of three-tuples with minutes, seconds and
94 track number (that is, both were specified as integers, not as tuples),
/external/python/cpython3/Lib/distutils/command/
Dcommand_template18 # List of option tuples: long name, short name (None if no short
/external/python/cpython2/Lib/distutils/command/
Dcommand_template18 # List of option tuples: long name, short name (None if no short

12345678910>>...15