- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for testSetFuture_stackOverflow (0.11 sec)
-
android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java
} // In a previous implementation this would cause a stack overflow after ~2000 futures chained // together. Now it should only be limited by available memory (and time) public void testSetFuture_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)