time.Time.UTC (method)

20 uses

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

	crypto/x509
		x509.go#L1769: 		Validity:           validity{template.NotBefore.UTC(), template.NotAfter.UTC()},
		x509.go#L1848: 		rc.RevocationTime = rc.RevocationTime.UTC()
		x509.go#L1856: 		ThisUpdate:          now.UTC(),
		x509.go#L1857: 		NextUpdate:          expiry.UTC(),
		x509.go#L2427: 			rc.RevocationTime = rc.RevocationTime.UTC()
		x509.go#L2444: 				RevocationTime: rce.RevocationTime.UTC(),
		x509.go#L2501: 		ThisUpdate: template.ThisUpdate.UTC(),
		x509.go#L2502: 		NextUpdate: template.NextUpdate.UTC(),

	go.uber.org/zap
		logger.go#L384: 			fmt.Fprintf(log.errorOutput, "%v Logger.check error: failed to get caller\n", ent.Time.UTC())

	golang.org/x/net/http2
		server.go#L2687: 			date = time.Now().UTC().Format(http.TimeFormat)

	google.golang.org/protobuf/encoding/protojson
		well_known_types.go#L784: 	t := time.Unix(secs, nanos).UTC()

	google.golang.org/protobuf/types/known/timestamppb
		timestamp.pb.go#L200: 	return time.Unix(int64(x.GetSeconds()), int64(x.GetNanos())).UTC()

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

	net/http
		cookie.go#L184: 			c.Expires = exptime.UTC()
		cookie.go#L263: 		b.Write(c.Expires.UTC().AppendFormat(buf[:0], TimeFormat))
		fs.go#L618: 		w.Header().Set("Last-Modified", modtime.UTC().Format(TimeFormat))
		h2_bundle.go#L6801: 			date = rws.conn.srv.now().UTC().Format(TimeFormat)
		server.go#L999: 	t = t.UTC()