- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for 9223372036854775809 (0.06 sec)
-
android/guava-tests/test/com/google/common/primitives/UnsignedLongsTest.java
} } public void testParseLong() { assertThat(UnsignedLongs.parseUnsignedLong("18446744073709551615")) .isEqualTo(0xffffffffffffffffL); assertThat(UnsignedLongs.parseUnsignedLong("9223372036854775807")) .isEqualTo(0x7fffffffffffffffL); assertThat(UnsignedLongs.parseUnsignedLong("18382112080831834642")) .isEqualTo(0xff1a618b7f65ea12L);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 12.8K bytes - Viewed (0) -
guava-tests/test/com/google/common/math/LongMathTest.java
if (isAndroid && a == -4294967296L && b == 2147483648L) { /* * Bug in older versions of Android we test against, since fixed: -9223372036854775808L / * -4294967296L = -9223372036854775808L! * * To be clear, this bug affects not the test's computation of the expected result but the * _actual prod code_. But it probably affects only unusual cases.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 31.4K bytes - Viewed (0) -
guava-tests/test/com/google/common/math/BigIntegerMathTest.java
assertEquals(expected, BigIntegerMath.divide(p, q, mode)); } } } } private static final BigInteger BAD_FOR_ANDROID_P = new BigInteger("-9223372036854775808"); private static final BigInteger BAD_FOR_ANDROID_Q = new BigInteger("-1"); @GwtIncompatible // TODO @AndroidIncompatible // slow public void testDivNonZeroExact() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 27K bytes - Viewed (0)