- Sort Score
- Num 10 results
- Language All
Results 1 - 8 of 8 for 76543210 (0.08 seconds)
-
okhttp/src/jvmTest/kotlin/okhttp3/internal/HostnamesTest.kt
assertThat("::ffff:192.168.0.1".toCanonicalHost()).isEqualTo("192.168.0.1") assertThat( "FEDC:BA98:7654:3210:FEDC:BA98:7654:3210".toCanonicalHost(), ).isEqualTo( "fedc:ba98:7654:3210:fedc:ba98:7654:3210", ) assertThat( "1080:0:0:0:8:800:200C:417A".toCanonicalHost(), ).isEqualTo("1080::8:800:200c:417a")
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Fri Dec 27 13:39:56 GMT 2024 - 5.1K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/primitives/UnsignedIntsTest.java
assertThat(UnsignedInts.decode("01234567")).isEqualTo(01234567); // octal assertThat(UnsignedInts.decode("#12345678")).isEqualTo(0x12345678); assertThat(UnsignedInts.decode("76543210")).isEqualTo(76543210); assertThat(UnsignedInts.decode("0x13579135")).isEqualTo(0x13579135); assertThat(UnsignedInts.decode("0X13579135")).isEqualTo(0x13579135); assertThat(UnsignedInts.decode("0")).isEqualTo(0); }
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 12.5K bytes - Click Count (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/tls/HostnameVerifierTest.kt
assertThat("2001:db8::1".canParseAsIpAddress()).isTrue() assertThat("::192.168.0.1".canParseAsIpAddress()).isTrue() assertThat("::ffff:192.168.0.1".canParseAsIpAddress()).isTrue() assertThat("FEDC:BA98:7654:3210:FEDC:BA98:7654:3210".canParseAsIpAddress()).isTrue() assertThat("1080:0:0:0:8:800:200C:417A".canParseAsIpAddress()).isTrue() assertThat("1080::8:800:200C:417A".canParseAsIpAddress()).isTrue()
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Wed Mar 19 19:25:20 GMT 2025 - 40.4K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb1/com/SmbComLockingAndXTest.java
LockingAndXRange range = new LockingAndXRange(false); setField(range, "pid", 99); setField(range, "byteOffset", 123456L); setField(range, "lengthInBytes", 654321L); byte[] dst = new byte[20]; int writtenSize = range.encode(dst, 0); assertEquals(10, writtenSize, "Range size when not large should be 10"); // create a new empty range and decode
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 7.1K bytes - Click Count (0) -
src/test/java/jcifs/SmbTransportPoolTest.java
@DisplayName("Should get NTLM challenge with address and port") void testGetChallengeWithAddressAndPort() throws CIFSException { // Given byte[] expectedChallenge = new byte[] { 8, 7, 6, 5, 4, 3, 2, 1 }; when(transportPool.getChallenge(context, address, DEFAULT_PORT)).thenReturn(expectedChallenge); // WhenCreated: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 22.6K bytes - Click Count (0) -
src/archive/zip/zip_test.go
} testHeaderRoundTrip(fh, fh.UncompressedSize, uint64(fh.UncompressedSize), t) } func TestFileHeaderRoundTrip64(t *testing.T) { fh := &FileHeader{ Name: "foo.txt", UncompressedSize64: 9876543210, ModifiedTime: 1234, ModifiedDate: 5678, } testHeaderRoundTrip(fh, uint32max, fh.UncompressedSize64, t) } func TestFileHeaderRoundTripModified(t *testing.T) { fh := &FileHeader{
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Thu May 23 01:00:11 GMT 2024 - 19.6K bytes - Click Count (0) -
CHANGELOG/CHANGELOG-1.6.md
* Collect logs for dead kubelets too ([#37671](https://github.com/kubernetes/kubernetes/pull/37671), [@mtaufen](https://github.com/mtaufen)) ## Changes to Addons ### Dashboard * Update dashboard version to v1.6.0 ([#43210](https://github.com/kubernetes/kubernetes/pull/43210), [@floreks](https://github.com/floreks)) ### DNS
Created: Fri Dec 26 09:05:12 GMT 2025 - Last Modified: Thu Dec 24 02:28:26 GMT 2020 - 304K bytes - Click Count (0) -
lib/fips140/v1.1.0-rc1.zip
const barrettShift = 16 // log₂(2¹⁶) quotient := (uint32(b) * barrettMultiplier) >> barrettShift remainder := uint32(b) - quotient*5 return fieldSubToMontgomery(2, remainder), true case 4: // Return z = 4 − b, which maps from // // b = ( 8, 7, 6, 5, 4, 3, 2, 1, 0 ) // // to // // z = ( −4, -3, -2, -1, 0, 1, 2, 3, 4 ) // if b > 8 { return 0, false } return fieldSubToMontgomery(4, uint32(b)), true default: panic("internal error: unsupported η") } } // power2Round implements Power2Round from FIPS 204....
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Thu Dec 11 16:27:41 GMT 2025 - 663K bytes - Click Count (0)