Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for hasParallelism (0.13 sec)

  1. src/internal/testenv/testenv.go

    	if !HasGoRun() {
    		t.Skipf("skipping test: 'go run' not available on %s/%s", runtime.GOOS, runtime.GOARCH)
    	}
    }
    
    // HasParallelism reports whether the current system can execute multiple
    // threads in parallel.
    // There is a copy of this function in cmd/dist/test.go.
    func HasParallelism() bool {
    	switch runtime.GOOS {
    	case "js", "wasip1":
    		return false
    	}
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. src/cmd/dist/test.go

    	switch gohostos {
    	case "windows", "plan9":
    		return false
    	}
    	return true
    }
    
    // hasParallelism is a copy of the function
    // internal/testenv.HasParallelism, which can't be used here
    // because cmd/dist can not import internal packages during bootstrap.
    func (t *tester) hasParallelism() bool {
    	switch goos {
    	case "js", "wasip1":
    		return false
    	}
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top