const net/http.StatusUnauthorized

9 uses

	net/http (current package)
		status.go#L37: 	StatusUnauthorized                 = 401 // RFC 7235, 3.1
		status.go#L106: 	StatusUnauthorized:                 "Unauthorized",

	github.com/aws/aws-sdk-go/aws/ec2metadata
		token_provider.go#L89: 		e.StatusCode() == http.StatusUnauthorized {

	github.com/go-git/go-git/v5/plumbing/transport/http
		common.go#L261: 	case http.StatusUnauthorized:

	go.opencensus.io/plugin/ochttp
		trace.go#L197: 	case http.StatusUnauthorized: // 401 is actually unauthenticated.

	golang.org/x/net/trace
		trace.go#L154: 		http.Error(w, "not allowed", http.StatusUnauthorized)
		trace.go#L169: 		http.Error(w, "not allowed", http.StatusUnauthorized)

	golang.org/x/pkgsite/internal/middleware
		iapheader.go#L27: 					http.Error(w, err.Error(), http.StatusUnauthorized)

	google.golang.org/grpc/internal/transport
		http_util.go#L88: 		http.StatusUnauthorized: codes.Unauthenticated,