time.Time.After (method)

36 uses

	time (current package)
		time.go#L267: func (t Time) After(u Time) bool {

	compress/gzip
		gzip.go#L157: 		if z.ModTime.After(time.Unix(0, 0)) {

	crypto/tls
		handshake_client.go#L443: 	if c.config.time().After(session.peerCertificates[0].NotAfter) {
		handshake_client.go#L470: 	if c.config.time().After(time.Unix(int64(session.useBy), 0)) {
		handshake_server.go#L513: 	if sessionHasClientCerts && c.config.time().After(sessionState.peerCertificates[0].NotAfter) {
		handshake_server_tls13.go#L407: 		if sessionHasClientCerts && c.config.time().After(sessionState.peerCertificates[0].NotAfter) {

	crypto/x509
		verify.go#L619: 	} else if now.After(c.NotAfter) {

	github.com/robfig/cron/v3
		cron.go#L270: 					if e.Next.After(now) || e.Next.IsZero() {

	go.pact.im/x/clock/fakeclock
		fakeclock.go#L221: 		if !t.After(now) {
		fakeclock.go#L224: 		if t.After(next) {
		fakeclock.go#L235: 		if t.After(now) {

	go.uber.org/zap
		field.go#L348: 	if val.Before(_minTimeInt64) || val.After(_maxTimeInt64) {

	golang.org/x/net/http2
		server.go#L1049: 	if pingAt.After(now) {

	golang.org/x/net/internal/timeseries
		timeseries.go#L178: 	if t.After(ts.lastAdd) {
		timeseries.go#L182: 	if t.After(ts.pendingTime) {
		timeseries.go#L188: 	} else if t.After(ts.pendingTime.Add(-1 * smallBucketDuration)) {
		timeseries.go#L226: 	if !t.After(ts.levels[0].end) {
		timeseries.go#L244: 		for t.After(level.end) {
		timeseries.go#L355: 	if start.After(finish) {
		timeseries.go#L405: 	if dstStart.After(srcStart) {
		timeseries.go#L421: 			if srcEnd.After(ts.lastAdd) {
		timeseries.go#L427: 				if !srcStart.Before(dstStart) && !srcEnd.After(dstEnd) {
		timeseries.go#L447: 				if srcEnd.After(dstEnd) {
		timeseries.go#L521: 	if a.After(b) {

	golang.org/x/net/trace
		events.go#L225: func (els eventLogs) Less(i, j int) bool { return els[i].Start.After(els[j].Start) }
		trace.go#L517: 		if tr.Start.After(trl[n-1].Start) {
		trace.go#L523: 		i := sort.Search(n, func(i int) bool { return trl[i].Start.After(tr.Start) })
		trace.go#L682: func (trl traceList) Less(i, j int) bool { return trl[i].Start.After(trl[j].Start) }

	google.golang.org/grpc/internal/transport
		http2_client.go#L1255: 		if d, ok := s.ctx.Deadline(); ok && !d.After(time.Now()) {
		http2_server.go#L946: 		if t.lastPingAt.Add(defaultPingTimeout).After(now) {
		http2_server.go#L951: 		if t.lastPingAt.Add(t.kep.MinTime).After(now) {

	net
		dnsclient_unix.go#L402: 	if conf.lastChecked.After(now.Add(-5 * time.Second)) {
		interface.go#L211: 	if !force && zc.lastFetched.After(now.Add(-60*time.Second)) {
		nss.go#L59: 	if conf.lastChecked.After(now.Add(-5 * time.Second)) {

	net/http
		client.go#L367: 		return cancelCtx, func() bool { return time.Now().After(deadline) }
		h2_bundle.go#L5129: 	if pingAt.After(now) {