time.Timer.Reset (method)

13 uses

	time (current package)
		sleep.go#L134: func (t *Timer) Reset(d Duration) bool {

	github.com/cenkalti/backoff/v4
		timer.go#L26: 		t.timer.Reset(duration)

	github.com/gotd/td/clock
		system.go#L14: 	s.timer.Reset(d)

	net
		dial.go#L579: 				fallbackTimer.Reset(0)

	net/http
		h2_bundle.go#L5466: 			sc.idleTimer.Reset(sc.srv.IdleTimeout)
		h2_bundle.go#L6611: 			st.readDeadline.Reset(deadline.Sub(time.Now()))
		h2_bundle.go#L6637: 			st.writeDeadline.Reset(deadline.Sub(time.Now()))
		h2_bundle.go#L9205: 		cc.idleTimer.Reset(cc.idleTimeout)
		h2_bundle.go#L9341: 			t.Reset(readIdleTimeout)
		server.go#L2819: 			timer.Reset(nextPollInterval())
		transport.go#L1009: 			pconn.idleTimer.Reset(t.IdleConnTimeout)

	nhooyr.io/websocket
		netconn.go#L217: 		nc.writeTimer.Reset(dur)
		netconn.go#L231: 		nc.readTimer.Reset(dur)