- Sort Score
- Result 10 results
- Languages All
Results 1 - 9 of 9 for 212 (0.03 sec)
-
android/guava-tests/test/com/google/common/primitives/UnsignedIntsTest.java
testSortDescending(new int[] {1, 3, 1}, 0, 1, new int[] {1, 3, 1}); testSortDescending( new int[] {GREATEST - 1, 1, GREATEST - 2, 2}, 1, 3, new int[] {GREATEST - 1, GREATEST - 2, 1, 2}); } public void testDivide() { for (long a : UNSIGNED_INTS) { for (long b : UNSIGNED_INTS) { try { assertThat(UnsignedInts.divide((int) a, (int) b)).isEqualTo((int) (a / b));
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 02:56:12 UTC 2024 - 12.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/UnsignedBytesTest.java
testSortDescending(new byte[] {1, 3, 1}, 0, 1, new byte[] {1, 3, 1}); testSortDescending( new byte[] {GREATEST - 1, 1, GREATEST - 2, 2}, 1, 3, new byte[] {GREATEST - 1, GREATEST - 2, 1, 2}); } public void testNulls() { new NullPointerTester().testAllPublicStaticMethods(UnsignedBytes.class); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 19:07:49 UTC 2024 - 13.4K bytes - Viewed (0) -
cmd/apierrorcode_string.go
_ = x[ErrSiteReplicationBackendIssue-208] _ = x[ErrSiteReplicationServiceAccountError-209] _ = x[ErrSiteReplicationBucketConfigError-210] _ = x[ErrSiteReplicationBucketMetaError-211] _ = x[ErrSiteReplicationIAMError-212] _ = x[ErrSiteReplicationConfigMissing-213] _ = x[ErrSiteReplicationIAMConfigMismatch-214] _ = x[ErrAdminRebalanceAlreadyStarted-215] _ = x[ErrAdminRebalanceNotStarted-216] _ = x[ErrAdminBucketQuotaExceeded-217]
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jun 13 22:26:38 UTC 2024 - 21.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java
String password, byte[] challenge, byte[] clientChallenge) { try { byte[] hash = new byte[16]; byte[] response = new byte[24]; // The next 2-1/2 lines of this should be placed with nTOWFv1 in place of password MD4 md4 = new MD4(); md4.update(password.getBytes(SmbConstants.UNI_ENCODING)); HMACT64 hmac = new HMACT64(md4.digest());
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 22.5K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/ComparableVersion.java
* <pre> * Display parameters as parsed by Maven (in canonical form) and comparison result: * 1. 1.2.7 == 1.2.7 * 1.2.7 > 1.2-SNAPSHOT * 2. 1.2-SNAPSHOT == 1.2-snapshot * </pre> * * @param args the version strings to parse and compare. You can pass arbitrary number of version strings and always * two adjacent will be compared.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 26K bytes - Viewed (0) -
api/go1.11.txt
pkg debug/elf, const EM_JAVELIN Machine pkg debug/elf, const EM_K10M = 181 pkg debug/elf, const EM_K10M Machine pkg debug/elf, const EM_KM32 = 210 pkg debug/elf, const EM_KM32 Machine pkg debug/elf, const EM_KMX16 = 212 pkg debug/elf, const EM_KMX16 Machine pkg debug/elf, const EM_KMX32 = 211 pkg debug/elf, const EM_KMX32 Machine pkg debug/elf, const EM_KMX8 = 213 pkg debug/elf, const EM_KMX8 Machine
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Aug 22 03:48:56 UTC 2018 - 25K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/arm64enc.s
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Jul 24 01:11:41 UTC 2023 - 43.9K bytes - Viewed (0) -
guava/src/com/google/common/math/LongMath.java
// Whenever both tests are cheap and functional, it's faster to use &, | instead of &&, || @SuppressWarnings("ShortCircuitBoolean") public static long checkedMultiply(long a, long b) { // Hacker's Delight, Section 2-12 int leadingZeros = Long.numberOfLeadingZeros(a) + Long.numberOfLeadingZeros(~a) + Long.numberOfLeadingZeros(b) + Long.numberOfLeadingZeros(~b); /*
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 09 16:39:37 UTC 2024 - 45.2K bytes - Viewed (0) -
android/guava/src/com/google/common/math/LongMath.java
// Whenever both tests are cheap and functional, it's faster to use &, | instead of &&, || @SuppressWarnings("ShortCircuitBoolean") public static long checkedMultiply(long a, long b) { // Hacker's Delight, Section 2-12 int leadingZeros = Long.numberOfLeadingZeros(a) + Long.numberOfLeadingZeros(~a) + Long.numberOfLeadingZeros(b) + Long.numberOfLeadingZeros(~b); /*
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 09 16:39:37 UTC 2024 - 45.2K bytes - Viewed (0)