Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for PublicSuffixTrie (0.13 seconds)

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

     *
     * <ul>
     *   <li>A full 32-bit offset for the String Pool (using 2 characters).
     *   <li>A full 16-bit child count (using the freed bits from the 4th character).
     * </ul>
     */
    @GwtCompatible
    public final class PublicSuffixTrie {
    
      /** Each node in the trie takes up 3 characters. */
      static final int NODE_SIZE = 3;
    
      static final int CHILDREN_MASK = 0x7FF;
      static final int EXCLUSION_MASK = 0x1;
      static final int TYPE_MASK = 0x3;
    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)
  2. android/guava/src/com/google/thirdparty/publicsuffix/PublicSuffixPatterns.java

      /**
       * The Public Suffix Trie data.
       *
       * <p>Like the {@link #STRING_POOL}, the trie data is stored using standard Java UTF-16 charset.
       */
      public static final PublicSuffixTrie TRIE =
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 06 20:41:51 GMT 2026
    - 290.5K bytes
    - Click Count (1)
Back to Top