Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for iana (0.15 sec)

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

      public static final MediaType PNG = createConstant(IMAGE_TYPE, "png");
    
      /**
       * The Photoshop File Format ({@code psd} files) as defined by <a
       * href="http://www.iana.org/assignments/media-types/image/vnd.adobe.photoshop">IANA</a>, and
       * found in {@code /etc/mime.types}, e.g. <a
       * href="http://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x/conf/mime.types"></a> of the
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Aug 07 16:17:10 GMT 2023
    - 46.2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/net/InetAddresses.java

      }
    
      /**
       * Evaluates whether the argument is an ISATAP address.
       *
       * <p>From RFC 5214: "ISATAP interface identifiers are constructed in Modified EUI-64 format [...]
       * by concatenating the 24-bit IANA OUI (00-00-5E), the 8-bit hexadecimal value 0xFE, and a 32-bit
       * IPv4 address in network byte order [...]"
       *
       * <p>For more on ISATAP addresses see section 6.1 of <a target="_parent"
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Dec 15 19:31:54 GMT 2023
    - 44K bytes
    - Viewed (1)
  3. android/guava-tests/test/com/google/common/util/concurrent/FutureCallbackTest.java

    import java.util.concurrent.Executor;
    import junit.framework.TestCase;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Test for {@link FutureCallback}.
     *
     * @author Anthony Zana
     */
    @GwtCompatible
    public class FutureCallbackTest extends TestCase {
      public void testSameThreadSuccess() {
        SettableFuture<String> f = SettableFuture.create();
        MockCallback callback = new MockCallback("foo");
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Apr 06 12:56:11 GMT 2023
    - 6.3K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/net/InternetDomainNameTest.java

              "co\uFF61uk", // Alternate dot character
              "\u7f51\u7edc.Cn", // "网络.Cn"
              "j\u00f8rpeland.no", // "jorpeland.no" (first o slashed)
              "xn--jrpeland-54a.no"); // IDNA (punycode) encoding of above
    
      private static final ImmutableSet<String> PS_NOT_RS =
          ImmutableSet.of("blogspot.com", "blogspot.co.uk", "uk.com");
    
      private static final ImmutableSet<String> PS =
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Mar 05 13:16:00 GMT 2024
    - 17.3K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/net/InternetDomainNameTest.java

              "co\uFF61uk", // Alternate dot character
              "\u7f51\u7edc.Cn", // "网络.Cn"
              "j\u00f8rpeland.no", // "jorpeland.no" (first o slashed)
              "xn--jrpeland-54a.no"); // IDNA (punycode) encoding of above
    
      private static final ImmutableSet<String> PS_NOT_RS =
          ImmutableSet.of("blogspot.com", "blogspot.co.uk", "uk.com");
    
      private static final ImmutableSet<String> PS =
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Tue Mar 05 13:16:00 GMT 2024
    - 17.3K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/ListenableScheduledFuture.java

    import java.util.concurrent.ScheduledFuture;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Helper interface to implement both {@link ListenableFuture} and {@link ScheduledFuture}.
     *
     * @author Anthony Zana
     * @since 15.0
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public interface ListenableScheduledFuture<V extends @Nullable Object>
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Dec 14 15:53:12 GMT 2021
    - 1.1K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/UninterruptiblesTest.java

    import java.util.concurrent.locks.Lock;
    import java.util.concurrent.locks.ReentrantLock;
    import junit.framework.TestCase;
    
    /**
     * Tests for {@link Uninterruptibles}.
     *
     * @author Anthony Zana
     */
    public class UninterruptiblesTest extends TestCase {
      private static final String EXPECTED_TAKE = "expectedTake";
    
      /** Timeout to use when we don't expect the timeout to expire. */
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Wed Feb 09 22:57:07 GMT 2022
    - 31.7K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/net/InternetDomainName.java

     * names</a> such as {@code 网络.cn} are supported, as are the equivalent <a
     * href="http://en.wikipedia.org/wiki/Internationalized_domain_name">IDNA Punycode-encoded</a>
     * versions.
     *
     * @author Catherine Berry
     * @since 5.0
     */
    @GwtCompatible(emulated = true)
    @Immutable
    @ElementTypesAreNonnullByDefault
    public final class InternetDomainName {
    
    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