Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for blogspot (0.05 seconds)

  1. guava-tests/test/com/google/thirdparty/publicsuffix/PublicSuffixTrieTest.java

            .isEqualTo(0);
        assertThat(
                PublicSuffixPatterns.TRIE.findSuffixIndex(ImmutableList.of("foo", "blogspot", "com")))
            .isEqualTo(1);
      }
    
      @Test
      public void testDesiredType() {
        assertThat(
                PublicSuffixPatterns.TRIE.findSuffixIndex(
                    ImmutableList.of("blogspot", "com"), PublicSuffixType.PRIVATE))
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 03 21:21:59 GMT 2026
    - 2.8K bytes
    - Click Count (0)
  2. android/guava/src/com/google/thirdparty/publicsuffix/PublicSuffixType.java

     *
     * <p>Specifies the type of a top-level domain definition.
     *
     * @since 23.3
     */
    @Beta
    @GwtCompatible
    public enum PublicSuffixType {
    
      /** Public suffix that is provided by a private company, e.g. "blogspot.com" */
      PRIVATE(':', ','),
      /** Public suffix that is backed by an ICANN-style domain name registry */
      REGISTRY('!', '?');
    
      /** The character used for an inner node in the trie encoding */
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Dec 16 19:54:45 GMT 2020
    - 2K bytes
    - Click Count (0)
  3. README.md

    Note that the Go project uses the issue tracker for bug reports and
    proposals only. See https://go.dev/wiki/Questions for a list of
    places to ask questions about the Go language.
    
    [rf]: https://reneefrench.blogspot.com/
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Mon Jul 22 17:45:27 GMT 2024
    - 1.4K bytes
    - Click Count (0)
Back to Top