Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for PublicSuffixPatterns (0.3 sec)

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

     * <p>Because this class is used in GWT, the data members are stored in a space-efficient manner.
     * See {@link TrieParser}.
     *
     * @since 16.0
     */
    @GwtCompatible
    @Beta
    public final class PublicSuffixPatterns {
      private PublicSuffixPatterns() {}
    
      /** If a hostname is contained as a key in this map, it is a public suffix. */
      public static final ImmutableMap<String, PublicSuffixType> EXACT =
          TrieParser.parseTrie(
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Mar 21 21:04:43 GMT 2024
    - 72.4K bytes
    - Viewed (1)
  2. guava-gwt/src/com/google/thirdparty/publicsuffix/PublicSuffixPatterns.gwt.xml

    David P. Baker <******@****.***> 1641482883 -0800
    XML
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Jan 06 15:30:58 GMT 2022
    - 1.5K bytes
    - Viewed (0)
  3. guava-gwt/src/com/google/common/net/Net.gwt.xml

    <inherits name="com.google.common.escape.Escape" />
    <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" />
    XML
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Jan 06 15:30:58 GMT 2022
    - 1.7K bytes
    - Viewed (0)
  4. guava-gwt/src/com/google/common/ForceGuavaCompilation.gwt.xml

      <inherits name="com.google.common.util.concurrent.Concurrent" />
      <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="">
    XML
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Sep 27 15:04:14 GMT 2021
    - 1.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/net/InternetDomainName.java

          if (i > 0
              && matchesType(
                  desiredType, Optional.fromNullable(PublicSuffixPatterns.UNDER.get(ancestorName)))) {
            return i - 1;
          }
    
          if (matchesType(
              desiredType, Optional.fromNullable(PublicSuffixPatterns.EXACT.get(ancestorName)))) {
            return i;
          }
    
          // Excluded domains (e.g. !nhs.uk) use the next highest
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Feb 05 20:47:23 GMT 2024
    - 28K bytes
    - Viewed (0)
Back to top