func flag.Bool
7 uses
flag (current package)
flag.go#L651: func Bool(name string, value bool, usage string) *bool {
testing
benchmark.go#L27: benchmarkMemory = flag.Bool("test.benchmem", false, "print memory allocations for benchmarks")
fuzz.go#L27: isFuzzWorker = flag.Bool("test.fuzzworker", false, "coordinate with the parent process to fuzz random values (for use only by cmd/go)")
testing.go#L374: short = flag.Bool("test.short", false, "run smaller test suite to save time")
testing.go#L377: failFast = flag.Bool("test.failfast", false, "do not start new tests after the first test failure")
testing.go#L385: chatty = flag.Bool("test.v", false, "verbose: print additional output")
testing.go#L397: panicOnExit0 = flag.Bool("test.paniconexit0", false, "panic on call to os.Exit(0)")