Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 8 of 8 for PublicSuffixType (0.73 seconds)

  1. android/guava/src/com/google/thirdparty/publicsuffix/PublicSuffixType.java

      private final char leafNodeCode;
    
      PublicSuffixType(char innerNodeCode, char leafNodeCode) {
        this.innerNodeCode = innerNodeCode;
        this.leafNodeCode = leafNodeCode;
      }
    
      char getLeafNodeCode() {
        return leafNodeCode;
      }
    
      char getInnerNodeCode() {
        return innerNodeCode;
      }
    
      /** Returns a PublicSuffixType of the right type according to the given code */
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Dec 16 19:54:45 GMT 2020
    - 2K bytes
    - Click Count (0)
  2. guava-gwt/src/com/google/thirdparty/publicsuffix/PublicSuffixType.gwt.xml

    cpovirk <******@****.***> 1721404771 -0700
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Jul 19 16:02:36 GMT 2024
    - 1.4K bytes
    - Click Count (0)
  3. android/guava/src/com/google/thirdparty/publicsuffix/PublicSuffixTrie.java

      }
    
      private @Nullable PublicSuffixType getWildcardMatchType(int metadata) {
        return getType((metadata >> WILDCARD_SHIFT) & TYPE_MASK);
      }
    
      private @Nullable PublicSuffixType getType(int typeBits) {
        if (typeBits == 1) {
          return PublicSuffixType.REGISTRY;
        } else if (typeBits == 2) {
          return PublicSuffixType.PRIVATE;
        }
        return null;
      }
    
      /**
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 03 21:21:59 GMT 2026
    - 9.1K bytes
    - Click Count (0)
  4. guava-tests/test/com/google/thirdparty/publicsuffix/PublicSuffixTrieTest.java

                    ImmutableList.of("blogspot", "com"), PublicSuffixType.PRIVATE))
            .isEqualTo(0);
        assertThat(
                PublicSuffixPatterns.TRIE.findSuffixIndex(
                    ImmutableList.of("blogspot", "com"), PublicSuffixType.REGISTRY))
            .isEqualTo(1);
    
        assertThat(
                PublicSuffixPatterns.TRIE.findSuffixIndex(
                    ImmutableList.of("com"), PublicSuffixType.REGISTRY))
            .isEqualTo(0);
    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)
  5. guava-gwt/src/com/google/common/ForceGuavaCompilation.gwt.xml

      <inherits name="com.google.common.xml.Xml" />
      <inherits name="com.google.thirdparty.publicsuffix.PublicSuffixPatterns" />
      <inherits name="com.google.thirdparty.publicsuffix.PublicSuffixType" />
    
      <!-- com.google.common.testing.Testing is located in
           GuavaTests under guava-gwt/test -->
    
      <source path="">
        <include name="ForceGuavaCompilationEntryPoint.java" />
      </source>
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Sep 27 15:04:14 GMT 2021
    - 1.1K bytes
    - Click Count (0)
  6. guava-gwt/src/com/google/thirdparty/publicsuffix/PublicSuffixPatterns.gwt.xml

    <inherits name="com.google.common.collect.Collect" />
    <inherits name="com.google.gwt.core.Core" />
    <inherits name="com.google.gwt.user.User" />
    <inherits name="com.google.thirdparty.publicsuffix.PublicSuffixType" />
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Jul 19 16:02:36 GMT 2024
    - 1.6K bytes
    - Click Count (0)
  7. guava-gwt/src/com/google/common/net/Net.gwt.xml

    <inherits name="com.google.gwt.core.Core" />
    <inherits name="com.google.gwt.user.User" />
    <inherits name="com.google.thirdparty.publicsuffix.PublicSuffixPatterns" />
    <inherits name="com.google.thirdparty.publicsuffix.PublicSuffixType" />
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Feb 21 16:12:41 GMT 2025
    - 1.8K bytes
    - Click Count (0)
  8. android/guava/src/com/google/common/net/InternetDomainName.java

    import com.google.errorprone.annotations.Immutable;
    import com.google.errorprone.annotations.concurrent.LazyInit;
    import com.google.thirdparty.publicsuffix.PublicSuffixPatterns;
    import com.google.thirdparty.publicsuffix.PublicSuffixType;
    import java.util.List;
    import org.jspecify.annotations.Nullable;
    
    /**
     * An immutable well-formed internet domain name, such as {@code com} or {@code foo.co.uk}. Only
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 03 21:21:59 GMT 2026
    - 26.2K bytes
    - Click Count (0)
Back to Top