Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
github.com/stvp/clock
A clock takes any number of strings and sends them at a somewhat consistent rate on a channel. You can specify a tick interval and a cycle duration to control how long it takes for the full set of keys to be cycled through. For example, if you use an interval of 1 second and a cycle time of 1 minute and add 120 keys, the clock will send a string on Channel 120 times per minute (2 per second on average).
Any given key will always be placed at the same position on the clock as long as the interval and cycle remain the same.
The clock can be stopped and started at any time.
package main
import (
"fmt"
"github.com/stvp/clock"
"time"
)
func main() {
c, err := clock.New(100*time.Millisecond, time.Minute, 0)
if err != nil {
panic(err)
}
c.Add("neat")
c.Add("dude")
c.Add("rad")
c.Start()
for str := range c.Channel {
fmt.Printf("Received: %s\n", str)
}
}
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.