| /plugin/asciidocjs/node_modules/minimist/test/ |
| D | unknown.js | 6 test('boolean and alias is not unknown', function (t) { 7 var unknown = []; 9 unknown.push(arg); 17 unknown: unknownFn, property 22 t.same(unknown, ['--derp', '-d']); 26 test('flag boolean true any double hyphen argument is not unknown', function (t) { 27 var unknown = []; 29 unknown.push(arg); 34 unknown: unknownFn, property 36 t.same(unknown, ['--tacos=good', 'cow', '-p']); [all …]
|
| /plugin/combo/ComboStrap/ |
| H A D | FileSystems.php | 26 throw new ExceptionRuntime("File system ($scheme) unknown"); 31 * @throws ExceptionNotFound - if the file does not exists or the mime is unknown 42 throw new ExceptionRuntime("File system ($scheme) unknown"); 58 throw new ExceptionRuntime("File system ($scheme) unknown"); 76 throw new ExceptionRuntime("File system ($scheme) unknown"); 104 throw new ExceptionRuntime("File system ($scheme) unknown"); 118 throw new ExceptionRuntime("File system ($scheme) unknown"); 135 throw new ExceptionRuntime("File system ($scheme) unknown"); 148 throw new ExceptionRuntime("File system ($scheme) unknown"); 167 throw new ExceptionRuntime("File system ($scheme) unknown"); [all …]
|
| H A D | Brand.php | 36 private bool $unknown = false; variable in ComboStrap\\Brand 82 $this->unknown = true; 208 * If the brand name is unknown (ie custom) 213 return $this->unknown; 272 // Unknown or current brand / unknown color
|
| /plugin/asciidocjs/node_modules/yargs/build/lib/ |
| D | validation.js | 74 const unknown = []; 81 unknown.push(key); 90 unknown.push('' + key); 102 !unknown.includes(key)) { 103 unknown.push(key); 108 if (unknown.length) { 109 …usage.fail(__n('Unknown argument: %s', 'Unknown arguments: %s', unknown.length, unknown.join(', ')… 117 const unknown = []; 122 unknown.push('' + key); 126 if (unknown.length > 0) { [all …]
|
| /plugin/findologicxmlexport/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/ |
| D | Annotation.php | 52 * Error handler for unknown property accessor in Annotation class. 54 * @param string $name Unknown property name. 61 sprintf("Unknown property '%s' on annotation '%s'.", $name, get_class($this)) 66 * Error handler for unknown property mutator in Annotation class. 68 * @param string $name Unknown property name. 76 sprintf("Unknown property '%s' on annotation '%s'.", $name, get_class($this))
|
| /plugin/asciidocjs/node_modules/pug-filters/node_modules/yargs/lib/ |
| D | validation.js | 78 // check for unknown arguments (strict-mode). 82 unknown = [], 96 unknown.push(key) 100 if (unknown.length === 1) { 101 usage.fail('Unknown argument: ' + unknown[0]) 102 } else if (unknown.length > 1) { 103 usage.fail('Unknown arguments: ' + unknown.join(', '))
|
| /plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/ |
| D | EvalBarrett.php | 179 * Inline Multiply (unknown, known) 302 * For when $known is more digits than $unknown. This is the harder use case to optimize for. 305 * @param string $unknown 310 private static function generateInlineSubtract2($known, $unknown, $result, $class) argument 315 $size = count($' . $unknown . '); 317 …$sum = ($' . $known . '[$j] - $' . $unknown . '[$j]) * ' . $class::BASE_FULL . ' + $' . $known . '… 318 - $' . $unknown . '[$i] 340 $sum = $' . $known . '[$i] - $' . $unknown . '[$i] - $carry; 361 * For when $unknown is more digits than $known. This is the easier use case to optimize for. 363 * @param string $unknown [all …]
|
| /plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/tests/_files/Report/XML/CoverageForBankAccount/ |
| D | index.xml | 5 …<test name="BankAccountTest::testBalanceIsInitiallyZero" size="unknown" result="0" status="PASSED"… 6 …<test name="BankAccountTest::testBalanceCannotBecomeNegative" size="unknown" result="0" status="PA… 7 …<test name="BankAccountTest::testBalanceCannotBecomeNegative2" size="unknown" result="0" status="P… 8 … <test name="BankAccountTest::testDepositWithdrawMoney" size="unknown" result="0" status="PASSED"/>
|
| /plugin/countdown/ |
| D | ChangeLog | 37 * lang/: French language file <unknown>. 42 * lang/: Estonian language file <unknown>. 47 * lang/: Polish language file <unknown>. 60 * lang/: Swedish language file <unknown>.
|
| /plugin/icalevents/vendor/sabre/vobject/lib/Property/ |
| D | Unknown.php | 6 * Unknown property. 15 class Unknown extends Text { class 40 return 'UNKNOWN';
|
| /plugin/asciidocjs/node_modules/commander/ |
| D | index.js | 578 * Allow unknown options on the command line. 581 * for unknown options. 858 _dispatchSubcommand(commandName, operands, unknown) { argument 863 this._executeSubCommand(subCommand, operands.concat(unknown)); 865 subCommand._parseCommand(operands, unknown); 875 _parseCommand(operands, unknown) { argument 876 const parsed = this.parseOptions(unknown); 878 unknown = parsed.unknown; 879 this.args = operands.concat(unknown); 882 this._dispatchSubcommand(operands[0], operands.slice(1), unknown); [all …]
|
| /plugin/webdav/vendor/sabre/vobject/lib/Property/ |
| D | Unknown.php | 6 * Unknown property. 15 class Unknown extends Text class 39 return 'UNKNOWN';
|
| /plugin/ipban/ip-lib/src/Range/ |
| D | Type.php | 11 * Unspecified/unknown address. 112 return 'Unspecified/unknown address'; 138 return $type === null ? 'Unknown type' : sprintf('Unknown type (%s)', $type);
|
| /plugin/davcard/vendor/sabre/vobject/lib/Property/ |
| D | Unknown.php | 12 * Unknown property 21 class Unknown extends Text { class 46 return "UNKNOWN";
|
| /plugin/webdavclient/vendor/sabre/vobject/lib/Property/ |
| D | Unknown.php | 12 * Unknown property 21 class Unknown extends Text { class 46 return "UNKNOWN";
|
| /plugin/davcal/vendor/sabre/vobject/lib/Property/ |
| H A D | Unknown.php | 12 * Unknown property 21 class Unknown extends Text { class 46 return "UNKNOWN";
|
| /plugin/asciidocjs/node_modules/commander/typings/ |
| D | index.d.ts | 205 * Allow unknown options on the command line. 207 * @param [arg] if `true` or omitted, no error will be thrown for unknown options. 248 * and return argv split into operands and unknown arguments. 251 * argv => operands, unknown 254 * sub --unknown uuu op => [sub], [--unknown uuu op] 255 * sub -- --unknown uuu op => [sub --unknown uuu op], [] 371 unknown: string[]; property
|
| /plugin/sentry/action/ |
| D | ajax.php | 87 'filename' => $parts[3] ? $parts[3] : '<unknown file>', 88 'function' => $parts[1] ? $parts[1] : '<unknown function>', 94 'filename' => $parts[2] ? $parts[2] : '<unknown file>', 95 'function' => $parts[1] ? $parts[1] : '<unknown function>',
|
| /plugin/asciidocjs/node_modules/yargs-parser/ |
| D | README.md | 483 ### unknown options as args 486 * key: `unknown-options-as-args` 488 Should unknown options be treated like regular arguments? An unknown option is one that is not 494 $ node example.js --unknown-option --known-option 2 --string-option --unknown-option2 501 $ node example.js --unknown-option --known-option 2 --string-option --unknown-option2 502 { _: ['--unknown-option'], knownOption: 2, stringOption: '--unknown-option2' }
|
| /plugin/asciidocjs/node_modules/yargs/locales/ |
| D | en.json | 32 "Unknown argument: %s": { 33 "one": "Unknown argument: %s", 34 "other": "Unknown arguments: %s"
|
| /plugin/webcomics/lang/en/ |
| D | lang.php | 10 $lang['unknown'] = 'Unknown comic "%COMIC%"';
|
| /plugin/xref/lang/en/ |
| D | lang.php | 3 $lang['unknown'] = 'unknown definition';
|
| /plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/exceptions/ |
| D | multiline_function_with_unknown_argument.test | 2 Exception for multiline function with unknown argument 9 Twig\Error\SyntaxError: Unknown argument "invalid" for function "include(template, variables, with_…
|
| /plugin/bureaucracyau/lang/en/ |
| D | lang.php | 3 $lang['e_unknowntype'] = 'Unknown type "%s"'; 4 $lang['e_unknownaction'] = 'Unknown action "%s"'; 8 $lang['e_unknownconstraint'] = 'Unknown field constraint %s';
|
| /plugin/bureaucracy/lang/en/ |
| D | lang.php | 3 $lang['e_unknowntype'] = 'Unknown type "%s"'; 4 $lang['e_unknownaction'] = 'Unknown action "%s"'; 8 $lang['e_unknownconstraint'] = 'Unknown field constraint %s';
|