time.Time.Round (method)

6 uses

	time (current package)
		time.go#L1480: func (t Time) Round(d Duration) Time {

	github.com/aws/aws-sdk-go-v2/aws
		credentials.go#L101: 		return !v.Expires.After(sdk.NowTime().Round(0))

	github.com/aws/smithy-go/auth/bearer
		token.go#L22: 	now = now.Round(0)

	golang.org/x/net/http2
		transport.go#L991: 	return cc.idleTimeout != 0 && !cc.lastIdle.IsZero() && time.Since(cc.lastIdle.Round(0)) > cc.idleTimeout

	net/http
		h2_bundle.go#L7611: 	return cc.idleTimeout != 0 && !cc.lastIdle.IsZero() && time.Since(cc.lastIdle.Round(0)) > cc.idleTimeout
		transport.go#L1042: 			tooOld := !oldTime.IsZero() && pconn.idleAt.Round(0).Before(oldTime)