time.Time.After (method)

42 uses

	time (current package)
		time.go#L241: 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#L282: 		if c.config.time().After(serverCert.NotAfter) {
		handshake_client.go#L304: 	if c.config.time().After(session.useBy) {

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

	github.com/aws/aws-sdk-go/aws/corehandlers
		handlers.go#L77: 		if signedTime.Add(5 * time.Minute).After(time.Now()) {

	github.com/emirpasic/gods/utils
		comparator.go#L244: 	case aAsserted.After(bAsserted):

	github.com/go-git/go-git/v5/plumbing/object
		commit_walker_limit.go#L37: 		if c.limitOptions.Until != nil && commit.Committer.When.After(*c.limitOptions.Until) {
		merge_base.go#L152: 		return sorted[i].Committer.When.After(sorted[j].Committer.When)

	github.com/google/go-cmp/cmp/cmpopts
		equate.go#L116: 	if x.After(y) {

	github.com/lib/pq
		encode.go#L465: 		if !t.After(infinityTsNegative) {

	github.com/prometheus/client_golang/prometheus
		summary.go#L281: 	if now.After(s.hotBufExpTime) {
		summary.go#L380: 	for now.After(s.hotBufExpTime) {

	github.com/prometheus/common/model
		alert.go#L73: 	return !a.EndsAt.After(ts)

	github.com/sergi/go-diff/diffmatchpatch
		diff.go#L288: 		if !deadline.IsZero() && d%16 == 0 && time.Now().After(deadline) {

	golang.org/x/crypto/openpgp
		keys.go#L101: 			(maxTime.IsZero() || subkey.Sig.CreationTime.After(maxTime)) {
		keys.go#L497: 	return potentialNewSig.CreationTime.After(existingSig.CreationTime)

	golang.org/x/crypto/openpgp/packet
		signature.go#L464: 	return currentTime.After(expiry)

	golang.org/x/crypto/ssh/agent
		keyring.go#L119: 		if k.expire != nil && time.Now().After(*k.expire) {

	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) }

	golang.org/x/pkgsite/internal/postgres
		versionstate.go#L449: 		if indexTimestamp.After(stats.LatestTimestamp) {

	google.golang.org/api/idtoken
		cache.go#L82: 	if c.now().After(cachedResp.exp) {

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

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

	net/http
		client.go#L359: 		return cancelCtx, func() bool { return time.Now().After(deadline) }