Home
last modified time | relevance | path

Searched refs:concatenated (Results 1 – 25 of 169) sorted by relevance

1234567

/external/protobuf/java/core/src/test/java/com/google/protobuf/
DRopeByteStringTest.java77 ByteString concatenated = ByteString.EMPTY; in testBalance() local
79 concatenated = concatenated.concat(ByteString.copyFrom(testBytes, i * pieceSize, pieceSize)); in testBalance()
83 classUnderTest, getActualClassName(concatenated)); in testBalance()
85 Arrays.equals(testBytes, concatenated.toByteArray())); in testBalance()
88 concatenated.equals(testString)); in testBalance()
90 testString.equals(concatenated)); in testBalance()
92 testString.hashCode(), concatenated.hashCode()); in testBalance()
/external/tensorflow/tensorflow/python/ops/ragged/
Dragged_concat_op_test.py238 concatenated = ragged_concat_ops.concat(rt_inputs, axis)
240 self.assertEqual(concatenated.ragged_rank, expected_ragged_rank)
242 self.assertEqual(concatenated.shape.as_list(), expected_shape)
243 self.assertRaggedEqual(concatenated, expected)
297 concatenated = ragged_concat_ops.concat(rt_inputs, axis)
299 self.evaluate(concatenated)
320 concatenated = ragged_concat_ops.concat(rt_inputs, 0)
321 self.assertRaggedEqual(concatenated, [[1, 2], [3, 4]])
/external/tensorflow/tensorflow/python/data/kernel_tests/
Dconcatenate_test.py47 concatenated = input_dataset.concatenate(dataset_to_concatenate)
49 dataset_ops.get_legacy_output_shapes(concatenated),
53 get_next = self.getNext(concatenated)
78 concatenated = input_dataset.concatenate(dataset_to_concatenate)
82 dataset_ops.get_legacy_output_shapes(concatenated))],
84 get_next = self.getNext(concatenated)
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_ExperimentalGroupByReducerDataset.pbtxt20 A function mapping an element of `input_dataset`, concatenated
34 A function mapping a key of type DT_INT64, concatenated with
49 concatenated with `reduce_func_other_arguments` to a new reducer state.
Dapi_def_SparseCross.pbtxt30 2-D. Indices of the concatenated `SparseTensor`.
36 1-D. Non-empty values of the concatenated or hashed
43 1-D. Shape of the concatenated `SparseTensor`.
Dapi_def_ConcatOffset.pbtxt13 The `N` int32 vectors representing shape of tensors being concatenated.
20 of input tensors within the concatenated output.
Dapi_def_SparseConcat.pbtxt24 2-D. Indices of the concatenated `SparseTensor`.
30 1-D. Non-empty values of the concatenated `SparseTensor`.
36 1-D. Shape of the concatenated `SparseTensor`.
Dapi_def_ParallelConcat.pbtxt6 Tensors to be concatenated. All must have size 1 in the first dimension
13 The concatenated tensor.
Dapi_def_Batch.pbtxt19 Batched tensors are concatenated along the first dimension, and all tensors in
33 batched_tensors: Either empty tensors or a batch of concatenated Tensors.
Dapi_def_ParallelInterleaveDatasetV2.pbtxt7 A function mapping elements of `input_dataset`, concatenated with
Dapi_def_ExperimentalGroupByWindowDataset.pbtxt7 A function mapping an element of `input_dataset`, concatenated
Dapi_def_FlatMapDataset.pbtxt7 A function mapping elements of `input_dataset`, concatenated with
Dapi_def_InterleaveDataset.pbtxt7 A function mapping elements of `input_dataset`, concatenated with
Dapi_def_TensorArrayScatterV3.pbtxt21 The concatenated tensor to write to the TensorArray.
Dapi_def_ExperimentalParallelInterleaveDataset.pbtxt7 A function mapping elements of `input_dataset`, concatenated with
Dapi_def_TensorArrayGatherV3.pbtxt27 All of the elements in the TensorArray, concatenated along a new
Dapi_def_TensorArrayGradWithShape.pbtxt22 have shape which is this shape_to_prepend value concatenated with shape of the
Dapi_def_TensorArraySplitV3.pbtxt15 The concatenated tensor to write to the TensorArray.
Dapi_def_DeserializeSparse.pbtxt23 the sparse tensors have been concatenated along new dimensions, one for each
Dapi_def_TensorArrayConcatV3.pbtxt21 All of the elements in the TensorArray, concatenated along the first
Dapi_def_DeserializeManySparse.pbtxt23 (they have been concatenated along a new row dimension).
/external/clang/test/SemaObjC/
Dobjc-array-literal.m60 …return @[ @"A", @"B" @"C"]; // expected-warning {{concatenated NSString literal for an NSArray exp…
67 …x = @[ @"stuff", @"hello" "world"]; // expected-warning {{concatenated NSString literal for an NSA…
/external/libtextclassifier/lang_id/common/flatbuffers/
Dembedding-network.fbs69 // |embedding.cols| elements. The resulting vector gets concatenated with the
71 // |num_features * embedding.cols| elements. This chunk gets concatenated with
/external/guava/guava-tests/test/com/google/common/io/
DCharSourceTest.java227 CharSource concatenated = CharSource.concat(cycle); in testConcat_infiniteIterable() local
234 Reader reader = concatenated.openStream(); // no need to worry about closing in testConcat_infiniteIterable()
/external/openssh/
DPROTOCOL.key28 are concatenated and represented as a string.

1234567