cron icon indicating copy to clipboard operation
cron copied to clipboard

a cron library for go

Results 150 cron issues
Sort by recently updated
recently updated
newest added

How can I achieve above requirement using Cron, please help.

Sometimes there is no access to ZONEINFO database, but we need to set offset. In this situation, we can create a fake timezone without a database. https://golang.org/pkg/time/#LoadLocation

This PR adds the feature of executing a job on nth Day of the Week. Now, the DoW spec can be of the form, `N#M` where N is the Day...

Please check it when you are free you can test like this,(or you can change your machine local time): ``` package main import ( "cron" "fmt" "time" ) func main()...

Hello, I added the Previous method to the Schedule interface, as well as the implementation of this method to SpecSchedule. This method works on the same principle as the Next...

**What would you like to be added:** I hope the author can add the **Last (time. Time) time.Time** method to the schedule interface,return the last activation time, earlierthan the given...

Hello! It seems that I ran into the opposite of https://github.com/robfig/cron/issues/154. I use cron in the program that starts shell scripts on a schedule. Sometimes the program remains in the...

Currently, there seems to not be any race condition checking while building (`go test -race`). It would be useful to include race detection check in the travis build. We should...

> https://golang.org/pkg/time/#hdr-Monotonic_Clocks Use monotonic clock may not accurately measure elapsed time.

It would be great if the job function retrieves the respective entry as parameter to get schedule information. This would enable a job to get the time interval and previous...