time.Time.AppendFormat (method)

12 uses

	time (current package)
		format.go#L649: 	b = t.AppendFormat(b, layout)
		format.go#L655: func (t Time) AppendFormat(b []byte, layout string) []byte {

	database/sql
		convert.go#L293: 			*d = s.AppendFormat(make([]byte, 0, len(time.RFC3339Nano)), time.RFC3339Nano)
		convert.go#L299: 			*d = rows.setrawbuf(s.AppendFormat(rows.rawbuf(), time.RFC3339Nano))

	github.com/jackc/pgx/v5/internal/sanitize
		sanitize.go#L84: 					AppendFormat(buf.AvailableBuffer(), "'2006-01-02 15:04:05.999999999Z07:00:00'")

	go.pact.im/x/zapjournal
		encoder.go#L204: 	e.buf = value.AppendFormat(e.buf, time.RFC3339Nano)
		json.go#L179: 	e.setBuf(v.AppendFormat(e.buf(), time.RFC3339Nano))

	go.uber.org/zap/buffer
		buffer.go#L62: 	b.bs = t.AppendFormat(b.bs, layout)

	log/slog
		handler.go#L630: 	b = t.AppendFormat(b, time.RFC3339Nano)
		json_handler.go#L100: 	*s.buf = t.AppendFormat(*s.buf, time.RFC3339Nano)

	net/http
		cookie.go#L297: 		b.Write(c.Expires.UTC().AppendFormat(buf[:0], TimeFormat))
		server.go#L1501: 		setHeader.date = time.Now().UTC().AppendFormat(cw.res.dateBuf[:0], TimeFormat)