- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 23 for 8232 (0.02 sec)
-
android/guava/src/com/google/common/math/LongMath.java
long bHi = b >>> 32; // < 2^31 long aLo = a & 0xFFFFFFFFL; // < 2^32 long bLo = b & 0xFFFFFFFFL; // < 2^32 /* * a * b == aHi * bHi * 2^64 + (aHi * bLo + aLo * bHi) * 2^32 + aLo * bLo. * == (aHi * bHi * 2^32 + aHi * bLo + aLo * bHi) * 2^32 + aLo * bLo *
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 09 16:39:37 UTC 2024 - 45.2K bytes - Viewed (0) -
guava/src/com/google/common/math/LongMath.java
long bHi = b >>> 32; // < 2^31 long aLo = a & 0xFFFFFFFFL; // < 2^32 long bLo = b & 0xFFFFFFFFL; // < 2^32 /* * a * b == aHi * bHi * 2^64 + (aHi * bLo + aLo * bHi) * 2^32 + aLo * bLo. * == (aHi * bHi * 2^32 + aHi * bLo + aLo * bHi) * 2^32 + aLo * bLo *
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 09 16:39:37 UTC 2024 - 45.2K bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/BytesTest.java
testRotate(new byte[] {1, 2, 3}, -3, new byte[] {1, 2, 3}); testRotate(new byte[] {1, 2, 3}, -2, new byte[] {3, 1, 2}); testRotate(new byte[] {1, 2, 3}, -1, new byte[] {2, 3, 1}); testRotate(new byte[] {1, 2, 3}, 0, new byte[] {1, 2, 3}); testRotate(new byte[] {1, 2, 3}, 1, new byte[] {3, 1, 2}); testRotate(new byte[] {1, 2, 3}, 2, new byte[] {2, 3, 1}); testRotate(new byte[] {1, 2, 3}, 3, new byte[] {1, 2, 3});
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 02:56:12 UTC 2024 - 17.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/BytesTest.java
testRotate(new byte[] {1, 2, 3}, -3, new byte[] {1, 2, 3}); testRotate(new byte[] {1, 2, 3}, -2, new byte[] {3, 1, 2}); testRotate(new byte[] {1, 2, 3}, -1, new byte[] {2, 3, 1}); testRotate(new byte[] {1, 2, 3}, 0, new byte[] {1, 2, 3}); testRotate(new byte[] {1, 2, 3}, 1, new byte[] {3, 1, 2}); testRotate(new byte[] {1, 2, 3}, 2, new byte[] {2, 3, 1}); testRotate(new byte[] {1, 2, 3}, 3, new byte[] {1, 2, 3});
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 02:56:12 UTC 2024 - 17.3K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/internal/tls/ClientAuthTest.kt
// JDK 11+ } is SSLException -> { // javax.net.ssl.SSLException: readRecord } is SocketException -> { // Conscrypt, JDK 8 (>= 292), JDK 9 } else -> { assertThat(expected.message).isEqualTo("exhausted all routes") } } } } @Test fun commonNameIsNotTrusted() {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Jan 14 10:20:09 UTC 2024 - 12.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/CharsTest.java
testRotate(new char[] {'1', '2', '3'}, -2, new char[] {'3', '1', '2'}); testRotate(new char[] {'1', '2', '3'}, -1, new char[] {'2', '3', '1'}); testRotate(new char[] {'1', '2', '3'}, 0, new char[] {'1', '2', '3'}); testRotate(new char[] {'1', '2', '3'}, 1, new char[] {'3', '1', '2'}); testRotate(new char[] {'1', '2', '3'}, 2, new char[] {'2', '3', '1'});
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 02:56:12 UTC 2024 - 25.6K bytes - Viewed (0) -
android/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 Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 02:56:12 UTC 2024 - 32.2K bytes - Viewed (0) -
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 Nov 01 12:43:10 UTC 2024 - Last Modified: Sun Oct 06 13:04:03 UTC 2024 - 29.9K 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 Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 21:17:54 UTC 2024 - 13.7K bytes - Viewed (0) -
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 Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 21:17:54 UTC 2024 - 13.7K bytes - Viewed (0)