Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Salinas (0.21 sec)

  1. guava/src/com/google/common/collect/ImmutableMap.java

              Entry<K, V> onlyEntry = requireNonNull(entries[0]);
              return of(onlyEntry.getKey(), onlyEntry.getValue());
            default:
              break;
          }
          // localEntries is an alias for the entries field, except if we end up removing duplicates in
          // a copy of the entries array. Likewise, localSize is the same as size except in that case.
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 44.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ImmutableMap.java

           * affect the original array), and future build() calls will always copy any entry
           * objects that cannot be safely reused.
           */
          // localAlternatingKeysAndValues is an alias for the alternatingKeysAndValues field, except if
          // we end up removing duplicates in a copy of the array.
          @Nullable Object[] localAlternatingKeysAndValues;
          int localSize = size;
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 41.4K bytes
    - Viewed (0)
Back to top