func flag.String

16 uses

	flag (current package)
		flag.go#L781: 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#L383: 	outputDir = flag.String("test.outputdir", "", "write profiles to `dir`")
		testing.go#L387: 	coverProfile = flag.String("test.coverprofile", "", "write a coverage profile to `file`")
		testing.go#L388: 	matchList = flag.String("test.list", "", "list tests, examples, and benchmarks matching `regexp` then exit")
		testing.go#L389: 	match = flag.String("test.run", "", "run only tests and examples matching `regexp`")
		testing.go#L390: 	memProfile = flag.String("test.memprofile", "", "write an allocation profile to `file`")
		testing.go#L392: 	cpuProfile = flag.String("test.cpuprofile", "", "write a cpu profile to `file`")
		testing.go#L393: 	blockProfile = flag.String("test.blockprofile", "", "write a goroutine blocking profile to `file`")
		testing.go#L395: 	mutexProfile = flag.String("test.mutexprofile", "", "write a mutex contention profile to the named file after execution")
		testing.go#L398: 	traceFile = flag.String("test.trace", "", "write an execution trace to `file`")
		testing.go#L400: 	cpuListStr = flag.String("test.cpu", "", "comma-separated `list` of cpu counts to run each test with")
		testing.go#L402: 	testlog = flag.String("test.testlogfile", "", "write test action log to `file` (for use only by cmd/go)")
		testing.go#L403: 	shuffle = flag.String("test.shuffle", "off", "randomize the execution order of tests and benchmarks")