Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for 00000110 (0.07 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/http/conn/IdnDnsResolverTest.java

            assertNotNull(addresses);
            assertTrue(addresses.length > 0);
            // IPv6 loopback can be represented as ::1 or 0:0:0:0:0:0:0:1
            String hostAddress = addresses[0].getHostAddress();
            assertTrue(hostAddress.contains(":"));
            assertTrue(hostAddress.equals("::1") || hostAddress.equals("0:0:0:0:0:0:0:1"));
    
            // Test IPv6 address with brackets
            host = "[2001:db8::1]";
            addresses = resolver.resolve(host);
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 06 07:24:43 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/util/IpAddressUtil.java

                return "[" + address + "]";
            }
            return address;
        }
    
        /**
         * Compresses an IPv6 address string to its canonical compressed form.
         * For example, "0:0:0:0:0:0:0:1" becomes "::1"
         *
         * @param ipv6Address the IPv6 address string to compress
         * @return the compressed IPv6 address string
         */
        protected static String compressIPv6(final String ipv6Address) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 06 08:31:03 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  3. okhttp/src/jvmTest/kotlin/okhttp3/CookieTest.kt

        assertThat(cookie.httpOnly).isTrue()
      }
    
      @Test fun builderIpv6() {
        val cookie =
          Cookie
            .Builder()
            .name("a")
            .value("b")
            .domain("0:0:0:0:0:0:0:1")
            .build()
        assertThat(cookie.domain).isEqualTo("::1")
      }
    
      @Test fun emptySameSite() {
        assertThat(parse(url, "a=b; SameSite=")!!.sameSite).isEqualTo("")
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sat Nov 01 12:18:11 UTC 2025
    - 24.4K bytes
    - Viewed (0)
  4. 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 Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Oct 28 18:19:59 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  5. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

          <match value="MZ" type="string" offset="0">
             <match value="PE\000\000" type="string" offset="128"/>
             <match value="PE\000\000" type="string" offset="176"/>
             <match value="PE\000\000" type="string" offset="208"/>
             <match value="PE\000\000" type="string" offset="240"/>
          </match>
        </magic>
      </mime-type>
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Oct 16 07:46:32 UTC 2025
    - 320.2K bytes
    - Viewed (5)
  6. fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/SitemapsHelperTest.java

            // Valid date format
            assertTrue(sitemapsHelper.isValidDateFormat("2025-01-01"));
            assertTrue(sitemapsHelper.isValidDateFormat("2025-01-01T12:00:00+00:00"));
            assertTrue(sitemapsHelper.isValidDateFormat(null));
            assertTrue(sitemapsHelper.isValidDateFormat(""));
    
            // Invalid date format
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 36.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/cache/CacheBuilder.java

                @Override
                public CacheStats snapshot() {
                  return EMPTY_STATS;
                }
              });
      static final CacheStats EMPTY_STATS = new CacheStats(0, 0, 0, 0, 0, 0);
    
      /*
       * We avoid using a method reference or lambda here for now:
       *
       * - method reference: Inside Google, CacheBuilder is used from the implementation of a custom
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Wed Oct 08 18:55:33 UTC 2025
    - 51.6K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.31.md

      --nodeport-addresses, to avoid surprising behavior.
      (This behavior is enabled by default with the nftables backend; you would
      need to explicitly request `--nodeport-addresses 0.0.0.0/0,::/0` there to get
      the traditional "listen on all interfaces" behavior.) ([#123105](https://github.com/kubernetes/kubernetes/pull/123105), [@danwinship](https://github.com/danwinship)) [SIG API Machinery, Network and Windows]
    Registered: Fri Dec 26 09:05:12 UTC 2025
    - Last Modified: Wed Nov 12 11:33:21 UTC 2025
    - 451.9K bytes
    - Viewed (0)
Back to top