time.Time.AppendFormat (method)

8 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

	database/sql
		convert.go#L288: 			*d = s.AppendFormat((*d)[:0], time.RFC3339Nano)

	github.com/go-redis/redis/v8/internal
		arg.go#L48: 		return v.AppendFormat(b, time.RFC3339Nano)

	github.com/go-redis/redis/v8/internal/proto
		writer.go#L99: 		w.numBuf = v.AppendFormat(w.numBuf[:0], time.RFC3339Nano)

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