Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for BucketOverflowException (0.65 sec)

  1. 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, @CheckForNull ImmutableMapEntry<?, ?> valueBucketHead)
          throws BucketOverflowException {
        int bucketSize = 0;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/RegularImmutableMap.java

            } else {
              return keyBucketHead;
            }
          }
          if (++bucketSize > MAX_HASH_BUCKET_LENGTH) {
            throw new BucketOverflowException();
          }
        }
        return null;
      }
    
      static class BucketOverflowException extends Exception {}
    
      @Override
      @CheckForNull
      public V get(@CheckForNull Object key) {
        return get(key, table, mask);
      }
    
      @CheckForNull
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 16.2K bytes
    - Viewed (0)
Back to top