net/url.Values.Set (method)

40 uses

	net/url (current package)
		url.go#L897: func (v Values) Set(key, value string) {

	cloud.google.com/go/storage
		storage.go#L660: 	canonicalQueryString.Set("X-Goog-Signature", string(signature))
		storage.go#L726: 	q.Set("GoogleAccessId", opts.GoogleAccessID)
		storage.go#L727: 	q.Set("Expires", fmt.Sprintf("%d", opts.Expires.Unix()))
		storage.go#L728: 	q.Set("Signature", string(encoded))

	github.com/aws/aws-sdk-go/aws/signer/v4
		v4.go#L395: 		ctx.Query.Set("X-Amz-Algorithm", authHeaderPrefix)
		v4.go#L397: 			ctx.Query.Set("X-Amz-Security-Token", ctx.credValues.SessionToken)
		v4.go#L579: 		ctx.Query.Set("X-Amz-Date", formatTime(ctx.Time))
		v4.go#L580: 		ctx.Query.Set("X-Amz-Expires", strconv.FormatInt(duration, 10))
		v4.go#L590: 		ctx.Query.Set("X-Amz-Credential", ctx.credValues.AccessKeyID+"/"+ctx.credentialString)
		v4.go#L633: 		ctx.Query.Set("X-Amz-SignedHeaders", ctx.signedHeaders)

	github.com/aws/aws-sdk-go/private/protocol/query/queryutil
		queryutil.go#L120: 		v.Set(prefix, "")
		queryutil.go#L154: 		v.Set(prefix, "")
		queryutil.go#L219: 		v.Set(name, value)
		queryutil.go#L222: 			v.Set(name, base64.StdEncoding.EncodeToString(value))
		queryutil.go#L225: 		v.Set(name, strconv.FormatBool(value))
		queryutil.go#L227: 		v.Set(name, strconv.FormatInt(value, 10))
		queryutil.go#L229: 		v.Set(name, strconv.Itoa(value))
		queryutil.go#L231: 		v.Set(name, strconv.FormatFloat(value, 'f', -1, 64))
		queryutil.go#L233: 		v.Set(name, strconv.FormatFloat(float64(value), 'f', -1, 32))
		queryutil.go#L241: 		v.Set(name, protocol.FormatTime(format, value))

	github.com/aws/aws-sdk-go/private/protocol/rest
		build.go#L234: 		query.Set(name, str)

	golang.org/x/oauth2
		oauth2.go#L130: func (p setParam) setValue(m url.Values) { m.Set(p.k, p.v) }
		oauth2.go#L158: 		v.Set("redirect_uri", c.RedirectURL)
		oauth2.go#L161: 		v.Set("scope", strings.Join(c.Scopes, " "))
		oauth2.go#L165: 		v.Set("state", state)
		oauth2.go#L196: 		v.Set("scope", strings.Join(c.Scopes, " "))
		oauth2.go#L219: 		v.Set("redirect_uri", c.RedirectURL)

	golang.org/x/oauth2/google
		google.go#L178: 		v.Set("scopes", strings.Join(cs.scopes, ","))

	golang.org/x/oauth2/internal
		token.go#L163: 			v.Set("client_id", clientID)
		token.go#L166: 			v.Set("client_secret", clientSecret)

	golang.org/x/oauth2/jwt
		jwt.go#L132: 	v.Set("grant_type", defaultGrantType)
		jwt.go#L133: 	v.Set("assertion", payload)

	golang.org/x/pkgsite/internal/frontend
		paginate.go#L38: 	newQuery.Set("page", strconv.Itoa(page))

	golang.org/x/pkgsite/internal/index
		index.go#L50: 	values.Set("since", since.Format(time.RFC3339))
		index.go#L52: 		values.Set("limit", strconv.Itoa(limit))

	golang.org/x/pkgsite/internal/middleware
		betaRedirect.go#L68: 	values.Set("utm_source", "pkggodev")

	google.golang.org/api/googleapi/transport
		apikey.go#L41: 	args.Set("key", t.Key)

	google.golang.org/api/idtoken
		compute.go#L40: 	v.Set("audience", c.audience)
		compute.go#L41: 	v.Set("format", "full")