| /plugin/asciidocjs/node_modules/nunjucks/src/ |
| D | tests.js | 32 function divisibleby(one, two) { argument 33 return one % two === 0; 52 function equalto(one, two) { argument 53 return one === two; 91 function ge(one, two) { argument 92 return one >= two; 103 function greaterthan(one, two) { argument 104 return one > two; 118 function le(one, two) { argument 119 return one <= two; [all …]
|
| /plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/ |
| D | split.test | 4 {{ "one,two,three,four,five"|split(',')|join('-') }} 12 return ['foo' => "one,two,three,four,five", 'baz' => '12345',] 14 one-two-three-four-five 15 one-two-three-four-five 16 one-two-three,four,five 20 one-two-three
|
| /plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/ |
| D | KoblitzPrime.php | 60 static $zero, $one, $two; 61 if (!isset($two)) { 62 $two = new BigInteger(2); 68 $inv = $this->one->divide($this->two)->negate(); 81 $tempTwo = $factory->newInteger($two); 116 if ($this->order->compare($r->multiply($two)) <= 0) { 122 if ($this->order->compare($r->multiply($two)) <= 0) { 182 $denominator = $this->two->multiply($p[1]); 200 $d = $d->multiply($d)->subtract($a)->subtract($c)->multiply($this->two); 203 $x3 = $f->subtract($this->two->multiply($d)); [all …]
|
| D | Prime.php | 81 protected $two; variable in phpseclib3\\Crypt\\EC\\BaseCurves\\Prime 125 $this->two = $this->factory->newInteger(new BigInteger(2)); 208 $x3 = $r->multiply($r)->subtract($h3)->subtract($v->multiply($this->two)); 245 $x3 = $r->multiply($r)->subtract($h3)->subtract($v->multiply($this->two)); 284 $x3 = $r->multiply($r)->subtract($h3)->subtract($v->multiply($this->two)); 358 $denominator = $this->two->multiply($p[1]); 377 $x1 = $m->multiply($m)->subtract($this->two->multiply($s)); 381 $z1 = $this->two->multiply($y)->multiply($z); 398 $x1 = $m->multiply($m)->subtract($this->two->multiply($s)); 402 $z1 = $this->two->multiply($y);
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/GamesConfiguration/ |
| D | GamesNumberAffixConfiguration.php | 94 public function setTwo(LocalizedStringBundle $two) argument 96 $this->two = $two; 103 return $this->two;
|
| /plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/TextUI/ |
| D | failure-isolation.phpt | 23 Failed asserting that two arrays are equal. 42 Failed asserting that two objects are equal. 61 Failed asserting that two strings are equal. 72 Failed asserting that two strings are equal. 102 Failed asserting that two strings are identical. 113 Failed asserting that two variables reference the same object.
|
| D | failure-reverse-list.phpt | 46 Failed asserting that two variables reference the same object. 52 Failed asserting that two strings are identical. 80 Failed asserting that two strings are equal. 93 Failed asserting that two strings are equal. 110 Failed asserting that two objects are equal. 129 Failed asserting that two arrays are equal.
|
| D | failure.phpt | 22 Failed asserting that two arrays are equal. 41 Failed asserting that two objects are equal. 60 Failed asserting that two strings are equal. 71 Failed asserting that two strings are equal. 101 Failed asserting that two strings are identical. 112 Failed asserting that two variables reference the same object.
|
| D | dataprovider-testdox.phpt | 17 [x] Does something with two 19 [x] Does something else with two
|
| /plugin/findologicxmlexport/vendor/twig/twig/doc/filters/ |
| D | split.rst | 12 {% set foo = "one,two,three"|split(',') %} 13 {# foo contains ['one', 'two', 'three'] #} 27 {% set foo = "one,two,three,four,five"|split(',', 3) %} 28 {# foo contains ['one', 'two', 'three,four,five'] #}
|
| /plugin/mdpage/vendor/cebe/markdown/tests/github-data/ |
| D | github-code-in-numbered-list.md | 2 2. Item two with some code: 11 code two
|
| /plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/ |
| D | max.test | 6 {{ max({2:"two", 1:"one", 3:"three", 5:"five", 4:"for"}) }} 12 two
|
| /plugin/mdpage/vendor/cebe/markdown/tests/markdown-data/ |
| D | md1_inline_html_comments.md | 9 Paragraph two. 11 <!-- one comment block -- -- with two comments -->
|
| D | lazy-list.md | 13 2. Item two with some code: 25 code two
|
| /plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/tests/MockObject/Generator/ |
| D | abstract_class.phpt | 11 abstract public function two(); 35 private $__phpunit_configurable = ['one', 'two', 'three']; 64 public function two() 79 'Foo', 'two', $arguments, '', $this, true
|
| /plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/ |
| D | Engine.php | 66 protected static $two = []; variable in phpseclib3\\Math\\BigInteger\\Engines\\Engine 140 static::$two[static::class] = new static(2); 871 if (!isset(static::$two[static::class])) { 872 static::$two[static::class] = new static('2'); 892 $x = $x->add(static::$two[static::class]); 896 if ($x->equals(static::$two[static::class])) { 953 $n_2 = $n->subtract(static::$two[static::class]); 959 $a = static::randomRange(static::$two[static::class], $n_2); 964 $y = $y->modPow(static::$two[static::class], $n); 1011 if ($this->compare(static::$two[static::class]) < 0) { [all …]
|
| /plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/PrimeField/ |
| D | Integer.php | 246 static $one, $two; 249 $two = new BigInteger(2); 255 list($pow) = $p_1->divide($two); 266 list($temp) = $q->add($one)->divide($two); 272 while (!$t->powMod($two->pow($i), static::$modulo[$this->instanceID])->equals($one)) { 279 … $b = $c->powMod($two->pow($m->subtract($i)->subtract($one)), static::$modulo[$this->instanceID]);
|
| /plugin/spreadout/ |
| D | plugin.info.txt | 6 desc A simple plugin that allows for two spaces between content sentences if the user types two s…
|
| D | README.md | 2 A simple plugin that allows for two spaces between content sentences if the user types two spaces r…
|
| /plugin/twofactor/lang/en/ |
| D | optout.txt | 1 This wiki has the ability to use two-factor authentication. It is highly recommended using it by co… 3 However, if you don't want to use this option, you can opt out below. You can always re-enable two-…
|
| D | admin.txt | 5 …is will reset **all** two-factor mechanisms for the user! Depending on your setup, the user may be…
|
| /plugin/authyubikey/ |
| D | plugin.info.txt | 5 name Plain Auth Plugin with Yubikey's two factor identifiction via OTP 6 desc Provides user authentication against DokuWiki's local password storage combined with the two…
|
| /plugin/findologicxmlexport/vendor/twig/twig/doc/tags/ |
| D | embed.rst | 54 two vertically stacked boxes: 72 two boxes side by side: 89 Without the ``embed`` tag, you have two ways to design your templates: 91 * Create two "intermediate" base templates that extend the master layout 99 These two solutions do not scale well because they each have a major drawback: 113 code can live in a single base template, and the two different content structures,
|
| /plugin/combo/vendor/dragonmantank/cron-expression/tests/Cron/ |
| H A D | CronExpressionTest.php | 254 $two = $cron->getNextRunDate('now', 1); 255 $this->assertEquals($next, $cron->getPreviousRunDate($two)); 259 $two = $cron->getNextRunDate('now', 1); 260 $this->assertEquals($next, $cron->getPreviousRunDate($two)); 264 $two = $cron->getNextRunDate('now', 1); 265 $this->assertEquals($next, $cron->getPreviousRunDate($two));
|
| /plugin/newpagetemplate/ |
| D | newpage.ini | 12 page[] = playground:current:two 17 page[] = playground:persistent:two
|