- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for testSetFutureToString_stackOverflow (0.14 sec)
-
android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java
// Verify that StackOverflowError in a long chain of SetFuture doesn't cause the entire toString // call to fail @J2ktIncompatible @GwtIncompatible @AndroidIncompatible public void testSetFutureToString_stackOverflow() { SettableFuture<String> orig = SettableFuture.create(); SettableFuture<String> prev = orig; for (int i = 0; i < 100000; i++) { SettableFuture<String> curr = SettableFuture.create();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 22:10:29 UTC 2024 - 47.1K bytes - Viewed (0)