Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for 168 (0.12 sec)

  1. okhttp/src/jvmTest/kotlin/okhttp3/internal/HostnamesTest.kt

            byteArrayOf(
              192.toByte(),
              168.toByte(),
              0,
              1,
            ),
        )
      }
    
      @Test
      fun canonicalizeInetAddressIPv6RepresentationOfMappedIPV4() {
        val addressAIpv6 = decodeIpv6("::FFFF:192.168.0.1")!!
        assertThat(canonicalizeInetAddress(addressAIpv6)).isEqualTo(byteArrayOf(192.toByte(), 168.toByte(), 0, 1))
      }
    
      @Test
      fun inet4AddressToAscii() {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. src/test/java/jcifs/netbios/NbtAddressTest.java

            assertNotNull(nbtAddress);
            assertEquals("TESTHOST", nbtAddress.getHostName());
            assertArrayEquals(new byte[] { (byte) 192, (byte) 168, (byte) 1, (byte) 1 }, nbtAddress.getAddress());
            // Don't test isGroupAddress and getNodeType here as they don't need context for known hosts
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/NtlmUtil.java

            Encdec.enc_uint32le(0x00000101, temp, 0); // Header
            Encdec.enc_uint32le(0x00000000, temp, 4); // Reserved
            Encdec.enc_uint64le(nanos1601, temp, 8);
            System.arraycopy(clientChallenge, 0, temp, 16, 8);
            Encdec.enc_uint32le(0x00000000, temp, 24); // Unknown
            if (avPairs != null) {
                System.arraycopy(avPairs, 0, temp, 28, avPairsLength);
            }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.16.md

        - [Node Binaries](#node-binaries-7)
      - [Changelog since v1.16.8](#changelog-since-v1168)
      - [Changes by Kind](#changes-by-kind-7)
        - [Feature](#feature-1)
        - [Bug or Regression](#bug-or-regression-7)
        - [Other (Cleanup or Flake)](#other-cleanup-or-flake-3)
    - [v1.16.8](#v1168)
      - [Downloads for v1.16.8](#downloads-for-v1168)
        - [Client Binaries](#client-binaries-8)
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Oct 23 20:13:20 UTC 2024
    - 345.2K bytes
    - Viewed (0)
  5. src/test/java/jcifs/smb/NtlmUtilTest.java

            Encdec.enc_uint32le(0x00000101, blob, 0); // Header
            Encdec.enc_uint32le(0x00000000, blob, 4); // Reserved
            Encdec.enc_uint64le(nanos1601, blob, 8);
            System.arraycopy(clientChallenge, 0, blob, 16, 8);
            Encdec.enc_uint32le(0x00000000, blob, 24); // Unknown
            System.arraycopy(avPairs, 0, blob, 28, avPairsLength);
            Encdec.enc_uint32le(0x00000000, blob, 28 + avPairsLength);
    
            // Act
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 12K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java

                hmac = new HMACT64(hmac.digest());
                hmac.update(challenge);
                hmac.update(clientChallenge);
                hmac.digest(response, 0, 16);
                System.arraycopy(clientChallenge, 0, response, 16, 8);
                return response;
            } catch (final Exception ex) {
                if (LogStream.level > 0) {
                    ex.printStackTrace(log);
                }
                return null;
            }
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 26.7K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/collect/MapMakerInternalMapTest.java

    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/MapMakerInternalMapTest.java

    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 110.5K bytes
    - Viewed (0)
  10. docs/en/docs/release-notes.md

    * By default, encode by alias. This allows using Pydantic `alias` parameters working by default. PR [#168](https://github.com/tiangolo/fastapi/pull/168).
    
    ## 0.16.0
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Sep 05 12:48:45 UTC 2025
    - 544.1K bytes
    - Viewed (0)
Back to top