time.Time.Format (method)
27 uses
time (current package)
format.go#L547: s := t.Format("2006-01-02 15:04:05.999999999 -0700 MST")
format.go#L639: func (t Time) Format(layout string) string {
crypto/x509
verify.go#L617: Detail: fmt.Sprintf("current time %s is before %s", now.Format(time.RFC3339), c.NotBefore.Format(time.RFC3339)),
verify.go#L623: Detail: fmt.Sprintf("current time %s is after %s", now.Format(time.RFC3339), c.NotAfter.Format(time.RFC3339)),
encoding/asn1
asn1.go#L347: if serialized := ret.Format(formatStr); serialized != s {
asn1.go#L370: if serialized := ret.Format(formatStr); serialized != s {
github.com/robfig/cron/v3
logger.go#L81: arg = t.Format(time.RFC3339)
go.uber.org/zap/zapcore
encoder.go#L127: enc.AppendString(t.Format(layout))
golang.org/x/net/http2
server.go#L2705: date = rws.conn.srv.now().UTC().Format(http.TimeFormat)
golang.org/x/net/trace
events.go#L241: return e.When.Format("2006/01/02 15:04:05.000000")
events.go#L243: return e.When.Format("15:04:05.000000")
events.go#L355: return el.Start.Format("2006/01/02 15:04:05.000000")
trace.go#L699: return e.When.Format("2006/01/02 15:04:05.000000")
trace.go#L701: return e.When.Format("15:04:05.000000")
trace.go#L888: return tr.Start.Format("2006/01/02 15:04:05.000000")
golang.org/x/tools/internal/event/core
event.go#L40: fmt.Fprint(f, ev.at.Format("2006/01/02 15:04:05 "))
google.golang.org/protobuf/encoding/protojson
well_known_types.go#L785: x := t.Format("2006-01-02T15:04:05.000000000")
io/fs
format.go#L43: b = append(b, info.ModTime().Format(time.DateTime)...)
net/http
fs.go#L618: w.Header().Set("Last-Modified", modtime.UTC().Format(TimeFormat))
h2_bundle.go#L6801: date = rws.conn.srv.now().UTC().Format(TimeFormat)
transport.go#L2884: logf(time.Now().Format(time.RFC3339Nano)+": "+format, args...)
vendor/golang.org/x/crypto/cryptobyte
asn1.go#L116: c.AddBytes([]byte(t.Format(generalizedTimeFormatStr)))
asn1.go#L129: c.AddBytes([]byte(t.Format(defaultUTCTimeFormatStr)))
asn1.go#L502: if serialized := res.Format(generalizedTimeFormatStr); serialized != t {
asn1.go#L534: if serialized := res.Format(formatStr); serialized != t {