func flag.String

18 uses

	flag (current package)
		flag.go#L898: func String(name string, value string, usage string) *string {

	testing
		benchmark.go#L26: 	matchBenchmarks = flag.String("test.bench", "", "run only benchmarks matching `regexp`")
		fuzz.go#L22: 	matchFuzz = flag.String("test.fuzz", "", "run the fuzz test matching `regexp`")
		fuzz.go#L26: 	fuzzCacheDir = flag.String("test.fuzzcachedir", "", "directory where interesting fuzzing inputs are stored (for use only by cmd/go)")
		testing.go#L452: 	outputDir = flag.String("test.outputdir", "", "write profiles to `dir`")
		testing.go#L456: 	coverProfile = flag.String("test.coverprofile", "", "write a coverage profile to `file`")
		testing.go#L457: 	gocoverdir = flag.String("test.gocoverdir", "", "write coverage intermediate files to this directory")
		testing.go#L458: 	matchList = flag.String("test.list", "", "list tests, examples, and benchmarks matching `regexp` then exit")
		testing.go#L459: 	match = flag.String("test.run", "", "run only tests and examples matching `regexp`")
		testing.go#L460: 	skip = flag.String("test.skip", "", "do not list or run tests matching `regexp`")
		testing.go#L461: 	memProfile = flag.String("test.memprofile", "", "write an allocation profile to `file`")
		testing.go#L463: 	cpuProfile = flag.String("test.cpuprofile", "", "write a cpu profile to `file`")
		testing.go#L464: 	blockProfile = flag.String("test.blockprofile", "", "write a goroutine blocking profile to `file`")
		testing.go#L466: 	mutexProfile = flag.String("test.mutexprofile", "", "write a mutex contention profile to the named file after execution")
		testing.go#L469: 	traceFile = flag.String("test.trace", "", "write an execution trace to `file`")
		testing.go#L471: 	cpuListStr = flag.String("test.cpu", "", "comma-separated `list` of cpu counts to run each test with")
		testing.go#L473: 	testlog = flag.String("test.testlogfile", "", "write test action log to `file` (for use only by cmd/go)")
		testing.go#L474: 	shuffle = flag.String("test.shuffle", "off", "randomize the execution order of tests and benchmarks")