cron-utils icon indicating copy to clipboard operation
cron-utils copied to clipboard

Cron utils for parsing, validations and human readable descriptions as well as date/time interoperability.

Results 53 cron-utils issues
Sort by recently updated
recently updated
newest added
trafficstars

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...

help wanted
feature
hacktoberfest
good first issue

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...

bug
help wanted
hacktoberfest

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...

help wanted
feature
hacktoberfest

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...

bug
help wanted
hacktoberfest

- Check everything builds and tests do pass for JDK17 - Update Travis CI settings, to build on JDK17

enhancement
help wanted
hacktoberfest

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

help wanted
feature
hacktoberfest

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...

bug
help wanted
hacktoberfest

Construct a cron from [java.time.Duration](https://docs.oracle.com/javase/8/docs/api/java/time/Duration.html)

help wanted
feature
hacktoberfest

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...

bug
help wanted
hacktoberfest

![图片](https://user-images.githubusercontent.com/26923461/67828732-7951dc80-fb0f-11e9-8651-b1320a29a835.png) 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...

bug
help wanted
hacktoberfest