Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for Innermost (0.09 sec)

  1. guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

        for (int i = 0; i < 100000; i++) {
          SettableFuture<String> curr = SettableFuture.create();
          prev.setFuture(curr);
          prev = curr;
        }
        // prev represents the 'innermost' future
        prev.set("done");
        assertTrue(orig.isDone());
      }
    
      // Verify that StackOverflowError in a long chain of SetFuture doesn't cause the entire toString
      // call to fail
      @J2ktIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  2. src/runtime/stack.go

    func isShrinkStackSafe(gp *g) bool {
    	// We can't copy the stack if we're in a syscall.
    	// The syscall might have pointers into the stack and
    	// often we don't have precise pointer maps for the innermost
    	// frames.
    	if gp.syscallsp != 0 {
    		return false
    	}
    	// We also can't copy the stack if we're at an asynchronous
    	// safe-point because we don't have precise pointer maps for
    	// all frames.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
Back to top