const net/http.StatusInternalServerError

13 uses

	net/http (current package)
		fs.go#L146: 		Error(w, "Error reading directory", StatusInternalServerError)
		fs.go#L243: 				Error(w, "seeker can't seek", StatusInternalServerError)
		fs.go#L254: 		Error(w, err.Error(), StatusInternalServerError)
		fs.go#L680: 	return "500 Internal Server Error", StatusInternalServerError
		status.go#L66: 	StatusInternalServerError           = 500 // RFC 7231, 6.6.1
		status.go#L135: 	StatusInternalServerError:           "Internal Server Error",

	net/http/pprof
		pprof.go#L138: 		serveError(w, http.StatusInternalServerError,
		pprof.go#L167: 		serveError(w, http.StatusInternalServerError,
		pprof.go#L278: 		serveError(w, http.StatusInternalServerError, "failed to collect profile")
		pprof.go#L291: 			serveError(w, http.StatusInternalServerError, err.Error())
		pprof.go#L299: 		serveError(w, http.StatusInternalServerError, "failed to collect profile")
		pprof.go#L309: 		serveError(w, http.StatusInternalServerError, "failed to compute delta")

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