| /plugin/findologicxmlexport/vendor/symfony/yaml/Tests/Fixtures/ |
| D | YtsFoldedScalars.yml | 1 --- %YAML:1.0 10 --- 15 ['this' => "Foo\nBar\n"] 16 --- 32 'normal' => "extra new lines not kept\n", 33 'preserving' => "extra new lines are kept\n\n\n", 36 --- 41 the keep '+' and chomp '-' indicators. 47 This has one newline. 51 same as "clipped" above: "This has one newline.\n" [all …]
|
| D | YtsSpecificationExamples.yml | 1 --- %YAML:1.0 5 - Mark McGwire 6 - Sammy Sosa 7 - Ken Griffey 10 --- 19 --- 24 - Boston Red Sox 25 - Detroit Tigers 26 - New York Yankees 28 - New York Mets [all …]
|
| D | escapedCharacters.yml | 3 \0 \ \a \b \n 5 "\\0 \\ \\a \\b \\n" 6 --- 12 --- 18 --- 24 --- 30 --- 36 --- 39 "\n" 42 --- [all …]
|
| D | sfTests.yml | 1 --- %YAML:1.0 2 test: Multiple quoted string on one line 4 Multiple quoted string on one line 9 --- 15 --- 21 --- 29 --- 34 - false 35 - true 36 - null [all …]
|
| /plugin/findologicxmlexport/vendor/symfony/yaml/Tests/ |
| D | ParserTest.php | 27 $this->parser = new Parser(); 32 $this->parser = null; 42 $this->assertEquals($expected, var_export($this->parser->parse($yaml), true), $comment); 47 return $this->loadTestsFromFixtureFiles('index.yml'); 52 return $this->loadTestsFromFixtureFiles('nonStringKeys.yml'); 59 "foo:\n bar", 60 "foo:\n bar", 61 "foo:\n bar", 62 "foo:\n bar", 67 $content = $this->parser->parse($yaml); [all …]
|
| /plugin/dw2pdf/vendor/mpdf/mpdf/src/Utils/ |
| D | Arrays.php | 22 * Returns an array of all k-combinations from an input array of n elements, where k equals 1..n. 25 * Example: array[one, two] will give: 27 * [one], 29 * [one, two] 47 $n = count($input); 48 for ($k = 2; $k <= $n; $k++) { 56 * Returns an array of unique k-combinations from an input array. 58 * Example: array=[one, two, three] and k=2 will give: 60 * [one, two], 61 * [one, three] [all …]
|
| /plugin/struct/_test/ |
| H A D | ValueTest.php | 30 $col = $this->makeColumn(true); 31 $val = new Value($col, ['one', 'two']); 32 $this->assertSame($col, $val->getColumn()); 33 $this->assertEquals(['one', 'two'], $val->getValue()); 35 $val->setValue(['one', '', 'two', '']); 36 $this->assertEquals(['one', 'two'], $val->getValue()); 38 $val->setValue(['one', '0', 'two']); 39 $this->assertEquals(['one', '0', 'two'], $val->getValue()); 41 $val->setValue(['', null, false, " \n"]); 42 $this->assertEquals([], $val->getValue()); [all …]
|
| /plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/ |
| D | OpenSSH.php | 14 * @license http://www.opensource.org/licenses/mit-license.html MIT License 38 protected static $types = ['ssh-rsa']; 50 static $one; 51 if (!isset($one)) { 52 $one = new BigInteger(1); 75 $temp = $primes[1]->subtract($one); 76 $exponents = [1 => $publicExponent->modInverse($temp)]; 77 $temp = $primes[2]->subtract($one); 78 $exponents[] = $publicExponent->modInverse($temp); 99 * @param \phpseclib3\Math\BigInteger $n [all …]
|
| D | PuTTY.php | 12 * @license http://www.opensource.org/licenses/mit-license.html MIT License 45 protected static $types = ['ssh-rsa']; 57 static $one; 58 if (!isset($one)) { 59 $one = new BigInteger(1); 84 $temp = $primes[1]->subtract($one); 85 $exponents = [1 => $publicExponent->modInverse($temp)]; 86 $temp = $primes[2]->subtract($one); 87 $exponents[] = $publicExponent->modInverse($temp); 96 * @param \phpseclib3\Math\BigInteger $n [all …]
|
| D | Raw.php | 16 * 1, n, modulo, modulus 22 * @license http://www.opensource.org/licenses/mit-license.html MIT License 50 throw new \UnexpectedValueException('Key should be a array - not a ' . gettype($key)); 64 foreach (['n', 'modulo', 'modulus', 1] as $index) { 121 $one = new BigInteger(1); 122 $temp = $components['primes'][1]->subtract($one); 123 $exponents = [1 => $components['publicExponent']->modInverse($temp)]; 124 $temp = $components['primes'][2]->subtract($one); 125 $exponents[] = $components['publicExponent']->modInverse($temp); 130 …$components['coefficients'] = [2 => $components['primes'][2]->modInverse($components['primes'][1])… [all …]
|
| /plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Prediction/ |
| D | CallPrediction.php | 38 $this->util = $util ?: new StringUtil; 42 * Tests that there was at least one call. 56 $methodCalls = $object->findProphecyMethodCalls( 57 $method->getMethodName(), 63 "No calls have been made that match:\n". 64 " %s->%s(%s)\n". 65 "but expected at least one.\n". 66 "Recorded `%s(...)` calls:\n%s", 68 get_class($object->reveal()), 69 $method->getMethodName(), [all …]
|
| /plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/ |
| D | DSA.php | 4 * Pure-PHP FIPS 186-4 compliant implementation of DSA. 14 * $public = $private->getPublicKey(); 18 * $signature = $private->sign($plaintext); 20 * echo $public->verify($plaintext, $signature) ? 'verified' : 'unverified'; 28 * @license http://www.opensource.org/licenses/mit-license.html MIT License 42 * Pure-PHP FIPS 186-4 compliant implementation of DSA. 69 * Prime divisor of p-1 113 * @param int $N 116 public static function createParameters($L = 2048, $N = 224) argument 125 case $N == 160: [all …]
|
| /plugin/structtasks/_test/ |
| D | CliTest.php | 15 * Tests CLI-related methods for the structtasks plugin 28 $this->loadSchemaJSON('valid', '', 100); 30 $this->assertTrue($cli->initialise()); 36 $this->loadSchemaJSON('badstatus', '', 100); 38 $this->assertFalse($cli->initialise(false)); 45 $this->assertFalse($cli->initialise(false)); 51 $this->assertFalse($cli->initialise()); 57 $n = $cli->createNotifiers([3, 2, 1, 0], true); 58 $this->assertEquals(3, count($n)); 59 $this->assertInstanceOf(TodayNotifier::class, $n[0]); [all …]
|
| /plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/ |
| D | Engine.php | 12 * @license http://www.opensource.org/licenses/mit-license.html MIT License 50 * @var array<class-string<static>, static> 57 * @var array<class-string<static>, static> 59 protected static $one = []; variable in phpseclib3\\Math\\BigInteger\\Engines\\Engine 64 * @var array<class-string<static>, static> 71 * @var array<class-string<static>, class-string<static>> 78 * @var array<class-string<static>, bool> 102 protected $precision = -1; 131 * @param int|numeric-string $x integer Base-10 number or base-$base number if $base set. 139 static::$one[static::class] = new static(1); [all …]
|
| /plugin/codemirror/dist/modes/ |
| D | pig.min.js.map | 1 …n// Distributed under an MIT license: https://codemirror.net/LICENSE\n\n/*\n * Pig Latin Mode…
|
| D | velocity.min.js.map | 1 …n// Distributed under an MIT license: https://codemirror.net/LICENSE\n\n(function(mod) {\n if (ty…
|
| /plugin/codeprettify/code-prettify/src/ |
| D | lang-css.js | 9 * http://www.apache.org/licenses/LICENSE-2.0 25 * <pre class="prettyprint lang-css"></pre> 39 // compiled/minified separately from one another. Other symbols defined in 60 // pragma-info and produces a lexer. A token description looks like 61 // [STYLE_NAME, /regular-expression/, pragmas] 66 // try each regular expression in order until one matches 70 // do a buffer copy on the matched portion which is O(n*n) 74 // 1. use js-modules/combinePrefixPatterns.js to 75 // combine all regular expressions into one 77 // 3. for each token try regular expressions in order until one matches it [all …]
|
| /plugin/pdfjs/pdfjs/web/locale/kab/ |
| D | viewer.properties | 7 # http://www.apache.org/licenses/LICENSE-2.0 18 next.title=Asebter d-iteddun 29 page_of_pages=({{pageNumber}} n {{pagesCount}}) 59 page_rotate_ccw.title=Tuzzya amgal-usrig 60 page_rotate_ccw.label=Tuzzya amgal-usrig 61 page_rotate_ccw_label=Tuzzya amgal-usrig 63 cursor_text_select_tool.title=Rmed afecku n tefrant n uḍris 64 cursor_text_select_tool_label=Afecku n tefrant n uḍris 75 spread_none.title=Ur sedday ara isiɣzaf n usebter 77 spread_odd.title=Seddu isiɣzaf n usebter ibeddun s yisebtar irayuganen [all …]
|
| /plugin/diagramsnet/lib/js/diagramly/sidebar/ |
| D | Sidebar-ER.js | 20 function createEdge(style, m, n) argument 30 …var cell1 = new mxCell(m, new mxGeometry(-1, 0, 0, 0), 'resizable=0;html=1;align=left;verticalAlig… 37 if (n != null) 39 …var cell2 = new mxCell(n, new mxGeometry(1, 0, 0, 0), 'resizable=0;html=1;align=right;verticalAlig… 98 … var cell1 = new mxCell('+Attribute1\n+Attribute2\n+Attribute3', new mxGeometry(0, 30, 160, 90), 114 …100, 40, '<span style="border-bottom: 1px dotted">Attribute</span>', 'Weak Key Attribute', null, n… 157 [createEdge('endArrow=none;html=1;rounded=0;', null, 'N')], 158 160, 0, 'Mandatory Participation (0:N)'); 163 [createEdge('endArrow=none;html=1;rounded=0;', 'M', 'N')], 164 160, 0, 'Mandatory Participation (M:N)'); [all …]
|
| /plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ |
| D | UnitConverter.php | 4 * Class for converting between different unit-lengths as specified by 19 * encode conversion data from one system to the next, with a O(n^2) 58 $this->outputPrecision = $output_precision; 59 $this->internalPrecision = $internal_precision; 60 $this->bcmath = !$force_no_bcmath && function_exists('bcmul'); 64 * Converts a length object of one unit into another unit. 76 * - If a number is zero-padded as a result of this significant 78 * - If a number contains less than four sigfigs ($outputPrecision) 84 if (!$length->isValid()) { 88 $n = $length->getN(); [all …]
|
| /plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Lexer/ |
| D | PH5P.php | 4 * Experimental HTML5-based parser using Jeroen van der Meer's PH5P library. 5 * Occupies space in the HTML5 pseudo-namespace, which may cause conflicts. 23 $new_html = $this->normalize($html, $config, $context); 24 $new_html = $this->wrapHTML($new_html, $config, $context, false /* no div */); 27 $doc = $parser->save(); 31 $context->register('PH5PError', $e); // save the error, so we can detect it 32 return $lexer->tokenizeHTML($html, $config, $context); // use original HTML 35 $this->tokenizeDOM( 36 $doc->getElementsByTagName('html')->item(0)-> // <html> 37 getElementsByTagName('body')->item(0) // <body> [all …]
|
| /plugin/fedauth/classes/ |
| D | fa_providerlist.class.php | 3 * Federated Login for DokuWiki - provider list class 24 * On-load normalization is planned in the nearest future. 70 $instance->loadFrom($cfg); 80 $this->cfgFile = $cfg; 82 if (file_exists($this->cfgFile)) { 87 include($this->cfgFile); 88 $this->order_large = $fa_order_large; 89 $this->order_small = $fa_order_small; 93 $this->providers[$id] = $provider; 95 if (!in_array($id, $this->order_large) && !in_array($id, $this->order_small)) { [all …]
|
| /plugin/offline/ |
| D | which_binaries.php | 9 echo '<h1>Installed programs</h1>' . "\n"; 10 echo '<h2>Archivers</h2>' . "\n"; 11 …elow lists information about some standard archivers (aka \'packers\') on your system.</p>' . "\n"; 12 …in configuration in the field <em>plugin > offline > archiverPathToBinary </em>.</p>' . "\n"; 13 …one of the programs is not available the information \'Not installed\' will be given. This means y… 15 $outStr .= '<table border="1" cellspacing="0" cellpadding="2">' . "\n"; 16 $outStr .= ' <tr>' . "\n"; 17 $outStr .= ' <th>Program</th>' . "\n"; 18 $outStr .= ' <th>Path to binary</th>' . "\n"; 19 $outStr .= ' </tr>' . "\n"; [all …]
|
| /plugin/commentsyntax/_test/ |
| D | syntax.test.php | 31 return str_replace(["\r", "\n"], $eol, $s); 38 return $this->normalizeLineEndings($xhtml); 42 * C-style comment syntax 46 $text = "\nWiki /* comment out */ text\n"; 48 $this->assertEquals($expectHtml, $this->getHtml($text)); 60 $this->assertEquals($expectHtml, $this->getHtml($text)); 73 $this->assertEquals($expectHtml, $this->getHtml($text)); 77 * One line comment 81 $text = "\nWiki text // allow slash (/) in one line comment\n"; 83 $this->assertEquals($expectHtml, $this->getHtml($text)); [all …]
|
| /plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/ |
| D | MultipartStream.php | 9 * multipart/form-data stream. 33 $this->boundary = $boundary ?: sha1(uniqid('', true)); 34 $this->stream = $this->createStream($elements); 44 return $this->boundary; 59 $str .= "{$key}: {$value}\r\n"; 62 return "--{$this->boundary}\r\n" . trim($str) . "\r\n\r\n"; 73 $this->addElement($stream, $element); 77 $stream->addStream(Utils::streamFor("--{$this->boundary}--\r\n")); 93 $uri = $element['contents']->getMetadata('uri'); 99 list($body, $headers) = $this->createElement( [all …]
|