Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for 00000000 (0.24 sec)

  1. android/guava-tests/test/com/google/common/hash/HashingTest.java

              .put(Hashing.murmur3_128(), TQBFJOTLDP, "c902e99e1f4899cde7b68789a3a15d69")
              .put(Hashing.murmur3_32(), "", "00000000")
              .put(Hashing.murmur3_32(), TQBFJOTLD, "23f74f2e")
              .put(Hashing.murmur3_32(), TQBFJOTLDP, "fc8bc4d5")
              .put(Hashing.murmur3_32_fixed(), "", "00000000")
              .put(Hashing.murmur3_32_fixed(), TQBFJOTLD, "23f74f2e")
              .put(Hashing.murmur3_32_fixed(), TQBFJOTLDP, "fc8bc4d5")
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 26.4K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/hash/HashingTest.java

              .put(Hashing.murmur3_128(), TQBFJOTLDP, "c902e99e1f4899cde7b68789a3a15d69")
              .put(Hashing.murmur3_32(), "", "00000000")
              .put(Hashing.murmur3_32(), TQBFJOTLD, "23f74f2e")
              .put(Hashing.murmur3_32(), TQBFJOTLDP, "fc8bc4d5")
              .put(Hashing.murmur3_32_fixed(), "", "00000000")
              .put(Hashing.murmur3_32_fixed(), TQBFJOTLD, "23f74f2e")
              .put(Hashing.murmur3_32_fixed(), TQBFJOTLDP, "fc8bc4d5")
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 26.4K bytes
    - Viewed (2)
  3. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Hpack.kt

              when {
                b == 0x80 -> {
                  // 10000000
                  throw IOException("index == 0")
                }
                b and 0x80 == 0x80 -> {
                  // 1NNNNNNN
                  val index = readInt(b, PREFIX_7_BITS)
                  readIndexedHeader(index - 1)
                }
                b == 0x40 -> {
                  // 01000000
                  readLiteralHeaderWithIncrementalIndexingNewName()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon May 05 16:01:00 UTC 2025
    - 22.4K bytes
    - Viewed (0)
  4. okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerTest.kt

        val buffer =
          Buffer()
            .writeByte(0b00000010)
            .writeByte(0b10001000)
            .writeByte(0b10000000)
            .writeByte(0b00000000)
            .writeByte(0b00000000)
            .writeByte(0b00000000)
            .writeByte(0b00000000)
            .writeByte(0b00000000)
            .writeByte(0b00000000)
            .writeByte(0b00000000)
    
        val derReader = DerReader(buffer)
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 31.7K bytes
    - Viewed (0)
  5. okhttp/src/jvmTest/kotlin/okhttp3/CookieTest.kt

        assertThat(cookie.matches("http://[::1]/".toHttpUrl())).isTrue()
      }
    
      @Test fun domainMatchesIpv6AddressWithCompression() {
        val cookie = parse("http://[0001:0000::]/".toHttpUrl(), "a=b; domain=0001:0000::")
        assertThat(cookie!!.domain).isEqualTo("1::")
        assertThat(cookie.matches("http://[1::]/".toHttpUrl())).isTrue()
      }
    
      @Test fun domainMatchesIpv6AddressWithIpv4Suffix() {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 24.4K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/hash/HashCodeTest.java

        assertEquals(0x0000abcd, hashCode.asInt());
        assertEquals("cdab0000", hashCode.toString());
    
        bytes[0] = (byte) 0x00;
    
        assertEquals(0x0000ab00, hashCode.asInt());
        assertEquals("00ab0000", hashCode.toString());
      }
    
      public void testGetBytesInternal_noCloneOccurs() {
        byte[] bytes = new byte[] {(byte) 0xcd, (byte) 0xab, (byte) 0x00, (byte) 0x00};
        HashCode hashCode = HashCode.fromBytes(bytes);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/hash/HashCodeTest.java

        assertEquals(0x0000abcd, hashCode.asInt());
        assertEquals("cdab0000", hashCode.toString());
    
        bytes[0] = (byte) 0x00;
    
        assertEquals(0x0000ab00, hashCode.asInt());
        assertEquals("00ab0000", hashCode.toString());
      }
    
      public void testGetBytesInternal_noCloneOccurs() {
        byte[] bytes = new byte[] {(byte) 0xcd, (byte) 0xab, (byte) 0x00, (byte) 0x00};
        HashCode hashCode = HashCode.fromBytes(bytes);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/hash/BloomFilterTest.java

      }
    
      /** Sanity checking with many combinations of false positive rates and expected insertions */
      public void testBasic() {
        for (double fpr = 0.0000001; fpr < 0.1; fpr *= 10) {
          for (int expectedInsertions = 1; expectedInsertions <= 10000; expectedInsertions *= 10) {
            checkSanity(BloomFilter.create(HashTestUtils.BAD_FUNNEL, expectedInsertions, fpr));
          }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 22K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/collect/ImmutableListTest.java

        ImmutableList<Integer> webSafeColors = webSafeColorsBuilder.build();
        assertEquals(216, webSafeColors.size());
        Integer[] webSafeColorArray = webSafeColors.toArray(new Integer[webSafeColors.size()]);
        assertEquals(0x000000, (int) webSafeColorArray[0]);
        assertEquals(0x000033, (int) webSafeColorArray[1]);
        assertEquals(0x000066, (int) webSafeColorArray[2]);
        assertEquals(0x003300, (int) webSafeColorArray[6]);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 24.2K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/view/admin/webconfig/admin_webconfig_edit.jsp

                                                   value="${f:h(maxAccessCount)}" class="form-control"
                                                   min="0" max="1000000000">
                                        </div>
                                    </div>
                                    <div class="form-group row">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 15.9K bytes
    - Viewed (0)
Back to top