func runtime.GOMAXPROCS

10 uses

	runtime (current package)
		debug.go#L16: func GOMAXPROCS(n int) int {

	sync
		pool.go#L226: 	size := runtime.GOMAXPROCS(0)

	testing
		allocs.go#L21: 	defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(1))
		benchmark.go#L567: 			runtime.GOMAXPROCS(procs)
		benchmark.go#L611: 			if p := runtime.GOMAXPROCS(-1); p != procs {
		benchmark.go#L777: 	numProcs := b.parallelism * runtime.GOMAXPROCS(0)
		testing.go#L401: 	parallel = flag.Int("test.parallel", runtime.GOMAXPROCS(0), "run at most `n` tests in parallel")
		testing.go#L1813: 		runtime.GOMAXPROCS(procs)
		testing.go#L2055: 		cpuList = append(cpuList, runtime.GOMAXPROCS(-1))