func flag.String
13 uses
flag (current package)
flag.go#L779: func String(name string, value string, usage string) *string {
testing
benchmark.go#L26: matchBenchmarks = flag.String("test.bench", "", "run only benchmarks matching `regexp`")
testing.go#L282: outputDir = flag.String("test.outputdir", "", "write profiles to `dir`")
testing.go#L286: coverProfile = flag.String("test.coverprofile", "", "write a coverage profile to `file`")
testing.go#L287: matchList = flag.String("test.list", "", "list tests, examples, and benchmarks matching `regexp` then exit")
testing.go#L288: match = flag.String("test.run", "", "run only tests and examples matching `regexp`")
testing.go#L289: memProfile = flag.String("test.memprofile", "", "write an allocation profile to `file`")
testing.go#L291: cpuProfile = flag.String("test.cpuprofile", "", "write a cpu profile to `file`")
testing.go#L292: blockProfile = flag.String("test.blockprofile", "", "write a goroutine blocking profile to `file`")
testing.go#L294: mutexProfile = flag.String("test.mutexprofile", "", "write a mutex contention profile to the named file after execution")
testing.go#L297: traceFile = flag.String("test.trace", "", "write an execution trace to `file`")
testing.go#L299: cpuListStr = flag.String("test.cpu", "", "comma-separated `list` of cpu counts to run each test with")
testing.go#L301: testlog = flag.String("test.testlogfile", "", "write test action log to `file` (for use only by cmd/go)")