- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 912 for Array (0.03 sec)
-
tests/test_generate_unique_id_function.py
Registered: 2024-11-03 07:19 - Last Modified: 2024-01-13 15:10 - 66.7K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/AbstractCollectionTester.java
resetContainer(); } /** @return an array of the proper size with {@code null} inserted into the middle element. */ protected E[] createArrayWithNullElement() { E[] array = createSamplesArray(); array[getNullLocation()] = null; return array; } protected void initCollectionWithNullElement() { E[] array = createArrayWithNullElement();
Registered: 2024-11-01 12:43 - Last Modified: 2024-07-24 20:12 - 2.7K bytes - Viewed (0) -
docs/en/docs/img/deployment/https/https01.drawio
Registered: 2024-11-03 07:19 - Last Modified: 2022-05-12 00:06 - 6.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/srvsvc.java
public static class ShareInfoCtr0 extends NdrObject { public int count; public ShareInfo0[] array; public void encode(NdrBuffer _dst) throws NdrException { _dst.align(4); _dst.enc_ndr_long(count); _dst.enc_ndr_referent(array, 1); if (array != null) { _dst = _dst.deferred; int _arrays = count;
Registered: 2024-11-03 00:10 - Last Modified: 2019-03-22 20:39 - 18.4K bytes - Viewed (0) -
guava-tests/benchmark/com/google/common/base/StringsRepeatBenchmark.java
Registered: 2024-11-01 12:43 - Last Modified: 2021-09-17 20:24 - 3.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/UnmodifiableListIteratorTest.java
final String[] array = {"a", "b", "c"}; return new UnmodifiableListIterator<String>() { int i; @Override public boolean hasNext() { return i < array.length; } @Override public String next() { if (!hasNext()) { throw new NoSuchElementException(); } return array[i++]; } @Override
Registered: 2024-11-01 12:43 - Last Modified: 2024-10-15 17:36 - 2.8K bytes - Viewed (0) -
src/main/config/openapi/openapi-user.yaml
related_query: type: array items: type: string example: ["aaa"] related_contents: type: array items: type: string example: [] data: type: array items:
Registered: 2024-10-31 13:40 - Last Modified: 2024-05-09 06:31 - 21.6K bytes - Viewed (0) -
guava/src/com/google/common/hash/LittleEndianByteArray.java
// Shift value left while iterating logically through the array. result |= (input[offset + i] & 0xFFL) << (i * 8); } return result; } /** * Store 8 bytes into the provided array at the indicated offset, using the value provided. * * @param sink the output byte array * @param offset the offset into the array at which to start writing * @param value the value to write */
Registered: 2024-11-01 12:43 - Last Modified: 2024-10-19 00:26 - 9.8K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableList.java
E[] array = (E[]) Iterables.toArray(elements); checkElementsNotNull(array); Arrays.sort(array, comparator); return asImmutableList(array); } private static <E> List<E> nullCheckedList(Object... array) { for (int i = 0, len = array.length; i < len; i++) { if (array[i] == null) { throw new NullPointerException("at index " + i);
Registered: 2024-11-01 12:43 - Last Modified: 2024-06-14 22:14 - 11.1K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/google/AbstractMultimapTester.java
} /** * @return an array of the proper size with {@code null} as the key of the middle element. */ protected Entry<K, V>[] createArrayWithNullKey() { Entry<K, V>[] array = createSamplesArray(); int nullKeyLocation = getNullLocation(); Entry<K, V> oldEntry = array[nullKeyLocation]; array[nullKeyLocation] = mapEntry(null, oldEntry.getValue()); return array; } /**
Registered: 2024-11-01 12:43 - Last Modified: 2024-10-30 16:15 - 6K bytes - Viewed (0)