func flag.Int
6 uses
flag (current package)
flag.go#L675: func Int(name string, value int, usage string) *int {
src.elv.sh/cmd/examples/widget
main.go#L17: maxHeight = flag.Int("max-height", 10, "maximum height")
testing
testing.go#L290: memProfileRate = flag.Int("test.memprofilerate", 0, "set memory allocation profiling `rate` (see runtime.MemProfileRate)")
testing.go#L293: blockProfileRate = flag.Int("test.blockprofilerate", 1, "set blocking profile `rate` (see runtime.SetBlockProfileRate)")
testing.go#L295: mutexProfileFraction = flag.Int("test.mutexprofilefraction", 1, "if >= 0, calls runtime.SetMutexProfileFraction()")
testing.go#L300: parallel = flag.Int("test.parallel", runtime.GOMAXPROCS(0), "run at most `n` tests in parallel")