Home
last modified time | relevance | path

Searched refs:interval (Results 51 – 75 of 123) sorted by path

12345

/plugin/diagramsnet/lib/math/extensions/MathML/
H A Dcontent-mathml.js19 …r("false"),set:a.transforms.set("{","}"),list:a.transforms.set("(",")"),interval:function(g,i,f){v…
/plugin/diagramsnet/lib/math/extensions/a11y/
H A Dmathjax-sre.js699interval:["1D400","1D419"],base:sre.AlphabetGenerator.Base.LATINCAP,subst:{},capital:!0,category:"…
703interval:["FF41","FF5A"],base:sre.AlphabetGenerator.Base.LATINSMALL,subst:{},capital:!1,category:"…
704interval:["1D68A","1D6A3"],base:sre.AlphabetGenerator.Base.LATINSMALL,subst:{},capital:!1,category…
706interval:["1D5A0","1D5B9"],base:sre.AlphabetGenerator.Base.LATINCAP,subst:{},capital:!0,category:"…
708interval:["1D656","1D66F"],base:sre.AlphabetGenerator.Base.LATINSMALL,subst:{},capital:!1,category…
709interval:["1D6A8","1D6C0"],base:sre.AlphabetGenerator.Base.GREEKCAP,subst:{},capital:!0,category:"…
712interval:["0030","0039"],base:sre.AlphabetGenerator.Base.DIGIT,subst:{},offset:0,category:"Nd",fon…
714interval:["2487","249B"],base:sre.AlphabetGenerator.Base.DIGIT,subst:{2487:"1F100"},offset:0,categ…
715interval:["277F","2789"],base:sre.AlphabetGenerator.Base.DIGIT,subst:{"277F":"1F10B"},offset:0,cat…
716interval:["1D7CE","1D7D7"],base:sre.AlphabetGenerator.Base.DIGIT,subst:{},offset:0,category:"Nd",f…
[all …]
/plugin/dirtylittlehelper/mermaid/editor/docs/
H A D2.2.js.map1interval at which snap points are defined, starting from the container’s relevant start edge.\"\n …
H A D62.62.js.map1 … 'with',\n 'at',\n 'exit',\n 'return',\n 'interval',\n 'prior…
H A Dbundle.js.map1interval.js","webpack:///./node_modules/d3-time/src/millisecond.js","webpack:///./node_modules/d3-…
/plugin/dirtylittlehelper/script/
H A Dmermaid.min.js.map1interval.js","webpack://mermaid/./node_modules/d3-time/src/year.js","webpack://mermaid/./node_modu…
/plugin/dw2pdf/vendor/mpdf/mpdf/data/
H A Dout.php58 $interval = 86400; variable
61 if (((filemtime($path.$file)+$interval) < time()) && ($file != "..") && ($file != ".") && substr($file, -3)=='pdf') {
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Writer/
H A DFontWriter.php450 'interval' => false,
468 'interval' => $character['interval'],
510 $character['interval'] = true;
511 $character['range'][$character['rangeid']]['interval'] = true;
513 if ($character['interval']) {
521 $character['interval'] = false;
528 $character['interval'] = false;
549 if (($k == $nextk) and ( !$prevint) and ( (!isset($ws['interval'])) or ( $cws < 4))) {
550 if (isset($range[$k]['interval'])) {
[all...]
/plugin/edittable/lib/
H A Dhandsontable.full.js33307 this.interval = _interval2.default.create(function () {
33999 this.interval.start();
34018 this.interval.stop();
34134 this.interval.stop();
34136 this.interval = null;
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/.ci/
H A Drun-elasticsearch.sh112 --health-interval=2s \
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
H A DAsyncSearchNamespace.asciidoc49 $params['keep_alive'] = (time) Specify the time interval in which the results (partial or final) for this search will be available
79 $params['keep_alive'] = (time) Update the time interval in which the results (partial or final) for this search will be available (Default = 5d)
H A DEqlNamespace.asciidoc49 $params['keep_alive'] = (time) Update the time interval in which the results (partial or final) for this search will be available (Default = 5d)
78 $params['keep_alive'] = (time) Update the time interval in which the results (partial or final) for this search will be available (Default = 5d)
H A DMlNamespace.asciidoc338 $params['advance_time'] = (string) Advances time to the given value generating results and updating the model for the advanced interval
339 $params['skip_time'] = (string) Skips time to the given value without generating results or updating the model for the skipped interval
355 $params['expires_in'] = (time) The time interval after which the forecast expires. Expired forecasts will be deleted at the first opportunity.
H A DMonitoringNamespace.asciidoc35 $params['interval'] = (string) Collection interval (e.g., '10s' or '10000ms') of the payload
H A DNodesNamespace.asciidoc36 $params['interval'] = (time) The interval for the second sampling of threads
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md81 * Fixed `DateHistogram` deprecation: use `fixed_interval` or `calendar_interval` instead of `interval` by @VincentLanglet [#2099](https://github.com/ruflin/Elastica/pull/2099)
/plugin/elasticsearch/vendor/ruflin/elastica/src/Aggregation/
H A DDateHistogram.php32 * Set the interval by which documents will be bucketed.
34 * @param int|string $interval
38 public function setInterval($interval) argument
40 $interval = (string) $interval;
42 if (\in_array($interval, self::CALENDAR_INTERVAL_VALUES, true)) {
43 return $this->setCalendarInterval($interval);
46 return $this->setFixedInterval($interval);
52 public function setCalendarInterval(string $interval): self argument
54 return $this->setParam('calendar_interval', $interval);
60 setFixedInterval(string $interval) global() argument
[all...]
H A DHistogram.php18 * @param int|string $interval the interval by which documents will be bucketed
20 public function __construct(string $name, string $field, $interval) argument
24 $this->setInterval($interval);
28 * Set the interval by which documents will be bucketed.
30 * @param int|string $interval
34 public function setInterval($interval) argument
36 return $this->setParam('interval', $interval);
/plugin/elasticsearch/vendor/ruflin/elastica/src/Index/
H A DSettings.php297 * Sets the index refresh interval.
302 * @param string $interval Duration of the refresh interval
310 public function setRefreshInterval(string $interval): Response
312 return $this->set(['refresh_interval' => $interval]);
316 * Returns the refresh interval.
318 * If no interval is set, the default interval is returned
324 * @return string Refresh interval
248 setRefreshInterval(string $interval) global() argument
/plugin/elasticsearch/vendor/ruflin/elastica/src/QueryBuilder/DSL/
H A DAggregation.php378 * @param int $interval the interval by which documents will be bucketed
380 public function histogram(string $name, string $field, $interval): Histogram argument
382 return new Histogram($name, $field, $interval);
392 * @param int|string $interval the interval by which documents will be bucketed
394 public function date_histogram(string $name, string $field, $interval): DateHistogram argument
396 return new DateHistogram($name, $field, $interval);
/plugin/eventline/timeline_js/
H A Dtimeline-bundle.js1321 var A=("showLine" in this._params)?this._params.showLine:this._theme.ether.interval.line.show;
1383 var A=("showLine" in this._params)?this._params.showLine:this._theme.ether.interval.line.show;
1441 var D=("align" in this._params)?this._params.align:this._theme.ether.interval.marker[B.isHorizontal…
1442 var A=("showLine" in this._params)?this._params.showLine:this._theme.ether.interval.line.show;
1485 var D=("align" in this._params)?this._params.align:this._theme.ether.interval.marker[B.isHorizontal…
1486 var A=("showLine" in this._params)?this._params.showLine:this._theme.ether.interval.line.show;
1530 }}var D=C.ether.interval.marker;
1531 var K=C.ether.interval.line;
1532 var B=C.ether.interval.weekend;
1593 this._interval=A.interval;
[all …]
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/js/
H A Dbootstrap.min.js6interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$elemen… property in c.DEFAULTS
H A Djquery.min.js3 …op()},r.fx.interval=13,r.fx.start=function(){$a||($a=a.requestAnimationFrame?a.requestAnimationFra…
/plugin/findologicxmlexport/vendor/twig/twig/
H A DCHANGELOG649 * added a way to set the default global date interval format
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/
H A Ddate_default_format_interval.test2 "date" filter (interval support as of PHP 5.3)

12345