const time.Minute

27 uses

	time (current package)
		format.go#L1502: 	"m":  uint64(Minute),
		time.go#L612: 	Minute               = 60 * Second
		time.go#L613: 	Hour                 = 60 * Minute
		time.go#L761: 	min := d / Minute
		time.go#L762: 	nsec := d % Minute

	github.com/aws/aws-sdk-go-v2/service/s3/internal/customizations
		presigned_expires.go#L35: 		m.Expires = 15 * time.Minute

	github.com/go-pg/pg/v10
		listener.go#L273: 	const chanSendTimeout = time.Minute
		listener.go#L282: 		timer := time.NewTimer(time.Minute)
		listener.go#L333: 		timer := time.NewTimer(time.Minute)
		options.go#L118: 				KeepAlive: 5 * time.Minute,
		options.go#L145: 		opt.IdleTimeout = 5 * time.Minute
		options.go#L148: 		opt.IdleCheckFrequency = time.Minute

	github.com/robfig/cron/v3
		chain.go#L68: 			if dur := time.Since(start); dur > time.Minute {
		spec.go#L153: 			t = t.Truncate(time.Minute)
		spec.go#L155: 		t = t.Add(1 * time.Minute)

	go.pact.im/x/supervisor
		restart.go#L12: 	restartLoopInterval = time.Minute

	golang.org/x/net/internal/timeseries
		timeseries.go#L22: 	1 * time.Minute,
		timeseries.go#L23: 	10 * time.Minute,
		timeseries.go#L34: 	1 * time.Minute,

	golang.org/x/net/trace
		events.go#L34: 	{1 * time.Minute, "errs<1m"},
		events.go#L35: 	{10 * time.Minute, "errs<10m"},

	golang.org/x/tools/internal/gocommand
		invoke.go#L260: 		case <-time.After(1 * time.Minute):

	google.golang.org/grpc/internal/grpcutil
		encode_duration.go#L58: 	if d := div(t, time.Minute); d <= maxTimeoutValue {

	google.golang.org/grpc/internal/transport
		defaults.go#L40: 	defaultKeepalivePolicyMinTime = 5 * time.Minute
		http2_server.go#L1369: 		timer := time.NewTimer(time.Minute)
		http_util.go#L185: 		return time.Minute, true

	net/http
		transport.go#L1686: 			newCtx, cancel := context.WithTimeout(ctx, 1*time.Minute)