time.Time.Equal (method)

10 uses

	time (current package)
		time.go#L272: func (t Time) Equal(u Time) bool {
		time.go#L863: 	case u.Add(d).Equal(t):

	github.com/aws/smithy-go/auth/bearer
		token.go#L23: 	return now.Equal(t.Expires) || now.After(t.Expires)

	go.pact.im/x/flaky
		schedule.go#L146: 	if now.Equal(next) {

	net
		dnsclient_unix.go#L372: 	if mtime.Equal(conf.dnsConfig.mtime) {
		hosts.go#L60: 	if err == nil && hosts.path == hp && hosts.mtime.Equal(mtime) && hosts.size == size {

	net/http
		fs.go#L434: 	if modtime.Before(t) || modtime.Equal(t) {
		fs.go#L485: 	if modtime.Before(t) || modtime.Equal(t) {
		fs.go#L526: 	return t.IsZero() || t.Equal(unixEpochTime)
		server.go#L1032: 	if !hdrDeadline.Equal(wholeReqDeadline) {