Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for pendingToString (0.19 sec)

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

          ListenableFuture<V> localDelegate = delegate;
          if (localDelegate != null) {
            setFuture(localDelegate);
          }
        }
    
        @Override
        @CheckForNull
        protected String pendingToString() {
          ListenableFuture<V> localDelegate = delegate;
          if (localDelegate != null) {
            return "delegate=[" + localDelegate + "]";
          }
          return null;
        }
    
        @Override
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 59.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/MoreExecutors.java

              // Any Exception is either a RuntimeException or sneaky checked exception.
              setException(t);
              throw t;
            }
          }
    
          @Override
          protected String pendingToString() {
            return "task=[" + delegate + "]";
          }
        }
      }
    
      /*
       * This following method is a modified version of one found in
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 17 16:33:44 GMT 2024
    - 41.8K bytes
    - Viewed (0)
Back to top