pkg
pkg copied to clipboard
A collection of stand-alone Go packages
###### _excavator_ is a bot for automating changes across repositories. Changes produced by the go/godel-update-plugins-oss check. To enable or disable this check, please contact the maintainers of Excavator. - -...
###### _excavator_ is a bot for automating changes across repositories. Changes produced by the go/godel-update-version-oss check. To enable or disable this check, please contact the maintainers of Excavator. - -...
###### _excavator_ is a bot for automating changes across repositories. Changes produced by the go/manage-go-version-oss check. To enable or disable this check, please contact the maintainers of Excavator. - -...
###### _excavator_ is a bot for automating changes across repositories. Changes produced by the go/manage-go-mod-dependencies-oss check. To enable or disable this check, please contact the maintainers of Excavator. - -...
Carbon is a simple, semantic and developer-friendly golang package for datetime, it has been included by [awesome-go](https://github.com/avelino/awesome-go#date-and-time) https://github.com/golang-module/carbon
This change is [](https://reviewable.io/reviews/palantir/pkg/222)
Adds new `AllowRoot` boolean setting to control if an implementation of cli App is allowed to run as UID 0 (root). Defaults to `false`. --- This change is [](https://reviewable.io/reviews/palantir/pkg/192)
# Issue I would expect the following ``` func Test(t *testing.T) { err:=retry.Do( context.Background(), func() error { fmt.Println(time.Now()) return errors.New("some errors") }, retry.WithInitialBackoff(10*time.Second), retry.WithMultiplier(1), retry.WithMaxAttempts(5), ) require.NoError(t,err) } ``` To...
This library currently uses a slice to store tags [0]. However, Witchcraft converts the tags to a map when emitting them [1]. Even though the lossy behavior of converting the...
If I have a cli with a duration flag that is not required and has no default, it will always panic with the message: ``` panic: time: invalid duration ```...