time.Time.Before (method)

14 uses

	time (current package)
		time.go#L251: func (t Time) Before(u Time) bool {
		time.go#L859: 	case t.Before(u):

	context
		context.go#L434: 	if cur, ok := parent.Deadline(); ok && cur.Before(d) {

	crypto/x509
		verify.go#L595: 	if now.Before(c.NotBefore) {
		x509.go#L2783: 	if template.NextUpdate.Before(template.ThisUpdate) {

	crypto/x509/pkix
		pkix.go#L294: 	return !now.Before(certList.TBSCertList.NextUpdate)

	net
		dial.go#L107: 	if b.IsZero() || a.Before(b) {
		dial.go#L375: 		if d, ok := ctx.Deadline(); !ok || deadline.Before(d) {
		dial.go#L541: 			if partialDeadline.Before(deadline) {
		hosts.go#L56: 	if now.Before(hosts.expire) && hosts.path == hp && len(hosts.byName) > 0 {

	net/http
		client.go#L304: 	return t.Before(d)
		fs.go#L434: 	if modtime.Before(t) || modtime.Equal(t) {
		fs.go#L485: 	if modtime.Before(t) || modtime.Equal(t) {
		transport.go#L1035: 			tooOld := !oldTime.IsZero() && pconn.idleAt.Round(0).Before(oldTime)