Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for createHashTableOrThrow (0.07 sec)

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

        this.size = size;
        this.keyOffset = 0;
        int tableSize = (size >= 2) ? ImmutableSet.chooseTableSize(size) : 0;
        this.keyHashTable = createHashTableOrThrow(alternatingKeysAndValues, size, tableSize, 0);
        Object valueHashTable = createHashTableOrThrow(alternatingKeysAndValues, size, tableSize, 1);
        this.inverse =
            new RegularImmutableBiMap<>(valueHashTable, alternatingKeysAndValues, size, this);
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/RegularImmutableMap.java

            }
            outI++;
          }
          return outI == n ? hashTable : new Object[] {hashTable, outI, duplicateKey};
        }
      }
    
      static @Nullable Object createHashTableOrThrow(
          @Nullable Object[] alternatingKeysAndValues, int n, int tableSize, int keyOffset) {
        Object hashTablePlus = createHashTable(alternatingKeysAndValues, n, tableSize, keyOffset);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 22.5K bytes
    - Viewed (0)
Back to top