Home
last modified time | relevance | path

Searched refs:bysecond (Results 1 – 25 of 85) sorted by relevance

1234

/dports/devel/p5-DateTime-Event-ICal/DateTime-Event-ICal-0.13/lib/DateTime/Event/
H A DICal.pm83 $by{seconds} = $args{bysecond} if exists $args{bysecond};
96 $by{seconds} = $args{bysecond} if exists $args{bysecond};
111 $by{seconds} = $args{bysecond} if exists $args{bysecond};
131 $by{seconds} = $args{bysecond} if exists $args{bysecond};
160 $by{seconds} = $args{bysecond} if exists $args{bysecond};
189 $by{seconds} = $args{bysecond} if exists $args{bysecond};
216 $by{seconds} = $args{bysecond} if exists $args{bysecond};
279 $by{seconds} = $args{bysecond} if exists $args{bysecond};
606 $by{bysecond} = $args_backup{bysecond} if $args_backup{bysecond};
623 $by{bysecond} = $args_backup{bysecond} if $args_backup{bysecond};
[all …]
/dports/net-p2p/bazarr/bazarr-1.0.2/libs/dateutil/test/
H A Dtest_rrule.py301 bysecond=(6, 18),
321 bysecond=(6, 18),
331 bysecond=(6, 18),
342 bysecond=(6, 18),
643 bysecond=(6, 18),
663 bysecond=(6, 18),
673 bysecond=(6, 18),
684 bysecond=(6, 18),
960 bysecond=(6, 18),
2254 bysecond=(0,),
[all …]
/dports/devel/py-dateutil/python-dateutil-2.8.1/dateutil/test/
H A Dtest_rrule.py325 bysecond=(6, 18),
345 bysecond=(6, 18),
355 bysecond=(6, 18),
366 bysecond=(6, 18),
667 bysecond=(6, 18),
687 bysecond=(6, 18),
697 bysecond=(6, 18),
708 bysecond=(6, 18),
984 bysecond=(6, 18),
2278 bysecond=(0,),
[all …]
/dports/www/horde-wicked/wicked-2.0.8/lib/Page/
H A DRecentChanges.php87 foreach ($bydate as $bysecond) {
89 krsort($bysecond);
90 foreach ($bysecond as $pageList) {
/dports/www/moodle310/moodle/calendar/classes/
H A Drrule_manager.php171 protected $bysecond = array(); variable in core_calendar\\rrule_manager
441 * @param string $bysecond Comma-separated list of seconds within a minute.
444 protected function set_bysecond($bysecond) { argument
445 $seconds = explode(',', $bysecond);
453 $this->bysecond = $bysecondrules;
676 …pty($this->bysetpos) && empty($this->bymonth) && empty($this->bymonthday) && empty($this->bysecond)
900 …return !empty($this->bymonth) || !empty($this->bymonthday) || !empty($this->bysecond) || !empty($t…
1182 if (empty($this->bysecond)) {
1183 $this->bysecond = [(int)$eventdatetime->format('s')];
1191 foreach ($this->bysecond as $second) {
/dports/www/moodle311/moodle/calendar/classes/
H A Drrule_manager.php171 protected $bysecond = array(); variable in core_calendar\\rrule_manager
441 * @param string $bysecond Comma-separated list of seconds within a minute.
444 protected function set_bysecond($bysecond) { argument
445 $seconds = explode(',', $bysecond);
453 $this->bysecond = $bysecondrules;
676 …pty($this->bysetpos) && empty($this->bymonth) && empty($this->bymonthday) && empty($this->bysecond)
900 …return !empty($this->bymonth) || !empty($this->bymonthday) || !empty($this->bysecond) || !empty($t…
1182 if (empty($this->bysecond)) {
1183 $this->bysecond = [(int)$eventdatetime->format('s')];
1191 foreach ($this->bysecond as $second) {
/dports/www/moodle39/moodle/calendar/classes/
H A Drrule_manager.php171 protected $bysecond = array(); variable in core_calendar\\rrule_manager
441 * @param string $bysecond Comma-separated list of seconds within a minute.
444 protected function set_bysecond($bysecond) { argument
445 $seconds = explode(',', $bysecond);
453 $this->bysecond = $bysecondrules;
676 …pty($this->bysetpos) && empty($this->bymonth) && empty($this->bymonthday) && empty($this->bysecond)
900 …return !empty($this->bymonth) || !empty($this->bymonthday) || !empty($this->bysecond) || !empty($t…
1182 if (empty($this->bysecond)) {
1183 $this->bysecond = [(int)$eventdatetime->format('s')];
1191 foreach ($this->bysecond as $second) {
/dports/textproc/libkolabxml/libkolabxml-1.1.6/src/containers/
H A Dkolabcontainers.cpp202 std::vector<int> bysecond; member
236 d->bysecond == other.bysecond() && in operator ==()
306 d->bysecond = by; in setBysecond()
310 std::vector< int > RecurrenceRule::bysecond() const in bysecond() function in Kolab::RecurrenceRule
312 return d->bysecond; in bysecond()
/dports/finance/py-backtrader/backtrader-1.9.74.123/backtrader/plot/
H A Dlocator.py209 _, bymonth, bymonthday, byhour, byminute, bysecond, _ = byranges
215 bysecond=bysecond)
/dports/math/py-matplotlib2/matplotlib-2.2.4/lib/matplotlib/
H A Ddates.py1361 _, bymonth, bymonthday, byhour, byminute, bysecond, _ = byranges
1366 bysecond=bysecond)
1544 byminute=0, bysecond=0)
1564 bysecond=0)
1572 def __init__(self, bysecond=None, interval=1, tz=None): argument
1581 if bysecond is None:
1582 bysecond = range(60)
1584 rule = rrulewrapper(SECONDLY, bysecond=bysecond, interval=interval)
/dports/net/google-cloud-sdk/google-cloud-sdk/lib/third_party/dateutil/
H A Drrule.py431 byhour=None, byminute=None, bysecond=None, argument
665 if bysecond is None:
671 if isinstance(bysecond, integer_types):
672 bysecond = (bysecond,)
674 self._bysecond = set(bysecond)
678 byxxx=bysecond,
681 self._bysecond = set(bysecond)
794 bysecond = self._bysecond
987 if bysecond:
1005 (not bysecond or second in bysecond)):
/dports/net-p2p/bazarr/bazarr-1.0.2/libs/dateutil/
H A Drrule.py421 byhour=None, byminute=None, bysecond=None, argument
638 if bysecond is None:
644 if isinstance(bysecond, integer_types):
645 bysecond = (bysecond,)
647 self._bysecond = set(bysecond)
651 byxxx=bysecond,
654 self._bysecond = set(bysecond)
768 bysecond = self._bysecond
960 if bysecond:
978 (not bysecond or second in bysecond)):
/dports/multimedia/tautulli/Tautulli-2.8.0/lib/dateutil/
H A Drrule.py432 byhour=None, byminute=None, bysecond=None, argument
666 if bysecond is None:
672 if isinstance(bysecond, integer_types):
673 bysecond = (bysecond,)
675 self._bysecond = set(bysecond)
679 byxxx=bysecond,
682 self._bysecond = set(bysecond)
795 bysecond = self._bysecond
988 if bysecond:
1006 (not bysecond or second in bysecond)):
/dports/devel/py-pipenv/pipenv-2021.5.29/pipenv/vendor/dateutil/
H A Drrule.py430 byhour=None, byminute=None, bysecond=None, argument
664 if bysecond is None:
670 if isinstance(bysecond, integer_types):
671 bysecond = (bysecond,)
673 self._bysecond = set(bysecond)
677 byxxx=bysecond,
680 self._bysecond = set(bysecond)
793 bysecond = self._bysecond
986 if bysecond:
1004 (not bysecond or second in bysecond)):
/dports/devel/py-dateutil/python-dateutil-2.8.1/dateutil/
H A Drrule.py430 byhour=None, byminute=None, bysecond=None, argument
664 if bysecond is None:
670 if isinstance(bysecond, integer_types):
671 bysecond = (bysecond,)
673 self._bysecond = set(bysecond)
677 byxxx=bysecond,
680 self._bysecond = set(bysecond)
793 bysecond = self._bysecond
986 if bysecond:
1004 (not bysecond or second in bysecond)):
/dports/math/py-matplotlib/matplotlib-3.4.3/lib/matplotlib/
H A Ddates.py1448 _, bymonth, bymonthday, byhour, byminute, bysecond, _ = byranges
1453 bysecond=bysecond)
1633 byminute=0, bysecond=0)
1653 bysecond=0)
1661 def __init__(self, bysecond=None, interval=1, tz=None): argument
1670 if bysecond is None:
1671 bysecond = range(60)
1673 rule = rrulewrapper(SECONDLY, bysecond=bysecond, interval=interval)
/dports/deskutils/phpicalendar/phpicalendar-2.4/functions/parse/
H A Dend_vevent.php138 $bysecond = split (',', $val); variable
139 $recur_array[($start_date)][($hour.$minute)][$uid]['recur'][$key] = $bysecond;
/dports/devel/p5-DateTime-Event-ICal/DateTime-Event-ICal-0.13/t/
H A D01sanity.t55 bysecond => [ 1, 3 ] );
/dports/devel/pycharm-pro/pycharm-2020.2.3/plugins/python/helpers/typeshed/third_party/2and3/dateutil/
H A Drrule.pyi52 bysecond: Optional[Union[int, Iterable[int]]] = ...,
/dports/devel/pytype/pytype-2021.9.9/pytype/typeshed/stubs/python-dateutil/dateutil/
H A Drrule.pyi53 bysecond: Optional[Union[int, Iterable[int]]] = ...,
/dports/devel/py-jedi/jedi-0.18.0/jedi/third_party/typeshed/third_party/2and3/dateutil/
H A Drrule.pyi52 bysecond: Optional[Union[int, Iterable[int]]] = ...,
/dports/www/baikal/baikal/vendor/sabre/vobject/resources/schema/
H A Dxcal.rng274 type-bysecond*,
305 type-bysecond = element bysecond {
/dports/audio/ampache/ampache-php74-5.0.0/vendor/sabre/vobject/resources/schema/
H A Dxcal.rng274 type-bysecond*,
305 type-bysecond = element bysecond {
/dports/mail/roundcube-carddav/carddav-4.0.4-vendor/vendor/sabre/vobject/resources/schema/
H A Dxcal.rng274 type-bysecond*,
305 type-bysecond = element bysecond {
/dports/www/dolibarr13/dolibarr-13.0.5/htdocs/includes/sabre/sabre/vobject/resources/schema/
H A Dxcal.rng274 type-bysecond*,
305 type-bysecond = element bysecond {

1234