- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for LongAddables (0.12 sec)
-
guava/src/com/google/common/cache/LongAddables.java
* * @author Louis Wasserman */ @GwtCompatible final class LongAddables { public static LongAddable create() { return new JavaUtilConcurrentLongAdder(); } private static final class JavaUtilConcurrentLongAdder extends LongAdder implements LongAddable {} private LongAddables() {}
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Aug 10 19:54:19 UTC 2025 - 1.1K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/LongAddables.java
import java.util.concurrent.atomic.AtomicLong; /** * Source of {@link LongAddable} objects that deals with GWT, Unsafe, and all that. * * @author Louis Wasserman */ @GwtCompatible final class LongAddables { private static final Supplier<LongAddable> SUPPLIER; static { Supplier<LongAddable> supplier; try { // trigger static initialization of the LongAdder class, which may fail
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Aug 10 19:54:19 UTC 2025 - 2K bytes - Viewed (0)