Home
last modified time | relevance | path

Searched refs:unit (Results 151 – 175 of 348) sorted by path

12345678910>>...14

/plugin/dw2pdf/vendor/setasign/fpdi/
H A DREADME.md85 - Several test types (unit, functional and visual tests)
/plugin/edittable/lib/
H A Dhandsontable.full.js7621 function addUnitAlias (unit, shorthand) {
7622 var lowerCase = unit.toLowerCase();
7649 function addUnitPriority(unit, priority) {
7650 priorities[unit] = priority;
7656 units.push({unit: u, priority: priorities[u]});
7664 function makeGetSet (unit, keepTime) {
7667 set$1(this, unit, value);
7671 return get(this, unit);
7676 function get (mom, unit) {
7681 function set$1 (mom, unit, value) {
[all …]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/
H A DREADME.md49 - [Unit Testing using Mock a Elastic Client](#unit-testing-using-mock-a-elastic-client)
450 Each PR should include a **unit test** using [PHPUnit](https://phpunit.de/). If you are not familiar with PHPUnit you can have a look at this [reference](https://phpunit.readthedocs.io/en/7.0/).
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
H A DCatNamespace.asciidoc77 $params['bytes'] = (enum) The unit in which to display byte values (Options = b,k,kb,m,mb,g,gb,t,tb,p,pb)
116 $params['bytes'] = (enum) The unit in which to display byte values (Options = b,k,kb,m,mb,g,gb,t,tb,p,pb)
137 $params['time'] = (enum) The unit in which to display time values (Options = d,h,m,s,ms,micros,nanos)
168 $params['bytes'] = (enum) The unit in which to display byte values (Options = b,k,kb,m,mb,g,gb,t,tb,p,pb)
176 $params['time'] = (enum) The unit in which to display time values (Options = d,h,m,s,ms,micros,nanos)
213 $params['bytes'] = (enum) The unit in which to display byte values (Options = b,k,kb,m,mb,g,gb,t,tb,p,pb)
218 $params['time'] = (enum) The unit in which to display time values (Options = d,h,m,s,ms,micros,nanos)
239 $params['time'] = (enum) The unit in which to display time values (Options = d,h,m,s,ms,micros,nanos)
256 $params['bytes'] = (enum) The unit in which to display byte values (Options = b,k,kb,m,mb,g,gb,t,tb,p,pb)
261 $params['time'] = (enum) The unit i
[all...]
/plugin/elasticsearch/vendor/ezimuel/ringphp/
H A DCHANGELOG.md24 - Updated to PHPUnit 9 and fixed the unit tests for PHP 8
/plugin/elasticsearch/vendor/patrickschur/language-detection/resources/bi/
H A Dbi.txt83 3. Famili hemi natural mo impoten grup unit blong sosaeti mo hemi gat raet blong sosaeti mo steit i protektem hem.
/plugin/elasticsearch/vendor/patrickschur/language-detection/resources/en/
H A Den.txt85 3. The family is the natural and fundamental group unit of society and is entitled to protection by society and the State.
/plugin/elasticsearch/vendor/react/promise/
H A DREADME.md75 A **Deferred** represents a computation or unit of work that may not have
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md219 * Run unit tests on github action [#1882](https://github.com/ruflin/Elastica/pull/1882)
1573 - Fix unit test errors
1628 - Correct class name for TermTest unit test
/plugin/elasticsearch/vendor/ruflin/elastica/src/Aggregation/
H A DGeoDistance.php87 * Set the unit of distance measure for this aggregation.
89 * @param string $unit defaults to m
93 public function setUnit(string $unit): self argument
95 return $this->setParam('unit', $unit);
/plugin/eventline/
H A Dtimeline.js56 unit: convertTime(hzUnit)
61 unit: convertTime(hzUnit2)
66 unit: convertTime(hzUnit3)
/plugin/eventline/timeline_js/
H A Dtimeline-bundle.js824 Timeline.SpanHighlightDecorator=function(A){this._unit=A.unit!=null?A.unit:SimileAjax.NativeDateUni…
886 Timeline.PointHighlightDecorator=function(A){this._unit=A.unit!=null?A.unit:SimileAjax.NativeDateUn…
1310 this._unit=A.unit;
1355 this._zones=[{startTime:Number.NEGATIVE_INFINITY,endTime:Number.POSITIVE_INFINITY,unit:G.unit,multi…
1364 …E>A.startTime){this._zones.splice(D,0,{startTime:A.startTime,endTime:E,unit:A.unit,multiple:A.mult…
1367 }if(B<A.endTime){this._zones.splice(D,0,{startTime:E,endTime:B,unit:C.unit,multiple:(C.multiple)?C.…
1372 A.unit=C.unit;
1404 O++){SimileAjax.DateTime.incrementByInterval(N,M.unit);
1427 ++B){if(this._zones[B]){this._zones[B].unit+=A;
1626 A=this._band._zoomSteps[C].unit-this._band._zoomSteps[B].unit;
[all …]
/plugin/findologicxmlexport/vendor/hoa/file/
H A DFinder.php282 $unit = isset($matches[3]) ? $matches[3] : 'b';
285 switch ($unit) {
/plugin/findologicxmlexport/vendor/jms/metadata/
H A DCONTRIBUTING.md22 You can run the unit-tests by calling `vendor/bin/phpunit`.
/plugin/findologicxmlexport/vendor/jms/serializer/
H A DCONTRIBUTING.md26 You can run the unit-tests by calling `vendor/bin/phpunit`.
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/
H A DChangeLog-3.1.md15 …code-coverage/issues/234): Optionally raise an exception when a specified unit of code is not exec…
H A DChangeLog-3.3.md27 * Added support for whitelisting classes for the unintentionally covered code unit check
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/
H A DCodeCoverage.php1049 $unit = explode('::', $unintentionallyCoveredUnits[$k]);
1051 if (count($unit) != 2) {
1055 $class = new \ReflectionClass($unit[0]);
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Exception/
H A DUnintentionallyCoveredCodeException.php48 foreach ($this->unintentionallyCoveredUnits as $unit) {
49 $message .= '- ' . $unit . "\n";
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/js/
H A Djquery.min.js3unit=j,d.start=k,d.end=e)),e}var fa={};function ga(a){var b,c=a.ownerDocument,d=a.nodeName,e=fa[d]…
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Xml/
H A DFacade.php114 $this->processUnit($unit, $fileReport);
147 if (isset($unit['className'])) {
154 $unit['startLine'],
155 $unit['executableLines'],
156 $unit['executedLines']
159 $unitObject->setCrap($unit['crap']);
162 $unit['package']['fullPackage'],
163 $unit['package']['package'],
164 $unit['package']['subpackage'],
165 $unit['package']['category']
[all …]
/plugin/findologicxmlexport/vendor/phpunit/php-timer/src/
H A DTimer.php63 foreach (self::$times as $unit => $value) {
67 return $time . ' ' . ($time == 1 ? $unit : $unit . 's');
/plugin/findologicxmlexport/vendor/phpunit/phpunit/
H A DREADME.md3 …testing framework for PHP. It is an instance of the xUnit architecture for unit testing frameworks.
/plugin/findologicxmlexport/vendor/sebastian/code-unit-reverse-lookup/
H A DChangeLog.md3 All notable changes to `sebastianbergmann/code-unit-reverse-lookup` are documented in this file usi…
H A DLICENSE1 code-unit-reverse-lookup

12345678910>>...14