time.Time.UTC (method)

16 uses

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

	crypto/x509
		x509.go#L2200: 		Validity:           validity{template.NotBefore.UTC(), template.NotAfter.UTC()},
		x509.go#L2306: 		rc.RevocationTime = rc.RevocationTime.UTC()
		x509.go#L2314: 		ThisUpdate:          now.UTC(),
		x509.go#L2315: 		NextUpdate:          expiry.UTC(),
		x509.go#L2798: 		rc.RevocationTime = rc.RevocationTime.UTC()
		x509.go#L2815: 		ThisUpdate: template.ThisUpdate.UTC(),
		x509.go#L2816: 		NextUpdate: template.NextUpdate.UTC(),

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

	net/http
		cookie.go#L145: 				c.Expires = exptime.UTC()
		cookie.go#L207: 		b.Write(c.Expires.UTC().AppendFormat(buf[:0], TimeFormat))
		fs.go#L531: 		w.Header().Set("Last-Modified", modtime.UTC().Format(TimeFormat))
		h2_bundle.go#L6002: 			date = time.Now().UTC().Format(TimeFormat)
		server.go#L937: 	t = t.UTC()

	src.elv.sh/pkg/eval
		builtin_fn_misc.go#L44: 	rand.Seed(time.Now().UTC().UnixNano())