Home
last modified time | relevance | path

Searched full:interval (Results 1 – 25 of 363) sorted by relevance

12345678910>>...15

/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Tree/
H A DSyntaxTree.php7 use Antlr\Antlr4\Runtime\Interval; alias
10 * A tree that knows about an interval in a token stream
17 * Return an {@see Interval} indicating the index in the
19 * subtree. If this node is a leaf, then the interval represents a single
20 * token and has interval i..i for token index i.
22 * An interval of i..i-1 indicates an empty interval at position
25 * in concept one could have an empty interval after EOF.
27 * If source interval is unknown, this returns {@see Interval::invalid()}.
29 * As a weird special case, the source interval for rules matched after
32 public function getSourceInterval() : Interval;
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DInterval.php10 * An immutable inclusive interval start..stop (both start and stop included).
12 final class Interval implements Equatable class
30 return $invalid ?? $invalid = new Interval(-1, -2);
57 public function startsBeforeDisjoint(Interval $other) : bool
65 public function startsBeforeNonDisjoint(Interval $other) : bool
73 public function startsAfter(Interval $other) : bool
81 public function startsAfterDisjoint(Interval $other) : bool
89 public function startsAfterNonDisjoint(Interval $other) : bool
98 public function disjoint(Interval $other) : bool
106 public function adjacent(Interval $other) : bool
[all …]
H A DTokenStream.php45 * Return the text of all tokens within the specified `interval`.
52 * for ($i = $interval->a; $i <= $interval->b; $i++) {
56 * @param Interval $interval The interval of tokens within this stream
59 * @return string The text of all tokens within the specified interval
62 public function getTextByInterval(Interval $interval) : string; argument
71 * $text = $stream->getText(new Interval(0, $stream->size()));
78 * Return the text of all tokens in the source interval of the specified context.
83 * If `ctx.getSourceInterval()` does not return a valid interval of tokens
89 * @param RuleContext $context The context providing the source interval
92 * @return string The text of all tokens within the source interval of `context`.
[all …]
H A DIntervalSet.php24 /** @var array<Interval> */
83 * Compute the set difference between two interval sets. The specific
122 $beforeCurrent = new Interval($resultInterval->start, $rightInterval->start - 1);
126 $afterCurrent = new Interval($rightInterval->stop + 1, $resultInterval->stop);
131 // split the current interval into two
140 // replace the current interval
147 // replace the current interval
154 // remove the current interval (thus no need to increment resultI)
187 $this->addInterval(new Interval($value, $value));
192 $this->addInterval(new Interval($left, $right));
[all …]
/plugin/elasticsearch/vendor/ruflin/elastica/src/Aggregation/
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 public function setFixedInterval(string $interval): self argument
[all …]
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/countdownv2/lang/en/
Dsettings.php15 $lang['yearwarning'] = 'Time in seconds when display interval for years';
16 $lang['monthwarning'] = 'Time in seconds when display interval for months';
17 $lang['weekwarning'] = 'Time in seconds when display interval for weeks';
18 $lang['daywarning'] = 'Time in seconds when display interval for days';
19 $lang['hourwarning'] = 'Time in seconds when display interval for hours';
20 $lang['minutewarning'] = 'Time in seconds when display interval for minutes';
/plugin/animation/
Dsyntax.php6 <ani id url type max interval autoplay | opts>
41 // list($id, $url, $type, $max, $height, $interval) = preg_split('/\s+/u', trim($para), 8);
43 …// list($id, $url, $type, $max, $width, $height, $interval, $autoplay) = preg_split('/\s+/u', trim…
44 …list($id, $url, $type, $max, $interval, $autoplay, $navigator, $width) = preg_split('/\s+/u', trim…
45 if (floatval($interval) > 100 & floatval($autoplay) > 0) {
48 $interval = $autoplay;
52 $interval = $navigator;
56 …return array($state, array($id, $url, $type, $max, $interval, $autoplay, $navigator, $width, $opts…
61 list($id, $url, $type, $max, $interval, $autoplay, $navigator, $width, $opts) = $match;
85 'delay': ". floatval($interval) * 1000 .",
/plugin/loglog/helper/
Dalert.php19 protected $interval; variable in helper_plugin_loglog_alert
79 $this->interval = $minuteInterval * 60;
82 $min = $this->now - ($this->interval);
116 'interval' => $this->interval / 60, // falling back to minutes for the view
125 * Check if it is time to act or wait this interval out
140 $intervalsAfterLastAlert = (int)floor(($this->now - $lastAlert) / $this->interval);
155 * based on the interval multiplier. 1 indicates the first incident,
156 * otherwise evaluate the exponent (because we multiply the interval by 2 on each alert).
172 return $this->now + $this->interval * $this->multiplier * 2;
/plugin/asciidocjs/node_modules/async/
Dretry.js34 * @param {Object|number} [opts = {times: 5, interval: 0}| 5] - Can be either an
35 * object with `times` and `interval` or a number.
38 * * `interval` - The time to wait between retries, in milliseconds. The
39 * default is `0`. The interval may also be specified as a function of the
47 * with the default interval of `0`.
67 * async.retry({times: 3, interval: 200}, apiMethod, function(err, result) {
75 * interval: function(retryCount) {
150 …acc.intervalFunc = typeof t.interval === 'function' ? t.interval : constant(+t.interval || DEFAULT…
/plugin/indexmenu2/cms/
Dcms.js15interval:10,length:100,openTimeout:0,closeTimeout:0,toggleMenuOnClick:0,closeSiblings:true,increme… property
/plugin/structgantt/meta/
DGantt.php45 /** @var string[] interval formats used */
46 protected $interval = [ variable in dokuwiki\\plugin\\structgantt\\meta\\Gantt
48 'period' => 'P1D', // smallest shown interval
49 'next' => '+1 day', // one more interval
50 'short' => 'q', // interval label
51 'long' => 'Y-m-d', // interval long label
52 'comp' => 'Y-m-d', // sortable interval
144 $this->interval = [
153 $this->interval = [
162 $this->interval = [
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Sheets/
DHistogramRule.php23 public $interval; variable in Google\\Service\\Sheets\\HistogramRule
34 public function setInterval($interval) argument
36 $this->interval = $interval;
40 return $this->interval;
/plugin/combo/resources/snippet/js/
H A Dcombo-debounce.js7 * @param interval - in ms
8 * @param leadingExecution - if true, the execution happens before the interval
11 module.debounce = function (callBack, interval, leadingExecution = false) { argument
32 // trailing execution happens at the end of the interval
41 timerId = setTimeout(funcToSchedule, interval);
/plugin/structgeohash/
Dgeohash.js28 function refine_interval(interval, cd, mask) { argument
30 interval[0] = (interval[0] + interval[1])/2;
32 interval[1] = (interval[0] + interval[1])/2;
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/Recur/
DRRuleIteratorTest.php13 'FREQ=HOURLY;INTERVAL=3;COUNT=12',
36 'FREQ=DAILY;INTERVAL=3;UNTIL=20111025T000000Z',
77 'FREQ=DAILY;INTERVAL=2;BYHOUR=10,11,12,13,14,15',
100 'FREQ=DAILY;INTERVAL=2;BYDAY=TU,WE,FR',
157 'FREQ=WEEKLY;INTERVAL=2;COUNT=10',
178 'FREQ=WEEKLY;INTERVAL=1;COUNT=4;BYDAY=MO;WKST=SA',
193 'FREQ=WEEKLY;INTERVAL=2;BYDAY=TU,WE,FR;WKST=SU',
216 'FREQ=WEEKLY;INTERVAL=2;BYDAY=TU,WE,FR;WKST=MO;BYHOUR=8,9,10',
242 'FREQ=WEEKLY;INTERVAL=2;BYDAY=TU,WE,FR;WKST=SU',
265 'FREQ=MONTHLY;INTERVAL=3;COUNT=5',
[all …]
/plugin/davcard/vendor/sabre/vobject/tests/VObject/Recur/
DRRuleIteratorTest.php13 'FREQ=HOURLY;INTERVAL=3;COUNT=12',
36 'FREQ=DAILY;INTERVAL=3;UNTIL=20111025T000000Z',
77 'FREQ=DAILY;INTERVAL=2;BYHOUR=10,11,12,13,14,15',
100 'FREQ=DAILY;INTERVAL=2;BYDAY=TU,WE,FR',
157 'FREQ=WEEKLY;INTERVAL=2;COUNT=10',
178 'FREQ=WEEKLY;INTERVAL=1;COUNT=4;BYDAY=MO;WKST=SA',
193 'FREQ=WEEKLY;INTERVAL=2;BYDAY=TU,WE,FR;WKST=SU',
216 'FREQ=WEEKLY;INTERVAL=2;BYDAY=TU,WE,FR;WKST=MO;BYHOUR=8,9,10',
242 'FREQ=WEEKLY;INTERVAL=2;BYDAY=TU,WE,FR;WKST=SU',
265 'FREQ=MONTHLY;INTERVAL=3;COUNT=5',
[all …]
/plugin/davcal/vendor/sabre/vobject/tests/VObject/Recur/
H A DRRuleIteratorTest.php13 'FREQ=HOURLY;INTERVAL=3;COUNT=12',
36 'FREQ=DAILY;INTERVAL=3;UNTIL=20111025T000000Z',
77 'FREQ=DAILY;INTERVAL=2;BYHOUR=10,11,12,13,14,15',
100 'FREQ=DAILY;INTERVAL=2;BYDAY=TU,WE,FR',
157 'FREQ=WEEKLY;INTERVAL=2;COUNT=10',
178 'FREQ=WEEKLY;INTERVAL=1;COUNT=4;BYDAY=MO;WKST=SA',
193 'FREQ=WEEKLY;INTERVAL=2;BYDAY=TU,WE,FR;WKST=SU',
216 'FREQ=WEEKLY;INTERVAL=2;BYDAY=TU,WE,FR;WKST=MO;BYHOUR=8,9,10',
242 'FREQ=WEEKLY;INTERVAL=2;BYDAY=TU,WE,FR;WKST=SU',
265 'FREQ=MONTHLY;INTERVAL=3;COUNT=5',
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Apigee/
DGoogleCloudApigeeV1Quota.php25 public $interval; variable in Google\\Service\\Apigee\\GoogleCloudApigeeV1Quota
38 public function setInterval($interval) argument
40 $this->interval = $interval;
47 return $this->interval;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Bigquery/
DRangePartitioningRange.php29 public $interval; variable in Google\\Service\\Bigquery\\RangePartitioningRange
52 public function setInterval($interval) argument
54 $this->interval = $interval;
61 return $this->interval;
/plugin/photogallery/lightGallery/js/
Dlg-autoplay.min.js4interval=!1,this.fromAuto=!0,this.canceledOnTouch=!1,this.fourceAutoplayTemp=this.core.s.fourceAut…
Dlg-autoplay.js51 this.interval = false;
93 // cancel interval on touchstart and dragstart
95 if (_this.interval) {
103 if (!_this.interval && _this.canceledOnTouch) {
123 if (_this.interval) {
156 if (!_this.interval) {
172 _this.interval = setInterval(function() {
186 clearInterval(this.interval);
187 this.interval = false;
/plugin/loglog/lang/en/
Dsettings.php3 $lang['login_success_max'] = 'When the number of logins per configured interval (login_success_inte…
4 $lang['login_success_interval'] = 'Interval to check the number of recent successful logins, in min…
6 $lang['login_failed_max'] = 'When the number of failed logins attempt per configured interval (logi…
7 $lang['login_failed_interval'] = 'Interval to check the number of recent failed login attempts, in …
/plugin/icalevents/vendor/sabre/vobject/tests/VObject/Recur/
DRRuleIteratorTest.php13 'FREQ=HOURLY;INTERVAL=3;COUNT=12',
36 'FREQ=DAILY;INTERVAL=3;UNTIL=20111025T000000Z',
77 'FREQ=DAILY;INTERVAL=2;BYHOUR=10,11,12,13,14,15',
100 'FREQ=DAILY;INTERVAL=2;BYDAY=TU,WE,FR',
157 'FREQ=WEEKLY;INTERVAL=2;COUNT=10',
178 'FREQ=WEEKLY;INTERVAL=1;COUNT=4;BYDAY=MO;WKST=SA',
193 'FREQ=WEEKLY;INTERVAL=2;BYDAY=TU,WE,FR;WKST=SU',
216 'FREQ=WEEKLY;INTERVAL=2;BYDAY=TU,WE,FR;WKST=MO;BYHOUR=8,9,10',
242 'FREQ=WEEKLY;INTERVAL=2;BYDAY=TU,WE,FR;WKST=SU',
265 'FREQ=MONTHLY;INTERVAL=3;COUNT=5',
[all …]
/plugin/nsexport/
Dscript.js16 let interval = 500;
36 if (interval < INTERVAL_MAX) {
37 interval += INTERVAL_STEP;
39 intervalId = setInterval(window.nsexport_check, interval, response);
64 intervalId = setInterval(window.nsexport_check, interval, response);

12345678910>>...15