const net/http.StatusInternalServerError

15 uses

	net/http (current package)
		fs.go#L152: 		Error(w, "Error reading directory", StatusInternalServerError)
		fs.go#L291: 				serveError(w, "seeker can't seek", StatusInternalServerError)
		fs.go#L302: 		serveError(w, err.Error(), StatusInternalServerError)
		fs.go#L307: 		serveError(w, "negative content size computed", StatusInternalServerError)
		fs.go#L714: 				serveError(w, msg, StatusInternalServerError)
		fs.go#L772: 	return "500 Internal Server Error", StatusInternalServerError
		status.go#L66: 	StatusInternalServerError           = 500 // RFC 9110, 15.6.1
		status.go#L185: 	case StatusInternalServerError:

	net/http/pprof
		pprof.go#L159: 		serveError(w, http.StatusInternalServerError,
		pprof.go#L185: 		serveError(w, http.StatusInternalServerError,
		pprof.go#L296: 		serveError(w, http.StatusInternalServerError, "failed to collect profile")
		pprof.go#L309: 			serveError(w, http.StatusInternalServerError, err.Error())
		pprof.go#L317: 		serveError(w, http.StatusInternalServerError, "failed to collect profile")
		pprof.go#L327: 		serveError(w, http.StatusInternalServerError, "failed to compute delta")

	google.golang.org/grpc/internal/transport
		handler_server.go#L75: 		http.Error(w, msg, http.StatusInternalServerError)