Home
last modified time | relevance | path

Searched refs:two (Results 1 – 25 of 869) sorted by relevance

12345678910>>...35

/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/
H A Dsplit.test4 {{ "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/
H A DKoblitzPrime.php60 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]);
203 $x3 = $f->subtract($this->two->multiply($d));
207 $z3 = $this->two->multiply($y1)->multiply($z1);
[all …]
H A DPrime.php81 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/
H A DGamesNumberAffixConfiguration.php94 public function setTwo(LocalizedStringBundle $two) argument
96 $this->two = $two;
103 return $this->two;
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/TextUI/
H A Dfailure-isolation.phpt23 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.
H A Dfailure-reverse-list.phpt46 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.
H A Dfailure.phpt22 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.
H A Ddataprovider-testdox.phpt17 [x] Does something with two
19 [x] Does something else with two
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/
H A Dmax.test6 {{ max({2:"two", 1:"one", 3:"three", 5:"five", 4:"for"}) }}
12 two
/plugin/mdpage/vendor/cebe/markdown/tests/github-data/
H A Dgithub-code-in-numbered-list.md2 2. Item two with some code:
11 code two
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/
H A Dsplit.rst12 {% 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/markdown-data/
H A Dmd1_inline_html_comments.md9 Paragraph two.
11 <!-- one comment block -- -- with two comments -->
H A Dlazy-list.md13 2. Item two with some code:
25 code two
/plugin/spreadout/
H A Dplugin.info.txt6 desc A simple plugin that allows for two spaces between content sentences if the user types two s…
H A DREADME.md2 A simple plugin that allows for two spaces between content sentences if the user types two spaces r…
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/tests/MockObject/Generator/
H A Dabstract_class.phpt11 abstract public function two();
35 private $__phpunit_configurable = ['one', 'two', 'three'];
64 public function two()
79 'Foo', 'two', $arguments, '', $this, true
/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/Fixtures/
H A DnumericMappingKeys.yml16 2: two
21 2 => 'two',
H A DunindentedCollections.yml13 test: Nested unindented collection (two levels)
33 - two
36 ['collection' => ['key' => ['subkey' => ['one', 'two', 'three']]]]
/plugin/twofactor/lang/en/
H A Doptout.txt1 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-…
H A Dadmin.txt5 …is will reset **all** two-factor mechanisms for the user! Depending on your setup, the user may be…
/plugin/authyubikey/
H A Dplugin.info.txt5 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/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/PrimeField/
H A DInteger.php246 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/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DEngine.php66 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]);
1011 if ($this->compare(static::$two[static::class]) < 0) {
1033 $g = static::$two[static::class];
1036 $g = $g->multiply(static::$two[static::class]);
[all …]
/plugin/newpagetemplate/
H A Dnewpage.ini12 page[] = playground:current:two
17 page[] = playground:persistent:two
/plugin/scrape/HTMLPurifier/ConfigSchema/schema/
H A DCore.AggressivelyFixLt.txt9 during parsing stage. Enabling this will result in two preg_replace_callback
10 calls and at least two preg_replace calls for every HTML document parsed;

12345678910>>...35