Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for BucketOverflowException (0.28 sec)

  1. 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