Home
last modified time | relevance | path

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

1234567891011

/plugin/sequencediagram/bower_components/lodash/vendor/underscore/test/
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.');
Darrays.js33 var numbers = [1, 2, 3, 4];
34 assert.deepEqual(_.rest(numbers), [2, 3, 4], 'fetches all but the first element');
35 assert.deepEqual(_.rest(numbers, 0), [1, 2, 3, 4], 'returns the whole array when index is 0');
36 assert.deepEqual(_.rest(numbers, 2), [3, 4], 'returns elements starting at the given index');
125 var numbers = [10, 20, 30, 40, 50];
126 var indexFor35 = _.sortedIndex(numbers, 35);
128 var indexFor30 = _.sortedIndex(numbers, 30);
302 var numbers = [1, 2, 3];
303 assert.equal(_.indexOf(numbers, 2), 1, 'can compute indexOf');
316 numbers = [10, 20, 30, 40, 50];
[all …]
Dcollections.js418 var numbers = [1, 2, 3, 1, 2, 3, 1, 2, 3];
419 assert.strictEqual(_.includes(numbers, 1, 1), true, 'takes a fromIndex');
420 assert.strictEqual(_.includes(numbers, 1, -1), false, 'takes a fromIndex');
421 assert.strictEqual(_.includes(numbers, 1, -2), false, 'takes a fromIndex');
422 assert.strictEqual(_.includes(numbers, 1, -3), true, 'takes a fromIndex');
423 assert.strictEqual(_.includes(numbers, 1, 6), true, 'takes a fromIndex');
424 assert.strictEqual(_.includes(numbers, 1, 7), false, 'takes a fromIndex');
426 assert.ok(_.every([1, 2, 3], _.partial(_.includes, numbers)), 'fromIndex is guarded');
769 var numbers = _.range(20);
770 var shuffled = _.shuffle(numbers);
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudRetail/
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/
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/
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/
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[3])];
/plugin/numberedheadings/
Dhelper.php107 $numbers = array_slice($this->HeadingCount, $offset, $tier);
109 $tieredNumbers = vsprintf($this->TierFormat[$tier], $numbers);
111 $tieredNumbers = implode('.', $numbers);
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.
Dplugin.info.txt8 desc Prepend tiered numbers as indexes for hierarchical headings
/plugin/dirtylittlehelper/mermaid/editor/docs/
D12.12.js1numbers:/^(?:[+\-]?\d+(?:(?:N|(?:[eE][+\-]?\d+))|(?:\.?\d*(?:M|(?:[eE][+\-]?\d+))?)|\/\d+|[xX][0-9… property
/plugin/indexnumber/
DREADME.md1 # Index numbers plugin
15 configuration page and edit the field for index numbers configuration.
31 numbers.
54 <idxnum Tab. #1 Some numbers>
Dstyle.css1 /* Index numbers and descriptions should be in close proximity to their content */
/plugin/jquery-syntax/jquery-syntax/base/
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/
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/
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/combo/vendor/symfony/yaml/
H A DCHANGELOG.md20 * Added support for parsing numbers prefixed with `0o` as octal numbers.
21 …d support for parsing numbers starting with `0` as octal numbers. They will be parsed as strings a…
22 so that they are parsed as octal numbers.
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/
Dnegative_numbers.test2 Twig manages negative numbers correctly
/plugin/asciidocjs/node_modules/has-tostringtag/
D.eslintrc8 "no-magic-numbers": 0,
/plugin/asciidocjs/node_modules/has-symbols/
D.eslintrc8 "no-magic-numbers": 0,
/plugin/asciidocjs/node_modules/function-bind/test/
D.eslintrc7 "no-magic-numbers": 0,
/plugin/asciidocjs/node_modules/call-bind/
D.eslintrc14 "no-magic-numbers": 0,
/plugin/idcount/
Dplugin.info.txt6 desc Create ID numbers (as counter)
/plugin/bible/
Dplugin.info.txt6 desc recognizes bible verse chapters and numbers and creates pop-up text of the verse
/plugin/asciidocjs/node_modules/yargs-parser/
DREADME.md105 Indicate that keys should be parsed as an array and coerced to booleans / numbers:<br>
120 * `opts.number`: keys should be treated as numbers.
227 ### parse numbers
230 * key: `parse-numbers`
232 Should keys that look like numbers be treated as such?
246 ### parse positional numbers
249 * key: `parse-positional-numbers`
251 Should positional keys that look like numbers be treated as such.

1234567891011