Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for SmallLazyStriped (0.18 sec)

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

       */
      @VisibleForTesting
      static class SmallLazyStriped<L> extends PowerOfTwoStriped<L> {
        final AtomicReferenceArray<@Nullable ArrayReference<? extends L>> locks;
        final Supplier<L> supplier;
        final int size;
        final ReferenceQueue<L> queue = new ReferenceQueue<>();
    
        SmallLazyStriped(int stripes, Supplier<L> supplier) {
          super(stripes);
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 10 20:55:18 GMT 2023
    - 20.3K bytes
    - Viewed (1)
Back to top