Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for instance (0.14 sec)

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

                   * TODO(cpovirk): Maybe it would be cleaner to define a CancellationSupplier interface
                   * with two implementations, one that contains causeless Cancellation instances and
                   * the other of which creates new Cancellation instances each time it's called? Yet
                   * another alternative is to fill in a non-null value for each of the fields no matter
    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

          listener.execute();
        }
        listeners = null;
      }
    
      protected void afterDone() {}
    
      @Override
      protected final Throwable tryInternalFastPathGetFailure() {
        if (this instanceof Trusted) {
          return state == State.FAILURE ? throwable : null;
        }
        return null;
      }
    
      final void maybePropagateCancellationTo(@Nullable Future<?> related) {
    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