time.Time.Equal (method)

11 uses

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

	github.com/go-git/go-git/v5
		references.go#L51: 		s.l[i].Committer.When.Equal(s.l[j].Committer.When) &&

	github.com/go-git/go-git/v5/storage/filesystem/dotgit
		dotgit.go#L793: 		if mtime.Equal(fi.ModTime()) {

	github.com/prometheus/client_golang/prometheus
		summary.go#L349: 	for !s.hotBufExpTime.Equal(s.headStreamExpTime) {

	net
		dnsclient_unix.go#L367: 	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#L1033: 	if !hdrDeadline.Equal(wholeReqDeadline) {