time.Time.Equal (method)

8 uses

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

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