Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestTryAdd (0.1 sec)

  1. src/runtime/pprof/pprof_test.go

    		}()
    	}
    
    	N := 10000
    	if testing.Short() {
    		N = 500
    	}
    	buf := make([]byte, 10*1024)
    	for i := 0; i < N; i++ {
    		runtime.Stack(buf, true)
    	}
    }
    
    // TestTryAdd tests the cases that are hard to test with real program execution.
    //
    // For example, the current go compilers may not always inline functions
    // involved in recursion but that may not be true in the future compilers. This
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
Back to top