Home
last modified time | relevance | path

Searched refs:numbers (Results 1 – 25 of 207) sorted by relevance

123456789

/plugin/sequencediagram/bower_components/lodash/vendor/underscore/test/
H A Dchaining.js27 var numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
28 numbers = _(numbers).chain().select(function(n) {
35 assert.deepEqual(numbers, [10, 6, 2], 'filtered and reversed the numbers');
39 var numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
40 numbers = _.chain(numbers).select(function(n) {
47 assert.deepEqual(numbers, [10, 6, 2], 'filtered and reversed the numbers');
51 var numbers = [1, 2, 3, 4, 5];
52 numbers = _(numbers).chain()
59 assert.deepEqual(numbers, [34, 10, 8, 6, 4, 2, 10, 10], 'can chain together array functions.');
H A Darrays.js33 var numbers = [1, 2, 3, 4];
125 var numbers = [10, 20, 30, 40, 50];
302 var numbers = [1, 2, 3];
316 numbers = [10, 20, 30, 40, 50];
321 index = _.indexOf(numbers, num, true);
332 numbers = [1, 2, 3, 1, 2, 3, 1, 2, 3];
333 index = _.indexOf(numbers, 2, 5);
372 var numbers = [1, 0, 1];
376 numbers = [1, 0, 1, 0, 0, 1, 0, 0, 0];
377 numbers.lastIndexOf = null;
[all …]
H A Dcollections.js418 var numbers = [1, 2, 3, 1, 2, 3, 1, 2, 3];
419 assert.strictEqual(_.includes(numbers, 1, 1), true, 'takes a fromIndex');
423 assert.strictEqual(_.includes(numbers, 1, 6), true, 'takes a fromIndex');
769 var numbers = _.range(20);
770 var shuffled = _.shuffle(numbers);
783 var numbers = _.range(10);
784 var allSampled = _.sample(numbers, 10).sort();
786 allSampled = _.sample(numbers, 20).sort();
788 …assert.ok(_.contains(numbers, _.sample(numbers)), 'sampling a single element returns something fro…
806 var numbers = _.toArray({one: 1, two: 2, three: 3});
[all …]
/plugin/sketchcanvas/script/
H A Di18next-1.7.2.min.js
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudRetail/
H A DGoogleCloudRetailV2CustomAttribute.php27 public $numbers; variable in Google\\Service\\CloudRetail\\GoogleCloudRetailV2CustomAttribute
51 public function setNumbers($numbers) argument
53 $this->numbers = $numbers;
57 return $this->numbers;
/plugin/findologicxmlexport/vendor/phpunit/php-token-stream/tests/_fixture/
H A Dphp-code-coverage-issue-424.php5 public function even($numbers) argument
7 $numbers = array_filter($numbers, function($number) {
11 return array_merge($numbers);
/plugin/codehighlight/cp/
H A Dcodepress.css9 background-image:url("images/line-numbers.png");
20 body.hide-line-numbers {background:white;margin-left:16px;}
21 body.show-line-numbers {background-image:url("images/line-numbers.png");margin-left:32px;}
/plugin/captcha/
H A Dhelper.php212 $numbers = $this->generateMagicCode($ident, $rand);
217 if ($lettercount > strlen($numbers)) $lettercount = strlen($numbers);
219 $code .= chr(floor(hexdec($numbers[$i] . $numbers[$i + 1]) / 10) + 65);
234 $numbers = $this->generateMagicCode($ident, $rand);
237 $op = (hexdec($numbers[0]) > 8) ? -1 : 1;
238 $num = [hexdec($numbers[1] . $numbers[2]), hexdec($numbers[
[all...]
/plugin/numberedheadings/
H A Dhelper.php4 * DokuWiki Plugin Numbered Headings: add tiered numbers for hierarchical headings
94 * Build tiered numbers
107 $numbers = array_slice($this->HeadingCount, $offset, $tier);
109 $tieredNumbers = vsprintf($this->TierFormat[$tier], $numbers);
111 $tieredNumbers = implode('.', $numbers);
H A DREADME.md3 Prepend tiered numbers for hierarchical headings to DokuWiki without changing
12 | fancy | styled heading numbers (default = false) |
51 If n-th tier format is not defined, numbers are simply joined with a period.
61 are not rendered, but can be used to sepecify level numbers or tier format.
H A Dplugin.info.txt8 desc Prepend tiered numbers as indexes for hierarchical headings
/plugin/dirtylittlehelper/mermaid/editor/docs/
H A D12.12.js1numbers:/^(?:[+\-]?\d+(?:(?:N|(?:[eE][+\-]?\d+))|(?:\.?\d*(?:M|(?:[eE][+\-]?\d+))?)|\/\d+|[xX][0-9… property in AnonymousFunctionf600a1a10100.s
/plugin/indexnumber/
H A DREADME.md1 # Index numbers plugin
15 configuration page and edit the field for index numbers configuration.
31 numbers.
54 <idxnum Tab. #1 Some numbers>
H A Dstyle.css1 /* Index numbers and descriptions should be in close proximity to their content */
H A Dplugin.info.txt6 desc This plugin shows a picker for index numbers in the editor toolbar. The allowed index names …
/plugin/jquery-syntax/jquery-syntax/base/
H A Djquery.syntax.layout.fixed.css6 .syntax-container.syntax-theme-base div.fixed.syntax .numbers-column {
13 .syntax-container.syntax-theme-base div.fixed.syntax .numbers-column div {
/plugin/pot/
H A DREADME.md7 Mainly it is used to calculate and display formatted numbers. In addition, the content can be retri…
21 description: calculate and display formatted numbers
42 …gin:fields|fields plugin] It allows to perform calculations and displays numbers in an appropriate…
74 | decimals | | (0) how many numbers after the decimal point | |
77 | width | | (0) length of the result field in the format: 10px | if you need all numbers nicely…
114 …> to sum up all pots where this pod id ("example" without added numbers) occurs
136 | ! | float= right | probebly best in tables to have your numbers nicely on the right side |
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/
H A Dnumber_format.rst7 The ``number_format`` filter formats numbers. It is a wrapper around PHP's
21 To format negative numbers, wrap the number with parentheses (needed because of
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/
H A Dnegative_numbers.test2 Twig manages negative numbers correctly
H A Dunary_macro_arguments.test2 Twig manages negative numbers as default parameters
/plugin/combo/vendor/symfony/yaml/
H A DCHANGELOG.md20 * Added support for parsing numbers prefixed with `0o` as octal numbers.
21 * Deprecated support for parsing numbers starting with `0` as octal numbers. They will be parsed as strings as of Symfony 6.0. Prefix numbers with `0o`
22 so that they are parsed as octal numbers.
/plugin/idcount/
H A Dplugin.info.txt6 desc Create ID numbers (as counter)
/plugin/bible/
H A Dplugin.info.txt6 desc recognizes bible verse chapters and numbers and creates pop-up text of the verse
/plugin/heat/
H A Dplugin.info.txt6 desc Highlights HEAT numbers (eg Heat #01234567) in wiki markup
/plugin/indobible/
H A Dplugin.info.txt6 desc provides a tag to recognize a text that follow bible verse chapters and numbers syntax in or…

123456789