Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for trySetStarted (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

        AsyncCallable<T> task =
            new AsyncCallable<T>() {
              @Override
              public ListenableFuture<T> call() throws Exception {
                if (!taskExecutor.trySetStarted()) {
                  return immediateCancelledFuture();
                }
                return callable.call();
              }
    
              @Override
              public String toString() {
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Tue Sep 23 01:35:55 GMT 2025
    - 22.1K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

        AsyncCallable<T> task =
            new AsyncCallable<T>() {
              @Override
              public ListenableFuture<T> call() throws Exception {
                if (!taskExecutor.trySetStarted()) {
                  return immediateCancelledFuture();
                }
                return callable.call();
              }
    
              @Override
              public String toString() {
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Tue Sep 23 01:35:55 GMT 2025
    - 22.1K bytes
    - Click Count (0)
Back to Top