Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for HostSpecifier (0.17 sec)

  1. android/guava/src/com/google/common/net/HostSpecifier.java

     * @since 5.0
     */
    @J2ktIncompatible
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    public final class HostSpecifier {
    
      private final String canonicalForm;
    
      private HostSpecifier(String canonicalForm) {
        this.canonicalForm = canonicalForm;
      }
    
      /**
       * Returns a {@code HostSpecifier} built from the provided {@code specifier}, which is already
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 05 09:18:40 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/net/HostSpecifier.java

     * @since 5.0
     */
    @J2ktIncompatible
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    public final class HostSpecifier {
    
      private final String canonicalForm;
    
      private HostSpecifier(String canonicalForm) {
        this.canonicalForm = canonicalForm;
      }
    
      /**
       * Returns a {@code HostSpecifier} built from the provided {@code specifier}, which is already
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 05 09:18:40 UTC 2023
    - 6K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/net/HostSpecifierTest.java

        // Throws exception if not working correctly
        HostSpecifier unused = HostSpecifier.fromValid(spec);
        unused = HostSpecifier.from(spec);
        assertTrue(HostSpecifier.isValid(spec));
      }
    
      private void assertBad(String spec) {
        try {
          HostSpecifier.fromValid(spec);
          fail("Should have thrown IllegalArgumentException: " + spec);
        } catch (IllegalArgumentException expected) {
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 18 15:33:20 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/net/HostAndPort.java

       * IPv4/IPv6 literal.
       *
       * <p>A successful parse does not imply any degree of sanity in this field. For additional
       * validation, see the {@link HostSpecifier} class.
       *
       * @since 20.0 (since 10.0 as {@code getHostText})
       */
      public String getHost() {
        return host;
      }
    
      /** Return true if this instance has a defined port. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Aug 22 20:55:57 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/net/HostAndPort.java

       * IPv4/IPv6 literal.
       *
       * <p>A successful parse does not imply any degree of sanity in this field. For additional
       * validation, see the {@link HostSpecifier} class.
       *
       * @since 20.0 (since 10.0 as {@code getHostText})
       */
      public String getHost() {
        return host;
      }
    
      /** Return true if this instance has a defined port. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Aug 22 20:55:57 UTC 2023
    - 11.3K bytes
    - Viewed (0)
Back to top