-
Hi,
CronParser#next is failing with some expressions. One example:
expression = "15-59/15 \* \* \* *"
cron_parser = CronParser.new(expression)
next_execution_time = cron_parser.next(Time.now)
Trace…
-
Now we can use L at `Day-of-month` like the following example;
```
cron_parser = CronParser.new('0 9 L * *')
time = Time.local(2022, 1, 16, 12, 0)
cron_parser.next(time)
# => 2022-01-…
-
It would be great if we could expand the cron expression to support one corner case, last day of a month.
https://stackoverflow.com/questions/6139189/cron-job-to-run-on-the-last-day-of-the-month…
-
# Collector, Parser 분리한 이유
- TIFF 파일 압축 해제하는데 오랜 시간이 걸리기에
- Collector, Parser를 분리하였습니다.
# ByPass를 Transfer -> Loader에 넣은 이유
- ByPass과정이 Loader에 있으면 Transfer까지 가지 않아도 되기 때문 (시간 단축을 위함)
- ByPas…
-
getting `Goo::Base::NotValidException: Object is not valid`error processing QUDT, GSSO, MADS-RDF, FYPO, MF, ISO19115MI,E COCORE, LCTGM, ONTODRC ontologies. The ontology load process completes despit…
-
There is a bad calculation if I set more complex crontab. Here is an example.
2.2.4 :001 > require 'cron_parser'
=> true
2.2.4 :002 > require 'time'
=> true
2.2.4 :003 > cron_parser = CronParser.ne…
jmlfr updated
8 years ago
-
First of all, @aleiepure great project!
Here is my list of requested features. Maybe even I'll contribute some of them if I have time. (I hope pull requests are welcome)
If anyone else wants to …
-
The following produces an incorrect last time:
``` ruby
cron_parser = CronParser.new('* * * * *')
p "Now: #{Time.now}"
p "Last: #{cron_parser.last}"
p "Next: #{cron_parser.next}"
```
The output is
…
-
### Description
golang arg parsing is always a fun game and it's particularly fun with many submodules/subcommands
we recently noticed that our schedule commands were dropping the cron parameter:
…
-
Our system is unable to load the triples data for [MESH-RDF](http://bioportal.bioontology.org/ontologies/MESH-RDF) into our triplestore. Stack trace from parsing log file:
```
E, [2018-10-30T15:03…