- Sort Score
- Num 10 results
- Language All
Results 1 - 7 of 7 for PublicSuffixType (0.07 seconds)
-
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 Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Dec 10 15:48:57 GMT 2020 - 2K bytes - Click Count (0) -
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 Dec 26 12:43:10 GMT 2025 - Last Modified: Wed Dec 16 19:54:45 GMT 2020 - 2K bytes - Click Count (0) -
guava-gwt/src/com/google/thirdparty/publicsuffix/PublicSuffixType.gwt.xml
cpovirk <******@****.***> 1721404771 -0700
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Fri Jul 19 16:02:36 GMT 2024 - 1.4K bytes - Click Count (0) -
android/guava/src/com/google/thirdparty/publicsuffix/TrieParser.java
*/ static ImmutableMap<String, PublicSuffixType> parseTrie(CharSequence... encodedChunks) { String encoded = DIRECT_JOINER.join(encodedChunks); return parseFullString(encoded); } @VisibleForTesting static ImmutableMap<String, PublicSuffixType> parseFullString(String encoded) { ImmutableMap.Builder<String, PublicSuffixType> builder = ImmutableMap.builder(); int encodedLen = encoded.length();
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Sun Aug 10 19:54:19 GMT 2025 - 4K bytes - Click Count (0) -
android/guava/src/com/google/common/net/InternetDomainName.java
* identical. Otherwise, returns true as long as {@code actualType} is present. */ private static boolean matchesType( Optional<PublicSuffixType> desiredType, Optional<PublicSuffixType> actualType) { return desiredType.isPresent() ? desiredType.equals(actualType) : actualType.isPresent(); } /** Returns the domain name, normalized to all lower case. */ @OverrideCreated: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 27.9K bytes - Click Count (0) -
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 Dec 26 12:43:10 GMT 2025 - Last Modified: Fri Feb 21 16:12:41 GMT 2025 - 1.8K bytes - Click Count (0) -
android/guava/src/com/google/thirdparty/publicsuffix/PublicSuffixPatterns.java
@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(Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue Dec 16 20:00:28 GMT 2025 - 76.5K bytes - Click Count (1)