func net/http.StatusText
11 uses
net/http (current package)
filetransport.go#L111: pr.res.Status = fmt.Sprintf("%d %s", code, StatusText(code))
h2_bundle.go#L8960: Status: status + " " + StatusText(statusCode),
server.go#L1791: func (e statusError) Error() string { return StatusText(e.code) + ": " + e.text }
server.go#L1920: fmt.Fprintf(c.rwc, "HTTP/1.1 %d %s%sUnsupported transfer encoding", code, StatusText(code), errorHeaders)
server.go#L1928: fmt.Fprintf(c.rwc, "HTTP/1.1 %d %s: %s%s%d %s: %s", v.code, StatusText(v.code), v.text, errorHeaders, v.code, StatusText(v.code), v.text)
status.go#L150: func StatusText(code int) string {
net/http/httptest
recorder.go#L199: res.Status = fmt.Sprintf("%03d %s", res.StatusCode, http.StatusText(res.StatusCode))
github.com/aws/aws-sdk-go-v2/service/internal/s3shared
xml_utils.go#L71: statusText := http.StatusText(options.StatusCode)
golang.org/x/net/http2
transport.go#L2369: Status: status + " " + http.StatusText(statusCode),
google.golang.org/grpc/internal/transport
http2_client.go#L1465: http.StatusText(statusCode),