time.Time.Format (method)

22 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#L463: 			Detail: fmt.Sprintf("current time %s is before %s", now.Format(time.RFC3339), c.NotBefore.Format(time.RFC3339)),
		verify.go#L469: 			Detail: fmt.Sprintf("current time %s is after %s", now.Format(time.RFC3339), c.NotAfter.Format(time.RFC3339)),

	encoding/asn1
		asn1.go#L348: 	if serialized := ret.Format(formatStr); serialized != s {
		asn1.go#L371: 	if serialized := ret.Format(formatStr); serialized != s {

	github.com/gotd/td/proto
		message_id.go#L44: 		int64(id), id.Type(), id.Time().Format(time.RFC3339),

	github.com/gotd/td/tdp
		tdp.go#L65: 			b.WriteString(time.Unix(i, 0).UTC().Format(time.RFC3339))

	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 {

	io/fs
		format.go#L43: 	b = append(b, info.ModTime().Format(time.DateTime)...)

	net/http
		fs.go#L623: 		w.Header().Set("Last-Modified", modtime.UTC().Format(TimeFormat))
		h2_bundle.go#L6684: 			date = time.Now().UTC().Format(TimeFormat)
		transport.go#L2969: 		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 {