func math/rand.Intn

5 uses

	math/rand (current package)
		rand.go#L337: func Intn(n int) int { return globalRand.Intn(n) }

	github.com/go-x-pkg/namesgenerator
		namesgenerator.go#L838: 	name := fmt.Sprintf("%s-%s", left[rand.Intn(len(left))], right[rand.Intn(len(right))])
		namesgenerator.go#L844: 		name = fmt.Sprintf("%s%d", name, rand.Intn(10))

	net/http
		server.go#L2760: 		interval := pollIntervalBase + time.Duration(rand.Intn(int(pollIntervalBase/10)))