- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for NumElements (0.13 sec)
-
src/main/java/org/codelibs/core/collection/CollectionsUtil.java
* * @param <E> the element type of {@link ArrayDeque} * @param numElements the lower bound of the initial capacity range for the deque * @return a new instance of {@link ArrayDeque} * @see ArrayDeque#ArrayDeque(int) */ public static <E> ArrayDeque<E> newArrayDeque(final int numElements) { return new ArrayDeque<>(numElements); } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 49.9K bytes - Viewed (0) -
tensorflow/c/c_api_test.cc
Tensor output; ASSERT_EQ(absl::OkStatus(), TF_TensorToTensor(dst, &output)) << line; ASSERT_EQ(src.NumElements(), output.NumElements()) << line; for (int64_t i = 0; i < src.NumElements(); ++i) { ASSERT_EQ(data[i], output.flat<tstring>()(i)) << line; } TF_DeleteTensor(dst); } } TEST(CAPI, TensorEncodeDecodeStrings) { TestEncodeDecode(__LINE__, {});
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Fri Dec 27 12:18:10 UTC 2024 - 97K bytes - Viewed (0)