Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getFutureValue (0.22 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

            return;
          }
          Object valueToSet = getFutureValue(future);
          if (casValue(owner, this, valueToSet)) {
            complete(
                owner,
                /*
                 * Interruption doesn't propagate through a DelegatingToFuture chain (see
                 * getFutureValue), so don't invoke interruptTask.
                 */
                false);
          }
        }
      }
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sat Mar 07 14:39:00 GMT 2026
    - 43.6K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/util/concurrent/AbstractTransformFuture.java

         */
        I sourceResult;
        try {
          sourceResult = getDone(localInputFuture);
        } catch (CancellationException e) {
          // TODO(user): verify future behavior - unify logic with getFutureValue in AbstractFuture. This
          // code should be unreachable with correctly implemented Futures.
          // Cancel this future and return.
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Feb 20 18:03:37 GMT 2025
    - 10.8K bytes
    - Click Count (0)
Back to Top