| /plugin/asciidocjs/node_modules/pug-filters/node_modules/yargs/lib/ |
| D | validation.js | 3 module.exports = function (yargs, usage) { argument 13 usage.fail(demanded._.msg) 15 usage.fail('Not enough non-option arguments: got ' 44 usage.fail('Missing argument value: ' + missingRequiredArgs[0]) 47 usage.fail(message) 74 usage.fail('Missing required arguments: ' + Object.keys(missing).join(', ') + customMsg) 80 var descriptions = usage.getDescriptions(), 101 usage.fail('Unknown argument: ' + unknown[0]) 103 usage.fail('Unknown arguments: ' + unknown.join(', ')) 118 usage.fail('Argument check failed: ' + f.toString()) [all …]
|
| D | usage.js | 51 var usage 52 self.usage = function (msg) { function 53 usage = msg 113 if (usage) { 114 var u = usage.replace(/\$0/g, yargs.$0)
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Compute/ |
| D | Quota.php | 31 public $usage; variable in Google\\Service\\Compute\\Quota 69 public function setUsage($usage) argument 71 $this->usage = $usage; 75 return $this->usage;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Drive/ |
| D | AboutStorageQuota.php | 29 public $usage; variable in Google\\Service\\Drive\\AboutStorageQuota 56 public function setUsage($usage) argument 58 $this->usage = $usage; 65 return $this->usage;
|
| /plugin/asciidocjs/node_modules/pug-filters/node_modules/yargs/ |
| D | index.js | 16 var usage = null 59 usage = Usage(self) // handle usage output. 60 validation = Validation(self, usage) // handle arg validation. 61 completion = Completion(self, usage) 109 usage.example(cmd, description) 114 usage.command(cmd, description) 136 defaultDescription = usage.functionDescription(value, defaultDescription) 195 self.usage = function (msg, opts) { function 201 usage.usage(msg) 209 usage.epilog(msg) [all …]
|
| D | README.md | 161 .usage('Usage: $0 -w [num] -yh[num]') 291 .usage('Usage: $0 <command> [options]') 384 a value. The name of the function will be used in the usage string: 394 displaying the value in the usage instructions: 407 If `key` is a string, show the usage information and exit if `key` wasn't 426 usage information and exit. 441 Describe a `key` for the generated usage information. 495 .usage(message, opts) 498 Set a usage message to show which commands to use. Inside `message`, the string 520 .usage('npm <command>') [all …]
|
| /plugin/combo/ComboStrap/Meta/Field/ |
| H A D | PageImages.php | 79 $usage = null; 83 $usage = $value[PageImageUsage::PERSISTENT_NAME]; 84 if (is_string($usage)) { 85 $usage = explode(",", $usage); 95 $usage = $value[PageImageUsage::PERSISTENT_NAME]; 96 if (!is_array($usage)) { 97 $usage = explode(",", $usage);; 104 if ($usage !== null) { 105 $pageImage->setUsages($usage);
|
| /plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Processor/ |
| D | MemoryUsageProcessor.php | 27 $usage = memory_get_usage($this->realUsage); 30 $usage = $this->formatBytes($usage); 33 $record['extra']['memory_usage'] = $usage;
|
| D | MemoryPeakUsageProcessor.php | 27 $usage = memory_get_peak_usage($this->realUsage); 30 $usage = $this->formatBytes($usage); 33 $record['extra']['memory_peak_usage'] = $usage;
|
| /plugin/asciidocjs/node_modules/yargs/build/lib/ |
| D | validation.js | 6 export function validation(yargs, usage, shim) { argument 18 usage.fail(demandedCommands._.minMsg 25 …usage.fail(__n('Not enough non-option arguments: got %s, need at least %s', 'Not enough non-option… 30 usage.fail(demandedCommands._.maxMsg 37 …usage.fail(__n('Too many non-option arguments: got %s, maximum of %s', 'Too many non-option argume… 44 …usage.fail(__n('Not enough non-option arguments: got %s, need at least %s', 'Not enough non-option… 65 …usage.fail(__n('Missing required argument: %s', 'Missing required arguments: %s', Object.keys(miss… 109 …usage.fail(__n('Unknown argument: %s', 'Unknown arguments: %s', unknown.length, unknown.join(', ')… 127 …usage.fail(__n('Unknown command: %s', 'Unknown commands: %s', unknown.length, unknown.join(', '))); 162 …\n ${__('Argument: %s, Given: %s, Choices: %s', key, usage.stringifiedValues(invalid[key]), usage… [all …]
|
| D | completion.js | 7 constructor(yargs, usage, command, shim) { argument 10 this.usage = usage; 45 this.usage.getCommands().forEach(usageCommand => { 63 … const positionalKeys = this.yargs.getGroups()[this.usage.getPositionalGroupName()] || []; 121 const descs = this.usage.getDescriptions(); 192 export function completion(yargs, usage, command, shim) { argument 193 return new Completion(yargs, usage, command, shim);
|
| /plugin/aichat/Model/Mistral/ |
| D | AbstractMistralModel.php | 20 if (isset($response['usage'])) { 21 $this->inputTokensUsed += $response['usage']['prompt_tokens'] ?? 0; 22 $this->outputTokensUsed += $response['usage']['completion_tokens'] ?? 0;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceUsage/ |
| D | GoogleApiServiceusageV1ServiceConfig.php | 177 public function setUsage(Usage $usage) argument 179 $this->usage = $usage; 186 return $this->usage;
|
| D | GoogleApiService.php | 455 public function setUsage(Usage $usage) argument 457 $this->usage = $usage; 464 return $this->usage;
|
| /plugin/pwaoffline/ |
| D | script.js | 74 const perc = Math.round((estimate.usage / estimate.quota) * 100 * 100) / 100; 76 const usage = getAsStringMiB(estimate.usage); 78 const msg = 'Current storage usage on this device for this origin: ' + usage + '/' + quota;
|
| /plugin/aichat/Model/Anthropic/ |
| D | ChatModel.php | 68 if (isset($response['usage'])) { 69 $this->inputTokensUsed += $response['usage']['input_tokens']; 70 $this->outputTokensUsed += $response['usage']['output_tokens'];
|
| /plugin/findologicxmlexport/vendor/hoa/protocol/Bin/ |
| D | Resolve.php | 104 return $this->usage(); 116 return $this->usage(); 165 public function usage() function in Hoa\\Protocol\\Bin\\Resolve
|
| /plugin/findologicxmlexport/vendor/hoa/compiler/Bin/ |
| D | Pp.php | 91 return $this->usage(); 119 return $this->usage(); 126 return $this->usage(); 250 public function usage() function in Hoa\\Compiler\\Bin\\Pp
|
| /plugin/freechat/phpfreechat/src/commands/ |
| D | redirect.class.php | 7 var $usage = "/redirect url"; variable in pfcCommand_redirect 24 $cmdp["param"] .= " (".$this->usage.")";
|
| D | deop.class.php | 7 var $usage = "/deop {nickname}"; variable in pfcCommand_deop 20 $cmdp["param"] .= " (".$this->usage.")";
|
| D | me.class.php | 7 var $usage = "/me {message}"; variable in pfcCommand_me 26 $cmdp["param"] .= " (".$this->usage.")";
|
| D | op.class.php | 7 var $usage = "/op {nickname}"; variable in pfcCommand_op 26 $cmdp["param"] .= " (".$this->usage.")";
|
| D | leave.class.php | 8 var $usage = "/leave [ch|pv [[{channel|nickname}] {reason}]]"; variable in pfcCommand_leave 32 $cmdp["param"] .= " (".$this->usage.")"; 138 $cmdp["param"] .= " (".$this->usage.")";
|
| /plugin/findologicxmlexport/vendor/hoa/ustring/Bin/ |
| D | Fromcode.php | 89 return $this->usage(); 107 public function usage() function in Hoa\\Ustring\\Bin\\Fromcode
|
| D | Tocode.php | 89 return $this->usage(); 107 public function usage() function in Hoa\\Ustring\\Bin\\Tocode
|