Home
last modified time | relevance | path

Searched refs:commandName (Results 1 – 25 of 1560) sorted by relevance

12345678910>>...63

/dports/biology/mothur/mothur-1.46.1/source/
H A Dcommandfactory.cpp414 Command* CommandFactory::getCommand(string commandName, string optionString){ in getCommand() argument
419 … if ((commandName != "help") && (commandName != "system")) { checkForRedirects(optionString); } in getCommand()
500 …else if((commandName == "get.otus") || (commandName == "get.otulabels")) { command = new GetOtus… in getCommand()
501 …else if((commandName == "remove.otus") || (commandName == "remove.otulabels")) { command = new R… in getCommand()
502 …else if((commandName == "list.otus") ||(commandName == "list.otulabels")) { command = new L… in getCommand()
523 …else if((commandName == "count.seqs") || (commandName == "make.table")) { command = new CountSeq… in getCommand()
582 if (commandName != "help") { in getCommand()
676 …else if((commandName == "get.otus") || (commandName == "get.otulabels")) { pipecommand = new Get… in getCommand()
677 …else if((commandName == "remove.otus") || (commandName == "remove.otulabels")) { pipecommand = n… in getCommand()
678 …else if((commandName == "list.otus") ||(commandName == "list.otulabels")) { pipecommand = n… in getCommand()
[all …]
/dports/biology/mothur/mothur-1.46.1/source/commands/
H A Dhelpcommand.cpp167 commandName = option; in HelpCommand()
244 if (commandName != "") { in execute()
245 if (validCommands->isValidCommand(commandName)) { in execute()
252 else if(commandName == "help") { command = new HelpCommand(optionString); } in execute()
253 else if(commandName == "quit") { command = new QuitCommand(optionString); } in execute()
303 else if(commandName == "pca") { command = new PCACommand(optionString); } in execute()
328 …else if((commandName == "get.otus") || (commandName == "get.otulabels")) { command = new GetOtus… in execute()
329 …else if((commandName == "remove.otus") || (commandName == "remove.otulabels")) { command = new R… in execute()
330 …else if((commandName == "list.otus") ||(commandName == "list.otulabels")) { command = new L… in execute()
351 …else if((commandName == "count.seqs") || (commandName == "make.table")) { command = new CountSeq… in execute()
[all …]
/dports/finance/prestashop/prestashop/src/Core/CommandBus/Parser/
H A DCommandDefinitionParser.php38 * @param string $commandName
44 public function parseDefinition($commandName) argument
47 $commandName,
48 $this->parseType($commandName),
49 $this->parseDescription($commandName)
56 * @param string $commandName
60 private function parseType($commandName) argument
62 if (strpos($commandName, '\Command\\')) {
70 * @param string $commandName
89 $commandName = preg_replace('/ +/', ' ', $commandName);
[all …]
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/core/Classes/Console/
H A DCommandRegistry.php115 foreach ($this->commands as $commandName => $command) {
119 yield $commandName => $command;
131 foreach ($this->commands as $commandName => $command) {
136 yield $commandName => $command;
148 foreach ($this->commands as $commandName => $command) {
153 yield $commandName => $command;
205 $this->commands[$commandName] = $commandConfig['class'];
206 $this->commandConfigurations[$commandName] = $commandConfig;
219 foreach ($commands as $commandName => $commandConfig) {
234 …$this->commands[$commandName] = GeneralUtility::makeInstance($commandConfig['class'], $commandName
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Runtime.DurableInstancing/System/Runtime/DurableInstancing/
H A DInstancePersistenceException.cs32 public InstancePersistenceException(XName commandName) in InstancePersistenceException() argument
33 : this(commandName, ToMessage(commandName)) in InstancePersistenceException()
37 public InstancePersistenceException(XName commandName, Exception innerException) in InstancePersistenceException() argument
38 : this(commandName, ToMessage(commandName), innerException) in InstancePersistenceException()
42 public InstancePersistenceException(XName commandName, string message) in InstancePersistenceException() argument
45 CommandName = commandName; in InstancePersistenceException()
48 … public InstancePersistenceException(XName commandName, string message, Exception innerException) in InstancePersistenceException() argument
51 CommandName = commandName; in InstancePersistenceException()
73 static string ToMessage(XName commandName) in ToMessage() argument
75 …return commandName == null ? SRCore.GenericInstanceCommandNull : SRCore.GenericInstanceCommand(com… in ToMessage()
H A DInstancePersistenceCommandException.cs30 public InstancePersistenceCommandException(XName commandName) in InstancePersistenceCommandException() argument
31 : base(commandName) in InstancePersistenceCommandException()
35 public InstancePersistenceCommandException(XName commandName, Guid instanceId) in InstancePersistenceCommandException() argument
36 : base(commandName) in InstancePersistenceCommandException()
41 public InstancePersistenceCommandException(XName commandName, Exception innerException) in InstancePersistenceCommandException() argument
42 : base(commandName, innerException) in InstancePersistenceCommandException()
46 …public InstancePersistenceCommandException(XName commandName, string message, Exception innerExcep… in InstancePersistenceCommandException() argument
47 : base(commandName, message, innerException) in InstancePersistenceCommandException()
51 …public InstancePersistenceCommandException(XName commandName, Guid instanceId, Exception innerExce… in InstancePersistenceCommandException() argument
52 : base(commandName, innerException) in InstancePersistenceCommandException()
[all …]
/dports/java/javamail/javamail-JAVAMAIL-1_6_2/mail/src/test/java/com/sun/mail/pop3/
H A DPOP3Handler.java136 if (commandName == null) { in handleCommand()
142 if (commandName.equals("STAT")) { in handleCommand()
144 } else if (commandName.equals("LIST")) { in handleCommand()
146 } else if (commandName.equals("RETR")) { in handleCommand()
148 } else if (commandName.equals("DELE")) { in handleCommand()
150 } else if (commandName.equals("NOOP")) { in handleCommand()
152 } else if (commandName.equals("RSET")) { in handleCommand()
154 } else if (commandName.equals("QUIT")) { in handleCommand()
156 } else if (commandName.equals("TOP")) { in handleCommand()
158 } else if (commandName.equals("UIDL")) { in handleCommand()
[all …]
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/workhorse/vendor/github.com/rafaeljusto/redigomock/
H A Dredigomock.go16 commandName string member
74 Name: commandName,
103 Name: commandName,
115 if match(commandName, args, cmd) {
131 if !equal(commandName, args, cmd) {
155 if commandName == "" {
187 return c.do(commandName, args...)
191 cmd := c.find(commandName, args)
197 if commandName == regCmd.Name {
206 commandName, args, msg)
[all …]
/dports/astro/celestia-gtk/celestia-1.6.1/src/celengine/
H A Dcmdparser.cpp168 if (commandName == "wait") in parseCommand()
174 else if (commandName == "set") in parseCommand()
196 else if (commandName == "select") in parseCommand()
221 else if (commandName == "goto") in parseCommand()
317 else if (commandName == "lock") in parseCommand()
321 else if (commandName == "chase") in parseCommand()
325 else if (commandName == "track") in parseCommand()
333 else if (commandName == "exit") in parseCommand()
406 else if (commandName == "cls") in parseCommand()
410 else if (commandName == "time") in parseCommand()
[all …]
/dports/astro/celestia/celestia-1.6.1/src/celengine/
H A Dcmdparser.cpp168 if (commandName == "wait") in parseCommand()
174 else if (commandName == "set") in parseCommand()
196 else if (commandName == "select") in parseCommand()
221 else if (commandName == "goto") in parseCommand()
317 else if (commandName == "lock") in parseCommand()
321 else if (commandName == "chase") in parseCommand()
325 else if (commandName == "track") in parseCommand()
333 else if (commandName == "exit") in parseCommand()
406 else if (commandName == "cls") in parseCommand()
410 else if (commandName == "time") in parseCommand()
[all …]
/dports/finance/prestashop/prestashop/vendor/league/tactician-container/src/
H A DContainerLocator.php45 * @param string $commandName Can be a class name or name of a NamedCommand
47 public function addHandler($handler, $commandName) argument
49 $this->commandNameToHandlerMap[$commandName] = $handler;
65 foreach ($commandNameToHandlerMap as $commandName => $handler) {
66 $this->addHandler($handler, $commandName);
73 * @param string $commandName
79 public function getHandlerForCommand($commandName) argument
81 if (!isset($this->commandNameToHandlerMap[$commandName])) {
82 throw MissingHandlerException::forCommand($commandName);
85 $serviceId = $this->commandNameToHandlerMap[$commandName];
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/core/Classes/Console/
H A DCommandRegistry.php94 foreach ($this->commandConfigurations as $commandName => $configuration) {
129 foreach ($this->commandConfigurations as $commandName => $configuration) {
138 $namespaces[$namespace]['commands'][] = $commandName;
160 foreach ($this->commandConfigurations as $commandName => $configuration) {
171 $commands[$commandName] = $configuration;
172 $commands[$commandName]['aliases'] = $this->aliases[$commandName] ?? [];
182 string $commandName, argument
189 $this->commandConfigurations[$commandName] = [
190 'name' => $aliasFor ?? $commandName,
196 'namespace' => $this->extractNamespace($commandName, 1),
[all …]
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/hotspot/jtreg/vmTestbase/nsk/share/jdwp/
H A DDebugee.java507 String commandName = "VirtualMachine.Version"; in getVersionInfo() local
565 String commandName = "VirtualMachine.Resume"; in resume() local
590 + commandName + ":\n\t" + e); in sendCommand()
702 sendCommand(command, commandName); in receiveReplyFor()
1048 String commandName = "ClassType.SetValues"; in setStaticFieldValue() local
1165 String commandName = "ThreadReference.Name"; in getThreadName() local
1244 String commandName = "Method.LineTable"; in getLineNumber() local
1303 String commandName = "Method.LineTable"; in getCodeIndex() local
1337 String commandName = "EventRequest.Set"; in requestEvent() local
1359 String commandName = "EventRequest.Clear"; in clearEventRequest() local
[all …]
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/hotspot/jtreg/vmTestbase/nsk/share/jdwp/
H A DDebugee.java507 String commandName = "VirtualMachine.Version"; in getVersionInfo() local
565 String commandName = "VirtualMachine.Resume"; in resume() local
590 + commandName + ":\n\t" + e); in sendCommand()
702 sendCommand(command, commandName); in receiveReplyFor()
1048 String commandName = "ClassType.SetValues"; in setStaticFieldValue() local
1165 String commandName = "ThreadReference.Name"; in getThreadName() local
1244 String commandName = "Method.LineTable"; in getLineNumber() local
1303 String commandName = "Method.LineTable"; in getCodeIndex() local
1337 String commandName = "EventRequest.Set"; in requestEvent() local
1359 String commandName = "EventRequest.Clear"; in clearEventRequest() local
[all …]
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/test/hotspot/jtreg/vmTestbase/nsk/share/jdwp/
H A DDebugee.java507 String commandName = "VirtualMachine.Version"; in getVersionInfo() local
565 String commandName = "VirtualMachine.Resume"; in resume() local
590 + commandName + ":\n\t" + e); in sendCommand()
702 sendCommand(command, commandName); in receiveReplyFor()
1048 String commandName = "ClassType.SetValues"; in setStaticFieldValue() local
1165 String commandName = "ThreadReference.Name"; in getThreadName() local
1244 String commandName = "Method.LineTable"; in getLineNumber() local
1303 String commandName = "Method.LineTable"; in getCodeIndex() local
1337 String commandName = "EventRequest.Set"; in requestEvent() local
1359 String commandName = "EventRequest.Clear"; in clearEventRequest() local
[all …]
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/hotspot/jtreg/vmTestbase/nsk/share/jdwp/
H A DDebugee.java507 String commandName = "VirtualMachine.Version"; in getVersionInfo() local
565 String commandName = "VirtualMachine.Resume"; in resume() local
590 + commandName + ":\n\t" + e); in sendCommand()
702 sendCommand(command, commandName); in receiveReplyFor()
1048 String commandName = "ClassType.SetValues"; in setStaticFieldValue() local
1165 String commandName = "ThreadReference.Name"; in getThreadName() local
1244 String commandName = "Method.LineTable"; in getLineNumber() local
1303 String commandName = "Method.LineTable"; in getCodeIndex() local
1337 String commandName = "EventRequest.Set"; in requestEvent() local
1359 String commandName = "EventRequest.Clear"; in clearEventRequest() local
[all …]
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/hotspot/jtreg/vmTestbase/nsk/share/jdwp/
H A DDebugee.java507 String commandName = "VirtualMachine.Version"; in getLastID()
565 String commandName = "VirtualMachine.Resume"; in getLastID()
590 + commandName + ":\n\t" + e); in getLastID()
702 sendCommand(command, commandName); in getLastID()
1048 String commandName = "ClassType.SetValues"; in getLastID()
1165 String commandName = "ThreadReference.Name"; in getLastID()
1244 String commandName = "Method.LineTable"; in getLastID()
1303 String commandName = "Method.LineTable"; in getLastID()
1337 String commandName = "EventRequest.Set"; in getLastID()
1359 String commandName = "EventRequest.Clear"; in getLastID()
[all …]
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/hotspot/jtreg/vmTestbase/nsk/share/jdwp/
H A DDebugee.java507 String commandName = "VirtualMachine.Version"; in getVersionInfo() local
565 String commandName = "VirtualMachine.Resume"; in resume() local
590 + commandName + ":\n\t" + e); in sendCommand()
702 sendCommand(command, commandName); in receiveReplyFor()
1048 String commandName = "ClassType.SetValues"; in setStaticFieldValue() local
1165 String commandName = "ThreadReference.Name"; in getThreadName() local
1244 String commandName = "Method.LineTable"; in getLineNumber() local
1303 String commandName = "Method.LineTable"; in getCodeIndex() local
1337 String commandName = "EventRequest.Set"; in requestEvent() local
1359 String commandName = "EventRequest.Clear"; in clearEventRequest() local
[all …]
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/test/hotspot/jtreg/vmTestbase/nsk/share/jdwp/
H A DDebugee.java507 String commandName = "VirtualMachine.Version"; in getVersionInfo() local
565 String commandName = "VirtualMachine.Resume"; in resume() local
590 + commandName + ":\n\t" + e); in sendCommand()
702 sendCommand(command, commandName); in receiveReplyFor()
1048 String commandName = "ClassType.SetValues"; in setStaticFieldValue() local
1165 String commandName = "ThreadReference.Name"; in getThreadName() local
1244 String commandName = "Method.LineTable"; in getLineNumber() local
1303 String commandName = "Method.LineTable"; in getCodeIndex() local
1337 String commandName = "EventRequest.Set"; in requestEvent() local
1359 String commandName = "EventRequest.Clear"; in clearEventRequest() local
[all …]
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/test/hotspot/jtreg/vmTestbase/nsk/share/jdwp/
H A DDebugee.java507 String commandName = "VirtualMachine.Version"; in getVersionInfo() local
565 String commandName = "VirtualMachine.Resume"; in resume() local
590 + commandName + ":\n\t" + e); in sendCommand()
702 sendCommand(command, commandName); in receiveReplyFor()
1048 String commandName = "ClassType.SetValues"; in setStaticFieldValue() local
1165 String commandName = "ThreadReference.Name"; in getThreadName() local
1244 String commandName = "Method.LineTable"; in getLineNumber() local
1303 String commandName = "Method.LineTable"; in getCodeIndex() local
1337 String commandName = "EventRequest.Set"; in requestEvent() local
1359 String commandName = "EventRequest.Clear"; in clearEventRequest() local
[all …]
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/core/Classes/Console/
H A DCommandRegistry.php61 foreach ($this->commands as $commandName => $command) {
62 yield $commandName => $command;
74 foreach ($this->commands as $commandName => $command) {
75 if ($this->commandConfigurations[$commandName]['schedulable'] ?? true) {
76 yield $commandName => $command;
131 foreach ($commands as $commandName => $commandConfig) {
132 if (array_key_exists($commandName, $this->commands)) {
134 …'Command "' . $commandName . '" registered by "' . $package->getPackageKey() . '" is already in us…
138 …$this->commands[$commandName] = GeneralUtility::makeInstance($commandConfig['class'], $commandName
139 $this->commandConfigurations[$commandName] = $commandConfig;
/dports/java/javamail/javamail-JAVAMAIL-1_6_2/mail/src/test/java/com/sun/mail/imap/
H A DIMAPHandler.java216 if (commandName == null) { in handleCommand()
222 if (commandName.equals("LOGIN")) { in handleCommand()
232 } else if (commandName.equals("NOOP")) { in handleCommand()
234 } else if (commandName.equals("SELECT")) { in handleCommand()
238 } else if (commandName.equals("LIST")) { in handleCommand()
240 } else if (commandName.equals("IDLE")) { in handleCommand()
242 } else if (commandName.equals("FETCH")) { in handleCommand()
244 } else if (commandName.equals("STORE")) { in handleCommand()
250 } else if (commandName.equals("CLOSE")) { in handleCommand()
254 } else if (commandName.equals("UID")) { in handleCommand()
[all …]
/dports/net-mgmt/thanos/thanos-0.11.0/vendor/go.elastic.co/apm/module/apmredigo/
H A Dconn.go68 func (c contextConnWithTimeout) Do(commandName string, args ...interface{}) (reply interface{}, err…
69 return Do(c.ctx, c.ConnWithTimeout, commandName, args...)
72 func (c contextConnWithTimeout) DoWithTimeout(timeout time.Duration, commandName string, args ...in…
73 return DoWithTimeout(c.ctx, c.ConnWithTimeout, timeout, commandName, args...)
86 func (c contextConn) Do(commandName string, args ...interface{}) (reply interface{}, err error) {
87 return Do(c.ctx, c.Conn, commandName, args...)
91 func Do(ctx context.Context, conn redis.Conn, commandName string, args ...interface{}) (interface{}…
92 spanName := strings.ToUpper(commandName)
98 return conn.Do(commandName, args...)
103 spanName := strings.ToUpper(commandName)
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Activities.DurableInstancing/System/Activities/DurableInstancing/
H A DStoreUtilities.cs20 … public static Exception CheckRemainingResultSetForErrors(XName commandName, SqlDataReader reader) in CheckRemainingResultSetForErrors() argument
26 returnException = StoreUtilities.GetNextResultSet(commandName, reader); in CheckRemainingResultSetForErrors()
33 public static Exception CheckResult(XName commandName, SqlDataReader reader) in CheckResult() argument
40 returnValue = StoreUtilities.GetError(commandName, result, reader); in CheckResult()
62 … returnValue = new InstanceCollisionException(commandName, reader.GetGuid(1)); in GetError()
68 returnValue = new InstanceNotReadyException(commandName, reader.GetGuid(1)); in GetError()
71 returnValue = new InstanceKeyCollisionException(commandName, Guid.Empty, in GetError()
78 returnValue = new InstanceLockLostException(commandName, reader.GetGuid(1)); in GetError()
81 returnValue = new InstanceCompleteException(commandName, reader.GetGuid(1)); in GetError()
110 public static Exception GetNextResultSet(XName commandName, SqlDataReader reader) in GetNextResultSet() argument
[all …]
/dports/www/bolt/bolt-2.2.24/vendor/stecman/symfony-console-completion/src/
H A DCompletion.php24 protected $commandName; variable in Stecman\\Component\\Symfony\\Console\\BashCompletion\\Completion
57 * @param string $commandName
62 public function __construct($commandName, $targetName, $type, $completion) argument
64 $this->commandName = $commandName;
114 return $this->commandName;
121 * @param string|null $commandName
123 public function setCommandName($commandName) argument
125 $this->commandName = $commandName;

12345678910>>...63