- Sort Score
- Result 10 results
- Languages All
Results 1 - 8 of 8 for pendingToString (0.28 sec)
-
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) -
guava/src/com/google/common/util/concurrent/AbstractTransformFuture.java
this.inputFuture = null; this.function = null; } @Override protected @Nullable String pendingToString() { @RetainedLocalRef ListenableFuture<? extends I> localInputFuture = inputFuture; @RetainedLocalRef F localFunction = function; String superString = super.pendingToString(); String resultString = ""; if (localInputFuture != null) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 20 18:03:37 UTC 2025 - 10.8K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/AbstractTransformFuture.java
this.inputFuture = null; this.function = null; } @Override protected @Nullable String pendingToString() { @RetainedLocalRef ListenableFuture<? extends I> localInputFuture = inputFuture; @RetainedLocalRef F localFunction = function; String superString = super.pendingToString(); String resultString = ""; if (localInputFuture != null) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 20 18:03:37 UTC 2025 - 10.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java
} public void testToString_notDone() throws Exception { AbstractFuture<Object> testFuture = new AbstractFuture<Object>() { @Override public String pendingToString() { return "cause=[Because this test isn't done]"; } }; assertThat(testFuture.toString()) .matches(
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 11 18:52:30 UTC 2025 - 46.8K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/AggregateFuture.java
* again if some outstanding input fails. */ } @Override protected final @Nullable String pendingToString() { @RetainedLocalRef ImmutableCollection<? extends Future<?>> localFutures = futures; if (localFutures != null) { return "futures=" + localFutures; } return super.pendingToString(); } /** * Must be called at the end of each subclass's constructor. This method performs the "real"
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 16K bytes - Viewed (0) -
guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java
} public void testToString_notDone() throws Exception { AbstractFuture<Object> testFuture = new AbstractFuture<Object>() { @Override public String pendingToString() { return "cause=[Because this test isn't done]"; } }; assertThat(testFuture.toString()) .matches(
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 11 18:52:30 UTC 2025 - 46.8K bytes - Viewed (0) -
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) -
android/guava/src/com/google/common/util/concurrent/Futures.java
@RetainedLocalRef ListenableFuture<V> localDelegate = delegate; if (localDelegate != null) { setFuture(localDelegate); } } @Override protected @Nullable String pendingToString() { @RetainedLocalRef ListenableFuture<V> localDelegate = delegate; if (localDelegate != null) { return "delegate=[" + localDelegate + "]"; } return null; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 64.3K bytes - Viewed (0)