Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Hare (0.18 sec)

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

        return state.isCancelled();
      }
    
      @Override
      public boolean isDone() {
        return state.isDone();
      }
    
      /*
       * ForwardingFluentFuture needs to override those methods, so they are not final.
       */
      @CanIgnoreReturnValue
      @Override
      public V get() throws InterruptedException, ExecutionException {
        state.maybeThrowOnGet(throwable);
        return value;
      }
    
    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)
  2. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

       * nodes. This is an O(n) operation in the common case (and O(n^2) in the worst), but we are saved
       * by two things.
       *
       * <ul>
       *   <li>This is only called when a waiting thread times out or is interrupted. Both of which
       *       should be rare.
       *   <li>The waiters list should be very short.
       * </ul>
       */
      private void removeWaiter(Waiter node) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 22 21:17:24 GMT 2024
    - 63K bytes
    - Viewed (0)
Back to top