Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for rebuildHashTable (0.13 seconds)

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

          if (hashTable == null) {
            return this;
          }
          int targetTableSize = chooseTableSize(distinct);
          if (targetTableSize * 2 < hashTable.length) {
            hashTable = rebuildHashTable(targetTableSize, dedupedElements, distinct);
            maxRunBeforeFallback = maxRunBeforeFallback(targetTableSize);
            expandTableThreshold = (int) (DESIRED_LOAD_FACTOR * targetTableSize);
          }
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Fri Nov 07 16:09:47 GMT 2025
    - 35.3K bytes
    - Click Count (0)
Back to Top