- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for BucketOverflowException (0.09 sec)
-
guava/src/com/google/common/collect/RegularImmutableMap.java
return keyBucketHead; } } if (++bucketSize > MAX_HASH_BUCKET_LENGTH) { throw new BucketOverflowException(); } } return null; } static final class BucketOverflowException extends Exception {} @Override public @Nullable V get(@Nullable Object key) { return get(key, table, mask); } static <V> @Nullable V get(
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 15.8K bytes - Viewed (0) -
guava/src/com/google/common/collect/RegularImmutableBiMap.java
* @throws BucketOverflowException if this bucket has too many entries, which may indicate a hash * flooding attack */ private static void checkNoConflictInValueBucket( Object value, Entry<?, ?> entry, @Nullable ImmutableMapEntry<?, ?> valueBucketHead) throws BucketOverflowException { int bucketSize = 0;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 11.1K bytes - Viewed (0)