time.Time.AppendFormat (method)

5 uses

	time (current package)
		format.go#L505: 	b = t.AppendFormat(b, layout)
		format.go#L511: func (t Time) AppendFormat(b []byte, layout string) []byte {
		time.go#L1249: 	b = t.AppendFormat(b, RFC3339Nano)
		time.go#L1275: 	return t.AppendFormat(b, RFC3339Nano), nil

	net/http
		cookie.go#L207: 		b.Write(c.Expires.UTC().AppendFormat(buf[:0], TimeFormat))