const net/http.StatusInternalServerError

59 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",

	github.com/evanw/esbuild/pkg/api
		serve_other.go#L175: 							go h.notifyRequest(time.Since(start), req, http.StatusInternalServerError)
		serve_other.go#L176: 							res.WriteHeader(http.StatusInternalServerError)
		serve_other.go#L203: 				go h.notifyRequest(time.Since(start), req, http.StatusInternalServerError)
		serve_other.go#L204: 				res.WriteHeader(http.StatusInternalServerError)
		serve_other.go#L227: 				go h.notifyRequest(time.Since(start), req, http.StatusInternalServerError)
		serve_other.go#L228: 				res.WriteHeader(http.StatusInternalServerError)

	github.com/prometheus/client_golang/prometheus/promhttp
		http.go#L347: 		http.StatusInternalServerError,

	go.opencensus.io/plugin/ochttp
		client_stats.go#L60: 		track.statusCode = http.StatusInternalServerError

	golang.org/x/pkgsite/cmd/prober
		main.go#L288: 		http.Error(w, fmt.Sprintf("template execution failed: %v", err), http.StatusInternalServerError)

	golang.org/x/pkgsite/internal/derrors
		derrors.go#L186: 	return http.StatusInternalServerError

	golang.org/x/pkgsite/internal/frontend
		404.go#L104: 	case http.StatusInternalServerError:
		fetch.go#L154: 		return http.StatusInternalServerError, http.StatusText(http.StatusInternalServerError)
		fetch.go#L160: 		return http.StatusInternalServerError, http.StatusText(http.StatusInternalServerError)
		fetch.go#L203: 				fr.status = http.StatusInternalServerError
		fetch.go#L211: 			if fr.status == http.StatusInternalServerError {
		fetch.go#L252: 		case http.StatusInternalServerError:
		fetch.go#L265: 				fr.status = http.StatusInternalServerError
		fetch.go#L312: 			fr.status = http.StatusInternalServerError
		fetch.go#L415: 		http.StatusInternalServerError:
		fetch.go#L433: 		if fr.status == http.StatusInternalServerError {
		fetch.go#L476: 		fr.status = http.StatusInternalServerError
		fetch.go#L498: 			status: http.StatusInternalServerError,
		fetch.go#L564: 			fr.Status = http.StatusInternalServerError
		fetch.go#L583: 		return http.StatusInternalServerError, err
		playground.go#L44: 			httpErrorStatus(w, http.StatusInternalServerError)
		server.go#L101: 	errorPageBytes, err := s.renderErrorPage(context.Background(), http.StatusInternalServerError, "error.tmpl", nil)
		server.go#L314: 	status := http.StatusInternalServerError
		server.go#L356: 		serr = &serverError{status: http.StatusInternalServerError, err: err}
		server.go#L358: 	if serr.status == http.StatusInternalServerError {
		server.go#L414: 		status = http.StatusInternalServerError
		server.go#L465: 		w.WriteHeader(http.StatusInternalServerError)
		server.go#L470: 		w.WriteHeader(http.StatusInternalServerError)

	golang.org/x/pkgsite/internal/middleware
		stats.go#L117: 		http.Error(w, err.Error(), http.StatusInternalServerError)

	golang.org/x/pkgsite/internal/worker
		fetch.go#L63: 		return http.StatusInternalServerError, "", errors.New("called with internal.UnknownModulePath")
		fetch.go#L91: 			ft.Status = http.StatusInternalServerError
		fetch.go#L100: 		if ft.Status != http.StatusInternalServerError {
		fetch.go#L102: 			ft.Status = http.StatusInternalServerError
		fetch.go#L122: 			if ft.Status != http.StatusInternalServerError {
		fetch.go#L124: 				ft.Status = http.StatusInternalServerError
		fetch.go#L153: 			ft.Status = http.StatusInternalServerError
		fetch.go#L157: 		return http.StatusInternalServerError, ft.ResolvedVersion, ft.Error
		fetch.go#L403: 	if ft.Status == http.StatusInternalServerError {
		server.go#L279: 	if code == http.StatusInternalServerError || code == http.StatusServiceUnavailable {
		server.go#L313: 	if code == http.StatusInternalServerError {
		server.go#L464: 			http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
		server.go#L580: 		return &serverError{http.StatusInternalServerError, err}
		server.go#L635: 		http.Error(w, fmt.Sprintf("DB ping failed: %v", err), http.StatusInternalServerError)
		server.go#L755: 		serr = &serverError{status: http.StatusInternalServerError, err: err}
		server.go#L757: 	if serr.status == http.StatusInternalServerError {

	google.golang.org/grpc
		server.go#L901: 		http.Error(w, err.Error(), http.StatusInternalServerError)