Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for LargeLazyStriped (0.06 sec)

  1. guava/src/com/google/common/util/concurrent/Striped.java

       */
      @VisibleForTesting
      static final class LargeLazyStriped<L> extends PowerOfTwoStriped<L> {
        final ConcurrentMap<Integer, L> locks;
        final Supplier<L> supplier;
        final int size;
    
        LargeLazyStriped(int stripes, Supplier<L> supplier) {
          super(stripes);
          this.size = (mask == ALL_SET) ? Integer.MAX_VALUE : mask + 1;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 20.6K bytes
    - Viewed (0)
Back to top