Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for setResults (0.15 sec)

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

        } catch (Throwable t) {
          restoreInterruptIfIsInterruptedException(t);
          setException(t);
          return;
        } finally {
          exceptionType = null;
          fallback = null;
        }
    
        setResult(fallbackResult);
      }
    
      @Override
      @CheckForNull
      protected String pendingToString() {
        ListenableFuture<? extends V> localInputFuture = inputFuture;
        Class<X> localExceptionType = exceptionType;
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 01 21:46:34 GMT 2024
    - 8.7K bytes
    - Viewed (0)
Back to top