const time.Minute
58 uses
time (current package)
format.go#L1365: "m": int64(Minute),
time.go#L606: Minute = 60 * Second
time.go#L607: Hour = 60 * Minute
time.go#L755: min := d / Minute
time.go#L756: nsec := d % Minute
archive/zip
struct.go#L210: offsetAlias = 15 * time.Minute // E.g., Nepal at +5:45
cloud.google.com/go/logging
logging.go#L89: defaultWriteTimeout = 10 * time.Minute
cloud.google.com/go/profiler
profiler.go#L97: initialBackoff = time.Minute
github.com/aws/aws-sdk-go/aws/corehandlers
handlers.go#L77: if signedTime.Add(5 * time.Minute).After(time.Now()) {
github.com/aws/aws-sdk-go/aws/credentials/processcreds
provider.go#L142: DefaultDuration = time.Duration(15) * time.Minute
provider.go#L149: DefaultTimeout = time.Duration(1) * time.Minute
github.com/aws/aws-sdk-go/aws/credentials/stscreds
assume_role_provider.go#L128: var DefaultDuration = time.Duration(15) * time.Minute
github.com/aws/aws-sdk-go/aws/defaults
defaults.go#L190: p.ExpiryWindow = 5 * time.Minute
defaults.go#L205: ExpiryWindow: 5 * time.Minute,
github.com/aws/aws-sdk-go/aws/session
credentials.go#L213: *sharedCfg.AssumeRoleDuration/time.Minute > 15 {
github.com/go-redis/redis/v8
cluster.go#L492: time.AfterFunc(time.Minute, func() {
options.go#L132: KeepAlive: 5 * time.Minute,
options.go#L159: opt.IdleTimeout = 5 * time.Minute
options.go#L162: opt.IdleCheckFrequency = time.Minute
pubsub.go#L18: chanSendTimeout = time.Minute
pubsub.go#L482: timer := time.NewTimer(time.Minute)
pubsub.go#L519: timer := time.NewTimer(time.Minute)
github.com/go-redis/redis_rate/v9
rate.go#L39: case time.Minute:
rate.go#L58: Period: time.Minute,
github.com/jackc/pgconn
config.go#L668: return &net.Dialer{KeepAlive: 5 * time.Minute}
github.com/prometheus/client_golang/prometheus
go_collector.go#L85: msMaxAge: 5 * time.Minute,
summary.go#L69: DefMaxAge time.Duration = 10 * time.Minute
go.opencensus.io/trace
spanbucket.go#L34: 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/pkgsite/cmd/internal/cmdconfig
cmdconfig.go#L59: e, err := middleware.NewExperimenter(ctx, 1*time.Minute, getter, reportingClient)
golang.org/x/pkgsite/cmd/worker
main.go#L147: middleware.Timeout(time.Duration(timeout)*time.Minute),
main.go#L162: return getRedis(ctx, cfg.RedisHAHost, cfg.RedisHAPort, 5*time.Minute, 5*time.Minute)
golang.org/x/pkgsite/internal/config
config.go#L222: const StatementTimeout = 30 * time.Minute
config.go#L226: const SourceTimeout = 1 * time.Minute
config.go#L230: const TaskIDChangeIntervalFrontend = 30 * time.Minute
golang.org/x/pkgsite/internal/dcensus
dcensus.go#L128: view.SetReportingPeriod(time.Minute)
golang.org/x/pkgsite/internal/fetch
fetch.go#L399: const linger = time.Minute
golang.org/x/pkgsite/internal/frontend
server.go#L172: defaultTTL = 10 * time.Minute
server.go#L175: shortTTL = 10 * time.Minute
server.go#L177: longTTL = 10 * time.Minute
server.go#L179: tinyTTL = 1 * time.Minute
unit.go#L148: ctx, cancel := context.WithTimeout(context.Background(), 1*time.Minute)
golang.org/x/pkgsite/internal/localdatasource
datasource.go#L39: sourceClient: source.NewClient(1 * time.Minute),
golang.org/x/pkgsite/internal/postgres
postgres.go#L54: p.Start(ctx, time.Minute)
golang.org/x/pkgsite/internal/proxydatasource
datasource.go#L31: return newDataSource(proxyClient, source.NewClient(1*time.Minute))
golang.org/x/pkgsite/internal/queue
queue.go#L146: const maxCloudTasksTimeout = 30 * time.Minute
queue.go#L254: fetchCtx, cancel := context.WithTimeout(ctx, 5*time.Minute)
google.golang.org/api/idtoken
compute.go#L54: Expiry: time.Now().Add(55 * 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#L1198: timer := time.NewTimer(time.Minute)
http_util.go#L403: return time.Minute, true
net/http
transport.go#L1679: newCtx, cancel := context.WithTimeout(ctx, 1*time.Minute)
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |