- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for decrementRemainingAndGet (0.13 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
guava-gwt/src-super/com/google/common/util/concurrent/super/com/google/common/util/concurrent/AggregateFutureState.java
seenExceptions = newHashSet(); addInitialException(seenExceptions); } return seenExceptions; } abstract void addInitialException(Set<Throwable> seen); final int decrementRemainingAndGet() { return --remaining; } final void clearSeenExceptions() { seenExceptions = null; }
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 1.7K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/AggregateFutureState.java
return seenExceptionsLocal; } /** Populates {@code seen} with the exception that was passed to {@code setException}. */ abstract void addInitialException(Set<Throwable> seen); final int decrementRemainingAndGet() { return ATOMIC_HELPER.decrementAndGetRemainingCount(this); } final void clearSeenExceptions() { seenExceptionsField = null; } @VisibleForTestingCreated: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 8.5K bytes - Click Count (0)