Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getFromAlreadyDoneTrustedFuture (0.82 seconds)

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

          throws InterruptedException, ExecutionException {
        return future.getFromAlreadyDoneTrustedFuture();
      }
    
      static <V extends @Nullable Object> V get(AbstractFuture<V> future, long timeout, TimeUnit unit)
          throws InterruptedException, ExecutionException, TimeoutException {
        checkNotNull(unit);
        return future.getFromAlreadyDoneTrustedFuture();
      }
    
      private Platform() {}
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Feb 27 16:15:49 GMT 2025
    - 2K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

      /*
       * TODO: b/112550045 - Use this from Futures.getDone when applicable? Note the small difference in
       * failure message between the two at present.
       */
      final V getFromAlreadyDoneTrustedFuture() throws ExecutionException {
        @RetainedLocalRef Object localValue = value();
        if (localValue == null | localValue instanceof DelegatingToFuture) {
    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)
Back to Top