Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

          // and unpacking the exceptions like we do below (just much faster because it is a single
          // field read instead of a read, several branches and possibly creating exceptions).
          Object v = ((AbstractFuture<?>) future).value;
          if (v instanceof Cancellation) {
            // If the other future was interrupted, clear the interrupted bit while preserving the cause
    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

      }
    
      private void notifyAndClearListeners() {
        afterDone();
        // TODO(lukes): consider adding the StackOverflowError protection from the server version
        // TODO(cpovirk): consider clearing this.delegate
        for (Listener listener : listeners) {
          listener.execute();
        }
        listeners = null;
      }
    
      protected void afterDone() {}
    
      @Override
    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