Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Futures (0.74 sec)

  1. guava-gwt/src-super/com/google/common/util/concurrent/super/com/google/common/util/concurrent/AbstractFuture.java

      @CanIgnoreReturnValue
      protected boolean setFuture(ListenableFuture<? extends V> future) {
        checkNotNull(future);
    
        // If this future is already cancelled, cancel the delegate.
        // TODO(cpovirk): Should we do this at the end of the method, as in the server version?
        // TODO(cpovirk): Use maybePropagateCancellationTo?
        if (isCancelled()) {
          future.cancel(mayInterruptIfRunning);
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 19:37:41 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

              future = setFuture.owner;
              if (future.value == setFuture) {
                Object valueToSet = getFutureValue(setFuture.future);
                if (ATOMIC_HELPER.casValue(future, setFuture, valueToSet)) {
                  continue outer;
                }
              }
              // otherwise the future we were trying to set is already done.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/AbstractFuture.java

              future = setFuture.owner;
              if (future.value == setFuture) {
                Object valueToSet = getFutureValue(setFuture.future);
                if (ATOMIC_HELPER.casValue(future, setFuture, valueToSet)) {
                  continue outer;
                }
              }
              // otherwise the future we were trying to set is already done.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (0)
Back to top