Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for repair (0.14 sec)

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

              alternatingKeysAndValues = Arrays.copyOf(alternatingKeysAndValues, 2 * size);
            }
            localAlternatingKeysAndValues = alternatingKeysAndValues;
            if (!throwIfDuplicateKeys) {
              // We want to retain only the last-put value for any given key, before sorting.
              // This could be improved, but orderEntriesByValue is rather rarely used anyway.
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 41.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/ImmutableMap.java

            }
            @SuppressWarnings("nullness") // entries 0..localSize-1 are non-null
            Entry<K, V>[] nonNullEntries = (Entry<K, V>[]) entries;
            if (!throwIfDuplicateKeys) {
              // We want to retain only the last-put value for any given key, before sorting.
              // This could be improved, but orderEntriesByValue is rather rarely used anyway.
              nonNullEntries = lastEntryForEachKey(nonNullEntries, size);
    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)
Back to top