- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for AggregateFutureState (0.09 sec)
-
android/guava/src/com/google/common/util/concurrent/AggregateFutureState.java
/** Performs an atomic compare-and-set of {@link AggregateFutureState#seenExceptionsField}. */ abstract void compareAndSetSeenExceptions( AggregateFutureState<?> state, @Nullable Set<Throwable> expect, Set<Throwable> update); /** Performs an atomic decrement-and-get of {@link AggregateFutureState#remainingField}. */ abstract int decrementAndGetRemainingCount(AggregateFutureState<?> state);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 8.5K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/AbstractFutureState.java
* the case of the Samsung bug, and we do that by breaking AtomicReferenceFieldUpdater. * Breaking AtomicReferenceFieldUpdater not only forces AggregateFutureState to fall back to * another implementation but also forces AbstractFutureState to be able to do the * same—hence the try-catch here. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 33.2K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/AbstractFutureState.java
* since Android should normally succed in using UnsafeAtomicHelper and thus never even try the * problematic AtomicReferenceFieldUpdaterAtomicHelper code path. However, the same problem *does* * matter with AggregateFutureState, which does not have an Unsafe-based helper. * * This same problem is one of the reasons for us to likewise use package-private for the fields * in Waiter. */ /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 34.8K bytes - Viewed (0)