Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for pendingToString (0.05 sec)

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

          }
        }
    
        this.task = null;
      }
    
      @Override
      protected @Nullable String pendingToString() {
        InterruptibleTask<?> localTask = task;
        if (localTask != null) {
          return "task=[" + localTask + "]";
        }
        return super.pendingToString();
      }
    
      @WeakOuter
      private final class TrustedFutureInterruptibleTask extends InterruptibleTask<V> {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jul 11 18:52:30 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/TimeoutFuture.java

          setStackTrace(new StackTraceElement[0]);
          return this; // no stack trace, wouldn't be useful anyway
        }
      }
    
      @Override
      protected @Nullable String pendingToString() {
        @RetainedLocalRef ListenableFuture<? extends V> localInputFuture = delegateRef;
        @RetainedLocalRef ScheduledFuture<?> localTimer = timer;
        if (localInputFuture != null) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top