time.Time.Format (method)

13 uses

	time (current package)
		format.go#L451: 	s := t.Format("2006-01-02 15:04:05.999999999 -0700 MST")
		format.go#L495: func (t Time) Format(layout string) string {

	crypto/x509
		verify.go#L599: 			Detail: fmt.Sprintf("current time %s is before %s", now.Format(time.RFC3339), c.NotBefore.Format(time.RFC3339)),
		verify.go#L605: 			Detail: fmt.Sprintf("current time %s is after %s", now.Format(time.RFC3339), c.NotAfter.Format(time.RFC3339)),

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

	net/http
		fs.go#L531: 		w.Header().Set("Last-Modified", modtime.UTC().Format(TimeFormat))
		h2_bundle.go#L6002: 			date = time.Now().UTC().Format(TimeFormat)
		transport.go#L2669: 		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#L462: 	if serialized := res.Format(generalizedTimeFormatStr); serialized != t {