Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for lastEntryForEachKey (0.09 sec)

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

              // This could be improved, but orderEntriesByValue is rather rarely used anyway.
              Entry<K, V>[] lastEntryForEachKey = lastEntryForEachKey(nonNullEntries, size);
              if (lastEntryForEachKey != null) {
                nonNullEntries = lastEntryForEachKey;
                localSize = lastEntryForEachKey.length;
              }
            }
            sort(
                nonNullEntries,
                0,
                localSize,
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 44.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ImmutableMap.java

              // 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.
              localAlternatingKeysAndValues = lastEntryForEachKey(localAlternatingKeysAndValues, size);
              if (localAlternatingKeysAndValues.length < alternatingKeysAndValues.length) {
                localSize = localAlternatingKeysAndValues.length >>> 1;
              }
            }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 41.2K bytes
    - Viewed (0)
Back to top