Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for snippets (0.16 sec)

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

       * Specifically, validation against <a href="http://www.ietf.org/rfc/rfc3490.txt">RFC 3490</a>
       * ("Internationalizing Domain Names in Applications") is skipped.
       *
       * <p>The following two code snippets are equivalent:
       *
       * <pre>{@code
       * domainName = InternetDomainName.isValid(name)
       *     ? InternetDomainName.from(name)
       *     : DEFAULT_DOMAIN;
       * }</pre>
       *
       * <pre>{@code
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Feb 05 20:47:23 GMT 2024
    - 28K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Multimap.java

     * they return from {@code get} behave like (and, of course, implement) {@link List} and {@link
     * Set}, respectively.
     *
     * <p>For example, the "presidents" code snippet above used a {@code ListMultimap}; if it had used a
     * {@code SetMultimap} instead, two presidents would have vanished, and last names might or might
     * not appear in chronological order.
     *
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Sat Jun 17 14:40:53 GMT 2023
    - 15.1K bytes
    - Viewed (0)
Back to top