time.Time.UTC (method)

18 uses

	time (current package)
		time.go#L1368: func (t Time) UTC() Time {

	crypto/x509
		x509.go#L1788: 		Validity:           validity{template.NotBefore.UTC(), template.NotAfter.UTC()},
		x509.go#L1869: 		rc.RevocationTime = rc.RevocationTime.UTC()
		x509.go#L1877: 		ThisUpdate:          now.UTC(),
		x509.go#L1878: 		NextUpdate:          expiry.UTC(),
		x509.go#L2449: 			rc.RevocationTime = rc.RevocationTime.UTC()
		x509.go#L2466: 				RevocationTime: rce.RevocationTime.UTC(),
		x509.go#L2523: 		ThisUpdate: template.ThisUpdate.UTC(),
		x509.go#L2524: 		NextUpdate: template.NextUpdate.UTC(),

	github.com/gotd/td/proto
		message_id.go#L86: 	return time.Unix(intPart, fracPart).UTC()

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

	log
		log.go#L120: 			t = t.UTC()

	net/http
		cookie.go#L208: 			c.Expires = exptime.UTC()
		cookie.go#L297: 		b.Write(c.Expires.UTC().AppendFormat(buf[:0], TimeFormat))
		fs.go#L623: 		w.Header().Set("Last-Modified", modtime.UTC().Format(TimeFormat))
		h2_bundle.go#L6684: 			date = time.Now().UTC().Format(TimeFormat)
		server.go#L1465: 		setHeader.date = time.Now().UTC().AppendFormat(cw.res.dateBuf[:0], TimeFormat)