const net/http.StatusInternalServerError

10 uses

	net/http (current package)
		fs.go#L148: 		Error(w, "Error reading directory", StatusInternalServerError)
		fs.go#L245: 				Error(w, "seeker can't seek", StatusInternalServerError)
		fs.go#L256: 		Error(w, err.Error(), StatusInternalServerError)
		fs.go#L261: 		Error(w, "negative content size computed", StatusInternalServerError)
		fs.go#L696: 	return "500 Internal Server Error", StatusInternalServerError
		status.go#L66: 	StatusInternalServerError           = 500 // RFC 9110, 15.6.1
		status.go#L185: 	case StatusInternalServerError:

	go.uber.org/zap
		http_handler.go#L73: 		w.WriteHeader(http.StatusInternalServerError)

	nhooyr.io/websocket
		accept.go#L142: 		http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)