Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. android/guava/src/com/google/common/collect/ImmutableSet.java

          switch (size) {
            case 0:
              return of();
            case 1:
              /*
               * requireNonNull is safe because we ensure that the first `size` elements have been
               * populated.
               */
              return (ImmutableSet<E>) of(requireNonNull(contents[0]));
            default:
              ImmutableSet<E> result;
              if (hashTable != null && chooseTableSize(size) == hashTable.length) {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 22.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/ImmutableSet.java

               * requireNonNull is safe because we ensure that the first `distinct` elements have been
               * populated.
               */
              return of(requireNonNull(dedupedElements[0]));
            default:
              /*
               * The suppression is safe because we ensure that the first `distinct` elements have been
               * populated.
               */
              @SuppressWarnings("nullness")
              Object[] elements =
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 35.4K bytes
    - Viewed (0)
Back to top