func time.NewTimer

41 uses

	time (current package)
		sleep.go#L86: func NewTimer(d Duration) *Timer {
		sleep.go#L161: 	return NewTimer(d).C

	cloud.google.com/go/compute/metadata
		metadata.go#L162: 		timer := time.NewTimer(5 * time.Second)

	database/sql
		sql.go#L1002: 	t := time.NewTimer(d)

	github.com/aws/aws-sdk-go/aws
		context_sleep.go#L13: 	t := time.NewTimer(dur)

	github.com/aws/aws-sdk-go/aws/request
		timeout_read_closer.go#L32: 	timer := time.NewTimer(r.duration)

	github.com/go-redis/redis/v8
		pubsub.go#L482: 		timer := time.NewTimer(time.Minute)
		pubsub.go#L519: 		timer := time.NewTimer(time.Minute)
		pubsub.go#L577: 		timer := time.NewTimer(pingTimeout)

	github.com/go-redis/redis/v8/internal
		util.go#L15: 		t := time.NewTimer(dur)

	github.com/go-redis/redis/v8/internal/pool
		pool.go#L21: 		t := time.NewTimer(time.Hour)

	github.com/googleapis/gax-go/v2
		invoke.go#L54: 	t := time.NewTimer(d)

	github.com/prometheus/client_golang/prometheus
		go_collector.go#L332: 	timer := time.NewTimer(c.msMaxWait)

	golang.org/x/net/http2
		server.go#L973: 	timer := time.NewTimer(prefaceTimeout) // TODO: configurable on *Server?
		transport.go#L1127: 			timer := time.NewTimer(d)
		transport.go#L1216: 				timer := time.NewTimer(d)

	google.golang.org/grpc
		clientconn.go#L1142: 			timer := time.NewTimer(backoffFor)
		resolver_conn_wrapper.go#L118: 			t := time.NewTimer(ccr.cc.dopts.resolveNowBackoff(i))
		server.go#L736: 				timer := time.NewTimer(tempDelay)
		stream.go#L572: 	t := time.NewTimer(dur)

	google.golang.org/grpc/balancer/grpclb
		grpclb.go#L372: 	timer := time.NewTimer(fallbackTimeout)
		grpclb_remote_balancer.go#L400: 		timer := time.NewTimer(ccw.backoff.Backoff(retryCount)) // Copy backoff

	google.golang.org/grpc/internal/resolver/dns
		dns_resolver.go#L220: 		t := time.NewTimer(minDNSResRate)

	google.golang.org/grpc/internal/transport
		http2_client.go#L1360: 	timer := time.NewTimer(t.kp.Time)
		http2_client.go#L1474: 	timer := time.NewTimer(time.Second)
		http2_server.go#L966: 	idleTimer := time.NewTimer(t.kp.MaxConnectionIdle)
		http2_server.go#L967: 	ageTimer := time.NewTimer(t.kp.MaxConnectionAge)
		http2_server.go#L968: 	kpTimer := time.NewTimer(t.kp.Time)
		http2_server.go#L1198: 		timer := time.NewTimer(time.Minute)
		http2_server.go#L1247: 	timer := time.NewTimer(time.Second)

	net
		dial.go#L486: 	fallbackTimer := time.NewTimer(sd.fallbackDelay())

	net/http
		client.go#L393: 	timer := time.NewTimer(time.Until(deadline))
		h2_bundle.go#L4544: 	timer := time.NewTimer(http2prefaceTimeout) // TODO: configurable on *Server?
		h2_bundle.go#L7630: 			timer := time.NewTimer(d)
		h2_bundle.go#L7719: 				timer := time.NewTimer(d)
		server.go#L2753: 	timer := time.NewTimer(nextPollInterval())
		transfer.go#L215: 	timer := time.NewTimer(200 * time.Millisecond)
		transport.go#L2327: 		timer := time.NewTimer(pc.t.ExpectContinueTimeout)
		transport.go#L2441: 		t := time.NewTimer(maxWriteWaitBeforeConnReuse)
		transport.go#L2623: 				timer := time.NewTimer(d)

	net/http/httptest
		server.go#L279: 	timer := time.NewTimer(5 * time.Second)