cron-utils
cron-utils copied to clipboard
Cron utils for parsing, validations and human readable descriptions as well as date/time interoperability.
I need something like below: > newCronExpression = convert (localCronExpresn,fromLocalTZ, "UTC") Is it possible using cron-utils? Let me give an example: My local timezone is IST i.e. GMT+5.30. Current local...
Hello, @jmrozanec. I use next cron expression 0 0 0 ? * 6 * and use class CronDescriptor.instanse(Msg.getCurrent()).describe() I want to get at 00:00 at and Saturday day. I get...
Given the following expressions: cron1 = "0 0 10 1/1 ? "; //everyday at 10am cron2 = "0 0 10 ? MON "; //every monday at 10am We would ideally...
Cron expressions like -> (`*/2 * * * *`) are supposed to run every two minutes from a scheduler that checks every 10 second if now is the execution time...
- Check everything builds and tests do pass for JDK17 - Update Travis CI settings, to build on JDK17
Some cron parsers do support intervals like `@every 1h30m10s` For example: https://pkg.go.dev/github.com/robfig/cron#hdr-Intervals https://github.com/robfig/cron/blob/master/doc.go#L26 Would be great to get them in cron-utils too
Not sure if this problem is related to issues #402 and #403 but using zoneid "America/Sao_Paulo" with a cron starting at midnight I just can't get a correct time for...
Construct a cron from [java.time.Duration](https://docs.oracle.com/javase/8/docs/api/java/time/Duration.html)
In `AndFieldValueGenerator`, in the function ``` protected List generateCandidatesNotIncludingIntervalExtremes(int start, int end) ``` there is a try/catch which just logs the exception and returns an empty list. ``` Catched expected...
 Current System time is 2019-10-30 12:16:00 My cron is: 0 * 0/2 * * ? . means every 2 hours execute one times. My cron-utils version is :9.0.2 but...