- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 51 for 8232 (0.02 sec)
-
android/guava-tests/test/com/google/common/collect/TreeRangeMapTest.java
rangeMap.putCoalescing(Range.closedOpen(0, 1), 1); rangeMap.putCoalescing(Range.closedOpen(1, 2), 1); rangeMap.putCoalescing(Range.closedOpen(2, 3), 2); assertEquals( ImmutableMap.of(Range.closedOpen(0, 2), 1, Range.closedOpen(2, 3), 2), rangeMap.asMapOfRanges()); } public void testPutCoalescingEmpty() { RangeMap<Integer, Integer> rangeMap = TreeRangeMap.create();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 30K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/UnsignedInts.java
import java.util.Comparator; /** * Static utility methods pertaining to {@code int} primitives that interpret values as * <i>unsigned</i> (that is, any negative value {@code x} is treated as the positive value {@code * 2^32 + x}). The methods for which signedness is not an issue are in {@link Ints}, as well as * signed versions of methods for which signedness is an issue. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Feb 09 16:22:33 UTC 2025 - 13.8K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.23.md
- [Changelog since v1.23.2](#changelog-since-v1232) - [Changes by Kind](#changes-by-kind-14) - [Feature](#feature-9) - [Bug or Regression](#bug-or-regression-14) - [Dependencies](#dependencies-14) - [Added](#added-14) - [Changed](#changed-14) - [Removed](#removed-14) - [v1.23.2](#v1232) - [Downloads for v1.23.2](#downloads-for-v1232) - [Source Code](#source-code-15)
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Tue Feb 28 21:06:52 UTC 2023 - 424.5K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/MediaTypeTest.kt
val mediaType = parse("text/plain; charset=utf-8; charset=utf-16") assertEquals("UTF-8", mediaType.charsetName()) } /** * This is invalid according to RFC 822. But it's what Chrome does and it avoids a potentially * unpleasant IllegalCharsetNameException. */ @Test fun testCharsetNameIsSingleQuoted() { val mediaType = parse("text/plain;charset='utf-8'")
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 7.5K bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/DoublesTest.java
testRotate(new double[] {1, 2, 3}, -2, new double[] {3, 1, 2}); testRotate(new double[] {1, 2, 3}, -1, new double[] {2, 3, 1}); testRotate(new double[] {1, 2, 3}, 0, new double[] {1, 2, 3}); testRotate(new double[] {1, 2, 3}, 1, new double[] {3, 1, 2}); testRotate(new double[] {1, 2, 3}, 2, new double[] {2, 3, 1}); testRotate(new double[] {1, 2, 3}, 3, new double[] {1, 2, 3});
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
testRotate(new long[] {1, 2, 3}, -3, new long[] {1, 2, 3}); testRotate(new long[] {1, 2, 3}, -2, new long[] {3, 1, 2}); testRotate(new long[] {1, 2, 3}, -1, new long[] {2, 3, 1}); testRotate(new long[] {1, 2, 3}, 0, new long[] {1, 2, 3}); testRotate(new long[] {1, 2, 3}, 1, new long[] {3, 1, 2}); testRotate(new long[] {1, 2, 3}, 2, new long[] {2, 3, 1}); testRotate(new long[] {1, 2, 3}, 3, new long[] {1, 2, 3});
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
testRotate(new short[] {1, 2, 3}, -3, new short[] {1, 2, 3}); testRotate(new short[] {1, 2, 3}, -2, new short[] {3, 1, 2}); testRotate(new short[] {1, 2, 3}, -1, new short[] {2, 3, 1}); testRotate(new short[] {1, 2, 3}, 0, new short[] {1, 2, 3}); testRotate(new short[] {1, 2, 3}, 1, new short[] {3, 1, 2}); testRotate(new short[] {1, 2, 3}, 2, new short[] {2, 3, 1}); testRotate(new short[] {1, 2, 3}, 3, new short[] {1, 2, 3});
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 27.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/FloatsTest.java
testRotate(new float[] {1, 2, 3}, -3, new float[] {1, 2, 3}); testRotate(new float[] {1, 2, 3}, -2, new float[] {3, 1, 2}); testRotate(new float[] {1, 2, 3}, -1, new float[] {2, 3, 1}); testRotate(new float[] {1, 2, 3}, 0, new float[] {1, 2, 3}); testRotate(new float[] {1, 2, 3}, 1, new float[] {3, 1, 2}); testRotate(new float[] {1, 2, 3}, 2, new float[] {2, 3, 1}); testRotate(new float[] {1, 2, 3}, 3, new float[] {1, 2, 3});
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 29.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/IntsTest.java
testRotate(new int[] {1, 2, 3}, -3, new int[] {1, 2, 3}); testRotate(new int[] {1, 2, 3}, -2, new int[] {3, 1, 2}); testRotate(new int[] {1, 2, 3}, -1, new int[] {2, 3, 1}); testRotate(new int[] {1, 2, 3}, 0, new int[] {1, 2, 3}); testRotate(new int[] {1, 2, 3}, 1, new int[] {3, 1, 2}); testRotate(new int[] {1, 2, 3}, 2, new int[] {2, 3, 1}); testRotate(new int[] {1, 2, 3}, 3, new int[] {1, 2, 3});
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 29.2K bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/FloatsTest.java
testRotate(new float[] {1, 2, 3}, -3, new float[] {1, 2, 3}); testRotate(new float[] {1, 2, 3}, -2, new float[] {3, 1, 2}); testRotate(new float[] {1, 2, 3}, -1, new float[] {2, 3, 1}); testRotate(new float[] {1, 2, 3}, 0, new float[] {1, 2, 3}); testRotate(new float[] {1, 2, 3}, 1, new float[] {3, 1, 2}); testRotate(new float[] {1, 2, 3}, 2, new float[] {2, 3, 1}); testRotate(new float[] {1, 2, 3}, 3, new float[] {1, 2, 3});
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 29.4K bytes - Viewed (0)