Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for rune (0.13 sec)

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

          }
          break;
        }
      }
    
      /**
       * Callback method that is called exactly once after the future is completed.
       *
       * <p>If {@link #interruptTask} is also run during completion, {@link #afterDone} runs after it.
       *
       * <p>The default implementation of this method in {@code AbstractFuture} does nothing. This is
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 22 21:17:24 GMT 2024
    - 63K bytes
    - Viewed (0)
  2. guava-gwt/src-super/com/google/common/util/concurrent/super/com/google/common/util/concurrent/AbstractFuture.java

        final ListenableFuture<? extends V> delegate;
    
        SetFuture(ListenableFuture<? extends V> delegate) {
          this.delegate = delegate;
        }
    
        @Override
        public void run() {
          if (isCancelled()) {
            return;
          }
    
          if (delegate instanceof AbstractFuture) {
            AbstractFuture<? extends V> other = (AbstractFuture<? extends V>) delegate;
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Jan 22 19:37:41 GMT 2024
    - 12.3K bytes
    - Viewed (0)
Back to top