- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 200 for 120s (0.02 sec)
-
android/guava-tests/test/com/google/common/primitives/UnsignedLongsTest.java
} public void testSortDescendingIndexed() { testSortDescending(new long[] {}, 0, 0, new long[] {}); testSortDescending(new long[] {1}, 0, 1, new long[] {1}); testSortDescending(new long[] {1, 2}, 0, 2, new long[] {2, 1}); testSortDescending(new long[] {1, 3, 1}, 0, 2, new long[] {3, 1, 1}); testSortDescending(new long[] {1, 3, 1}, 0, 1, new long[] {1, 3, 1}); testSortDescending(
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 12.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/cache/CacheBuilderSpecTest.java
CacheBuilder.newBuilder().expireAfterWrite(10L, MINUTES), CacheBuilder.from(spec)); } public void testParse_writeExpirationSeconds() { CacheBuilderSpec spec = parse("expireAfterWrite=10s"); assertEquals(SECONDS, spec.writeExpirationTimeUnit); assertEquals(10L, spec.writeExpirationDuration); assertCacheBuilderEquivalence(
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 19.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/hash/AbstractStreamingHasherTest.java
} public void testShort() { Sink sink = new Sink(4); sink.putShort((short) 0x0201); HashCode unused = sink.hash(); sink.assertInvariants(2); sink.assertBytes(new byte[] {1, 2, 0, 0}); // padded with zeros } public void testInt() { Sink sink = new Sink(4); sink.putInt(0x04030201); HashCode unused = sink.hash(); sink.assertInvariants(4);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 8.5K bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/DoublesTest.java
} public void testReverseIndexed() { testReverse(new double[] {}, 0, 0, new double[] {}); testReverse(new double[] {1}, 0, 1, new double[] {1}); testReverse(new double[] {1, 2}, 0, 2, new double[] {2, 1}); testReverse(new double[] {3, 1, 1}, 0, 2, new double[] {1, 3, 1}); testReverse(new double[] {3, 1, 1}, 0, 1, new double[] {3, 1, 1});
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 30.9K bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/LongsTest.java
} public void testReverseIndexed() { testReverse(new long[] {}, 0, 0, new long[] {}); testReverse(new long[] {1}, 0, 1, new long[] {1}); testReverse(new long[] {1, 2}, 0, 2, new long[] {2, 1}); testReverse(new long[] {3, 1, 1}, 0, 2, new long[] {1, 3, 1}); testReverse(new long[] {3, 1, 1}, 0, 1, new long[] {3, 1, 1});
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 28.7K bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/ShortsTest.java
} public void testReverseIndexed() { testReverse(new short[] {}, 0, 0, new short[] {}); testReverse(new short[] {1}, 0, 1, new short[] {1}); testReverse(new short[] {1, 2}, 0, 2, new short[] {2, 1}); testReverse(new short[] {3, 1, 1}, 0, 2, new short[] {1, 3, 1}); testReverse(new short[] {3, 1, 1}, 0, 1, new short[] {3, 1, 1});
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 27.6K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/idn/IdnaMappingTable.kt
* 80..95 : Offset by a fixed positive offset. The bottom 4 bits of b1 are the top 4 bits of the offset. * 119 : Ignored. * 120 : Valid. * 121 : Disallowed * 122 : Mapped inline to the sequence: [b2]. * 123 : Mapped inline to the sequence: [b2a]. * 124 : Mapped inline to the sequence: [b2, b3].
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 9K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableSortedSet.java
abstract ImmutableSortedSet<E> tailSetImpl(E fromElement, boolean inclusive); /** * @since 12.0 */ @GwtIncompatible // NavigableSet @Override public @Nullable E lower(E e) { return Iterators.<@Nullable E>getNext(headSet(e, false).descendingIterator(), null); } /** * @since 12.0 */ @Override public @Nullable E floor(E e) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 36.8K bytes - Viewed (0) -
src/test/resources/plugin/repo3/fess-crawler-webdriver/maven-metadata.xml
<version>1.0.9</version> <version>1.0.10</version> <version>1.0.11</version> <version>1.0.12</version> <version>1.1.0</version> <version>1.1.1</version> <version>1.2.0</version> <version>1.2.1</version> <version>1.3.0</version> <version>1.3.1</version> <version>1.3.2</version> <version>1.4.0</version> <version>1.4.1</version>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Jun 17 13:30:41 UTC 2024 - 3.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/cache/CacheBuilderSpecTest.java
CacheBuilder.newBuilder().expireAfterWrite(10L, MINUTES), CacheBuilder.from(spec)); } public void testParse_writeExpirationSeconds() { CacheBuilderSpec spec = parse("expireAfterWrite=10s"); assertEquals(SECONDS, spec.writeExpirationTimeUnit); assertEquals(10L, spec.writeExpirationDuration); assertCacheBuilderEquivalence(
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 19.1K bytes - Viewed (0)