SYMBOL INDEX (227 symbols across 51 files) FILE: cmd/rr/command_test.go function Test_Main (line 13) | func Test_Main(t *testing.T) { function Test_MainWithoutCommands (line 32) | func Test_MainWithoutCommands(t *testing.T) { function Test_MainUnknownSubcommand (line 49) | func Test_MainUnknownSubcommand(t *testing.T) { FILE: cmd/rr/main.go function main (line 15) | func main() { exitFn(run()) } function run (line 18) | func run() int { FILE: container/config.go type Config (line 12) | type Config struct constant endureKey (line 21) | endureKey = "endure" constant defaultGracePeriod (line 23) | defaultGracePeriod = time.Second * 30 function NewConfig (line 27) | func NewConfig(cfgFile string) (*Config, error) { function ParseLogLevel (line 54) | func ParseLogLevel(s string) (slog.Leveler, error) { FILE: container/config_test.go function TestNewConfig_SuccessfulReading (line 13) | func TestNewConfig_SuccessfulReading(t *testing.T) { function TestNewConfig_WithoutEndureKey (line 26) | func TestNewConfig_WithoutEndureKey(t *testing.T) { function TestNewConfig_LoggingLevels (line 42) | func TestNewConfig_LoggingLevels(t *testing.T) { FILE: container/container_test.go function TestNewContainer (line 12) | func TestNewContainer(t *testing.T) { // there is no legal way to test c... FILE: container/plugins.go function Plugins (line 42) | func Plugins() []any { //nolint:funlen FILE: container/plugins_test.go function TestPlugins (line 8) | func TestPlugins(t *testing.T) { FILE: internal/cli/jobs/command.go constant listRPC (line 13) | listRPC string = "jobs.List" constant pauseRPC (line 14) | pauseRPC string = "jobs.Pause" constant destroyRPC (line 15) | destroyRPC string = "jobs.Destroy" constant resumeRPC (line 16) | resumeRPC string = "jobs.Resume" function NewCommand (line 20) | func NewCommand(cfgFile *string, override *[]string, silent *bool) *cobr... FILE: internal/cli/jobs/command_test.go function TestCommandProperties (line 10) | func TestCommandProperties(t *testing.T) { FILE: internal/cli/jobs/render.go function renderPipelines (line 11) | func renderPipelines(writer io.Writer, pipelines []string) *tablewriter.... FILE: internal/cli/jobs/subcommands.go function pause (line 10) | func pause(client *rpc.Client, pause []string, silent *bool) error { function resume (line 26) | func resume(client *rpc.Client, resume []string, silent *bool) error { function destroy (line 42) | func destroy(client *rpc.Client, destroy []string, silent *bool) error { function list (line 58) | func list(client *rpc.Client) error { FILE: internal/cli/reset/command.go constant op (line 15) | op = errors.Op("reset_handler") constant resetterList (line 16) | resetterList = "resetter.List" constant resetterReset (line 17) | resetterReset = "resetter.Reset" function NewCommand (line 21) | func NewCommand(cfgFile *string, override *[]string, silent *bool) *cobr... FILE: internal/cli/reset/command_test.go function TestCommandProperties (line 11) | func TestCommandProperties(t *testing.T) { FILE: internal/cli/root.go constant envDotenv (line 29) | envDotenv string = "DOTENV_PATH" constant pidFileName (line 30) | pidFileName string = ".pid" function NewCommand (line 34) | func NewCommand(cmdName string) *cobra.Command { //nolint:funlen,gocognit function toPtr (line 172) | func toPtr[T any](val T) *T { FILE: internal/cli/root_test.go function TestCommandSubcommands (line 15) | func TestCommandSubcommands(t *testing.T) { function TestCommandFlags (line 41) | func TestCommandFlags(t *testing.T) { function TestCommandSimpleExecuting (line 72) | func TestCommandSimpleExecuting(t *testing.T) { function TestCommandNoEnvFileError (line 88) | func TestCommandNoEnvFileError(t *testing.T) { function TestCommandNoEnvFileNoError (line 104) | func TestCommandNoEnvFileNoError(t *testing.T) { function TestCommandWorkingDir (line 137) | func TestCommandWorkingDir(t *testing.T) { FILE: internal/cli/serve/command.go function log (line 22) | func log(msg string, silent bool) { function NewCommand (line 28) | func NewCommand(override *[]string, cfgFile *string, silent *bool, exper... FILE: internal/cli/serve/command_test.go function TestCommandProperties (line 11) | func TestCommandProperties(t *testing.T) { function TestCommandNil (line 19) | func TestCommandNil(t *testing.T) { function TestExecution (line 26) | func TestExecution(t *testing.T) { FILE: internal/cli/serve/command_windows.go function log (line 22) | func log(msg string, silent bool) { function NewCommand (line 28) | func NewCommand(override *[]string, cfgFile *string, silent *bool, exper... FILE: internal/cli/stop/command.go constant pidFileName (line 17) | pidFileName string = ".pid" function NewCommand (line 21) | func NewCommand(silent *bool, force *bool) *cobra.Command { FILE: internal/cli/stop/command_test.go function TestCommandProperties (line 11) | func TestCommandProperties(t *testing.T) { function TestCommandTrue (line 18) | func TestCommandTrue(t *testing.T) { function toPtr (line 25) | func toPtr[T any](val T) *T { FILE: internal/cli/workers/command.go function NewCommand (line 22) | func NewCommand(cfgFile *string, override *[]string) *cobra.Command { //... function showWorkers (line 92) | func showWorkers(plugins []string, client *rpc.Client) { FILE: internal/cli/workers/command_test.go function TestCommandProperties (line 11) | func TestCommandProperties(t *testing.T) { function TestCommandFlags (line 18) | func TestCommandFlags(t *testing.T) { function TestExecution (line 45) | func TestExecution(t *testing.T) { FILE: internal/cli/workers/render.go constant Ready (line 18) | Ready string = "READY" constant Paused (line 19) | Paused string = "PAUSED/STOPPED" function WorkerTable (line 23) | func WorkerTable(writer io.Writer, workers []*process.State, err error) ... function ServiceWorkerTable (line 72) | func ServiceWorkerTable(writer io.Writer, workers []*process.State) *tab... function JobsTable (line 106) | func JobsTable(writer io.Writer, jobs []*jobs.State, err error) *tablewr... function renderReady (line 157) | func renderReady(ready bool) string { function renderCPU (line 166) | func renderCPU(cpu float64) string { function renderStatus (line 170) | func renderStatus(status string) string { function renderJobs (line 189) | func renderJobs(number uint64) string { function renderAlive (line 193) | func renderAlive(t time.Time) string { FILE: internal/debug/server.go type Server (line 11) | type Server struct method Start (line 32) | func (s *Server) Start(addr string) error { method Stop (line 39) | func (s *Server) Stop(ctx context.Context) error { function NewServer (line 16) | func NewServer() Server { FILE: internal/debug/server_test.go function TestServer_StartingAndStopping (line 17) | func TestServer_StartingAndStopping(t *testing.T) { FILE: internal/meta/meta.go function Version (line 12) | func Version() string { function BuildTime (line 23) | func BuildTime() string { return buildTime } FILE: internal/meta/meta_test.go function TestVersion (line 9) | func TestVersion(t *testing.T) { function TestBuildTime (line 40) | func TestBuildTime(t *testing.T) { FILE: internal/rpc/client.go constant rpcKey (line 17) | rpcKey string = "rpc.listen" constant envDefault (line 19) | envDefault = ":-" function NewClient (line 24) | func NewClient(cfg string, flags []string) (*rpc.Client, error) { function Dialer (line 74) | func Dialer(addr string) (net.Conn, error) { function parseFlag (line 83) | func parseFlag(flag string) (string, string, error) { function parseValue (line 104) | func parseValue(value string) string { function ExpandVal (line 117) | func ExpandVal(s string, mapping func(string) string) string { function getShellName (line 168) | func getShellName(s string) (string, int) { function expandEnvViper (line 195) | func expandEnvViper(v *viper.Viper) { function isShellSpecialVar (line 226) | func isShellSpecialVar(c uint8) bool { function isAlphaNum (line 235) | func isAlphaNum(c uint8) bool { function parseEnvDefault (line 239) | func parseEnvDefault(val string) string { FILE: internal/rpc/client_test.go function TestNewClient_RpcServiceDisabled (line 15) | func TestNewClient_RpcServiceDisabled(t *testing.T) { function TestNewClient_WrongRcpConfiguration (line 25) | func TestNewClient_WrongRcpConfiguration(t *testing.T) { function TestNewClient_ConnectionError (line 33) | func TestNewClient_ConnectionError(t *testing.T) { function TestNewClient_SuccessfullyConnected (line 41) | func TestNewClient_SuccessfullyConnected(t *testing.T) { function TestNewClient_WithIncludes (line 55) | func TestNewClient_WithIncludes(t *testing.T) { function TestNewClient_SuccessfullyConnectedOverride (line 69) | func TestNewClient_SuccessfullyConnectedOverride(t *testing.T) { function TestNewClient_SuccessfullyConnectedEnvDollarSyntax (line 84) | func TestNewClient_SuccessfullyConnectedEnvDollarSyntax(t *testing.T) { FILE: internal/rpc/includes.go constant versionKey (line 9) | versionKey string = "version" constant includeKey (line 10) | includeKey string = "include" constant defaultConfigVersion (line 11) | defaultConfigVersion string = "3" constant prevConfigVersion (line 12) | prevConfigVersion string = "2.7" function getConfiguration (line 15) | func getConfiguration(path string) (map[string]any, string, error) { function handleInclude (line 39) | func handleInclude(rootVersion string, v *viper.Viper) error { FILE: internal/sdnotify/sdnotify.go type State (line 26) | type State constant Ready (line 32) | Ready State = "READY=1" constant Stopping (line 36) | Stopping State = "STOPPING=1" constant Reloading (line 41) | Reloading State = "RELOADING=1" constant Watchdog (line 45) | Watchdog = "WATCHDOG=1" function SdNotify (line 56) | func SdNotify(state State) (bool, error) { function StartWatchdog (line 84) | func StartWatchdog(interval int, stopCh <-chan struct{}) { FILE: lib/roadrunner.go constant rrModule (line 13) | rrModule string = "github.com/roadrunner-server/roadrunner/v2025" type RR (line 16) | type RR struct method Serve (line 74) | func (rr *RR) Serve() error { method Plugins (line 89) | func (rr *RR) Plugins() []string { method Stop (line 94) | func (rr *RR) Stop() { function NewRR (line 23) | func NewRR(cfgFile string, override []string, pluginList []any) (*RR, er... function DefaultPluginsList (line 99) | func DefaultPluginsList() []any { function getRRVersion (line 105) | func getRRVersion() string { FILE: lib/roadrunner_test.go function TestNewFailsOnMissingConfig (line 14) | func TestNewFailsOnMissingConfig(t *testing.T) { constant testConfigWithVersion (line 19) | testConfigWithVersion = ` constant testConfig (line 29) | testConfig = ` function makeConfig (line 38) | func makeConfig(t *testing.T, configYaml string) string { function TestNewWithOldConfig (line 46) | func TestNewWithOldConfig(t *testing.T) { function TestNewWithConfig (line 56) | func TestNewWithConfig(t *testing.T) { function TestServeStop (line 67) | func TestServeStop(t *testing.T) { FILE: schemas/test.js function stripIds (line 6) | function stripIds(schema, first) { FILE: tests/e2e_grpc_test.go function TestGrpcPing (line 34) | func TestGrpcPing(t *testing.T) { function TestGrpcPingWithOtel (line 127) | func TestGrpcPingWithOtel(t *testing.T) { FILE: tests/e2e_http_test.go function newHTTPClient (line 37) | func newHTTPClient() *http.Client { function TestHTTPWithMiddleware (line 44) | func TestHTTPWithMiddleware(t *testing.T) { function TestHTTPStaticFile (line 150) | func TestHTTPStaticFile(t *testing.T) { function TestHTTPWithOtel (line 258) | func TestHTTPWithOtel(t *testing.T) { FILE: tests/e2e_jobs_test.go function TestJobsInMemory (line 34) | func TestJobsInMemory(t *testing.T) { function TestJobsInMemoryWithOtel (line 123) | func TestJobsInMemoryWithOtel(t *testing.T) { FILE: tests/helpers/helpers.go constant push (line 17) | push = "jobs.Push" constant pause (line 18) | pause = "jobs.Pause" constant destroy (line 19) | destroy = "jobs.Destroy" constant resume (line 20) | resume = "jobs.Resume" constant dialTimeout (line 22) | dialTimeout = 5 * time.Second function rpcClient (line 27) | func rpcClient(t *testing.T, address string) *rpc.Client { function callPipelines (line 44) | func callPipelines(t *testing.T, address, method string, pipes []string) { function ResumePipes (line 60) | func ResumePipes(address string, pipes ...string) func(t *testing.T) { function PausePipelines (line 68) | func PausePipelines(address string, pipes ...string) func(t *testing.T) { function PushToPipe (line 76) | func PushToPipe(pipeline string, autoAck bool, address string) func(t *t... function DestroyPipelines (line 102) | func DestroyPipelines(address string, pipes ...string) func(t *testing.T) { FILE: tests/mock/logger.go type Logger (line 10) | type Logger interface type ZapLoggerMock (line 16) | type ZapLoggerMock struct method Init (line 31) | func (z *ZapLoggerMock) Init() error { method Serve (line 35) | func (z *ZapLoggerMock) Serve() chan error { method Stop (line 39) | func (z *ZapLoggerMock) Stop() error { method Provides (line 43) | func (z *ZapLoggerMock) Provides() []*dep.Out { method Weight (line 49) | func (z *ZapLoggerMock) Weight() uint { method ProvideLogger (line 54) | func (z *ZapLoggerMock) ProvideLogger() *Log { function ZapTestLogger (line 22) | func ZapTestLogger(enab zapcore.LevelEnabler) (*ZapLoggerMock, *Observed... type Log (line 59) | type Log struct method NamedLogger (line 71) | func (l *Log) NamedLogger(name string) *zap.Logger { function NewLog (line 64) | func NewLog(log *zap.Logger) *Log { FILE: tests/mock/observer.go type LoggedEntry (line 32) | type LoggedEntry struct method ContextMap (line 38) | func (e LoggedEntry) ContextMap() map[string]any { type ObservedLogs (line 47) | type ObservedLogs struct method Len (line 53) | func (o *ObservedLogs) Len() int { method All (line 61) | func (o *ObservedLogs) All() []LoggedEntry { method TakeAll (line 71) | func (o *ObservedLogs) TakeAll() []LoggedEntry { method AllUntimed (line 81) | func (o *ObservedLogs) AllUntimed() []LoggedEntry { method FilterLevelExact (line 90) | func (o *ObservedLogs) FilterLevelExact(level zapcore.Level) *Observed... method FilterMessage (line 97) | func (o *ObservedLogs) FilterMessage(msg string) *ObservedLogs { method FilterMessageSnippet (line 105) | func (o *ObservedLogs) FilterMessageSnippet(snippet string) *ObservedL... method FilterField (line 112) | func (o *ObservedLogs) FilterField(field zapcore.Field) *ObservedLogs { method FilterFieldKey (line 124) | func (o *ObservedLogs) FilterFieldKey(key string) *ObservedLogs { method Filter (line 137) | func (o *ObservedLogs) Filter(keep func(LoggedEntry) bool) *ObservedLo... method add (line 150) | func (o *ObservedLogs) add(log LoggedEntry) { function New (line 157) | func New(enab zapcore.LevelEnabler) (zapcore.Core, *ObservedLogs) { type contextObserver (line 165) | type contextObserver struct method Check (line 171) | func (co *contextObserver) Check(ent zapcore.Entry, ce *zapcore.Checke... method With (line 178) | func (co *contextObserver) With(fields []zapcore.Field) zapcore.Core { method Write (line 186) | func (co *contextObserver) Write(ent zapcore.Entry, fields []zapcore.F... method Sync (line 195) | func (co *contextObserver) Sync() error { FILE: tests/php_test_files/grpc/src/EchoService.php class EchoService (line 10) | class EchoService implements EchoInterface method Ping (line 12) | public function Ping(ContextInterface $ctx, Message $in): Message FILE: tests/php_test_files/grpc/src/Health/HealthCheckRequest.php class HealthCheckRequest (line 14) | class HealthCheckRequest extends \Google\Protobuf\Internal\Message method __construct (line 30) | public function __construct($data = NULL) { method getService (line 39) | public function getService() method setService (line 49) | public function setService($var) FILE: tests/php_test_files/grpc/src/Health/HealthCheckResponse.php class HealthCheckResponse (line 14) | class HealthCheckResponse extends \Google\Protobuf\Internal\Message method __construct (line 30) | public function __construct($data = NULL) { method getStatus (line 39) | public function getStatus() method setStatus (line 49) | public function setStatus($var) FILE: tests/php_test_files/grpc/src/Health/HealthCheckResponse/ServingStatus.php class ServingStatus (line 12) | class ServingStatus method name (line 40) | public static function name($value) method value (line 50) | public static function value($name) FILE: tests/php_test_files/grpc/src/Health/HealthInterface.php type HealthInterface (line 9) | interface HealthInterface extends GRPC\ServiceInterface method Check (line 21) | public function Check(GRPC\ContextInterface $ctx, HealthCheckRequest $... method Watch (line 30) | public function Watch(GRPC\ContextInterface $ctx, HealthCheckRequest $... FILE: tests/php_test_files/grpc/src/HealthService.php class HealthService (line 11) | class HealthService implements HealthInterface method Check (line 13) | public function Check(ContextInterface $ctx, HealthCheckRequest $in): ... method Watch (line 20) | public function Watch(ContextInterface $ctx, HealthCheckRequest $in): ... FILE: tests/php_test_files/grpc/src/Service/EchoInterface.php type EchoInterface (line 9) | interface EchoInterface extends GRPC\ServiceInterface method Ping (line 21) | public function Ping(GRPC\ContextInterface $ctx, Message $in): Message; FILE: tests/php_test_files/grpc/src/Service/Message.php class Message (line 14) | class Message extends \Google\Protobuf\Internal\Message method __construct (line 30) | public function __construct($data = NULL) { method getMsg (line 39) | public function getMsg() method setMsg (line 49) | public function setMsg($var) FILE: tests/php_test_files/http/echo.php function handleRequest (line 10) | function handleRequest(ServerRequestInterface $req, ResponseInterface $r... FILE: tests/proto/service/service.pb.go constant _ (line 19) | _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) constant _ (line 21) | _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) type Message (line 24) | type Message struct method Reset (line 32) | func (x *Message) Reset() { method String (line 41) | func (x *Message) String() string { method ProtoMessage (line 45) | func (*Message) ProtoMessage() {} method ProtoReflect (line 47) | func (x *Message) ProtoReflect() protoreflect.Message { method Descriptor (line 60) | func (*Message) Descriptor() ([]byte, []int) { method GetMsg (line 64) | func (x *Message) GetMsg() string { function file_service_proto_rawDescGZIP (line 90) | func file_service_proto_rawDescGZIP() []byte { function init (line 111) | func init() { file_service_proto_init() } function file_service_proto_init (line 112) | func file_service_proto_init() { FILE: tests/proto/service/service_grpc.pb.go constant _ (line 20) | _ = grpc.SupportPackageIsVersion7 type EchoClient (line 25) | type EchoClient interface type echoClient (line 29) | type echoClient struct method Ping (line 37) | func (c *echoClient) Ping(ctx context.Context, in *Message, opts ...gr... function NewEchoClient (line 33) | func NewEchoClient(cc grpc.ClientConnInterface) EchoClient { type EchoServer (line 49) | type EchoServer interface type UnimplementedEchoServer (line 55) | type UnimplementedEchoServer struct method Ping (line 58) | func (UnimplementedEchoServer) Ping(context.Context, *Message) (*Messa... method mustEmbedUnimplementedEchoServer (line 61) | func (UnimplementedEchoServer) mustEmbedUnimplementedEchoServer() {} type UnsafeEchoServer (line 66) | type UnsafeEchoServer interface function RegisterEchoServer (line 70) | func RegisterEchoServer(s grpc.ServiceRegistrar, srv EchoServer) { function _Echo_Ping_Handler (line 74) | func _Echo_Ping_Handler(srv interface{}, ctx context.Context, dec func(i...