net/http.Client.Do (method)

19 uses

	net/http (current package)
		client.go#L474: 	return c.Do(req)
		client.go#L584: func (c *Client) Do(req *Request) (*Response, error) {
		client.go#L845: 	return c.Do(req)
		client.go#L909: 	return c.Do(req)

	cloud.google.com/go/compute/metadata
		metadata.go#L133: 		res, err := defaultClient.hc.Do(req.WithContext(ctx))
		metadata.go#L307: 	res, err := c.hc.Do(req)

	cloud.google.com/go/storage
		reader.go#L151: 			res, err = o.c.hc.Do(req)

	github.com/aws/aws-sdk-go/aws/corehandlers
		handlers.go#L120: 	return r.Config.HTTPClient.Do(r.HTTPRequest)

	github.com/go-git/go-git/v5/plumbing/transport/http
		common.go#L48: 	res, err := s.client.Do(req)
		receive_pack.go#L95: 	res, err := s.client.Do(req.WithContext(ctx))
		upload_pack.go#L93: 	res, err := s.client.Do(req.WithContext(ctx))

	golang.org/x/net/context/ctxhttp
		ctxhttp.go#L27: 	resp, err := client.Do(req.WithContext(ctx))

	golang.org/x/pkgsite/cmd/prober
		main.go#L353: 	res, err := client.Do(req.WithContext(ctx))

	google.golang.org/api/idtoken
		cache.go#L50: 	resp, err := c.client.Do(req)

	google.golang.org/api/internal/gensupport
		send.go#L43: 		return client.Do(req)
		send.go#L68: 	resp, err := client.Do(req.WithContext(ctx))
		send.go#L93: 		return client.Do(req)
		send.go#L138: 		resp, err = client.Do(req.WithContext(ctx))

	google.golang.org/api/internal/impersonate
		impersonate.go#L103: 	resp, err := hc.Do(req)