Jack Lindamood

Results 38 issues of Jack Lindamood

Hi, I'm using go 1.5.1 and a fork that puts 1.5 in the expected header at https://github.com/cep21/heapdump14 (https://github.com/cep21/heapdump14/commit/1d13a6e5b26f5e2678caa105f22c40041eade8bd) My program is a simple hello-world like app at https://github.com/cep21/heaptest/blob/master/main.go. I run...

Add a feature that uses https://github.com/golang/sync/blob/master/semaphore/semaphore.go to limit concurrency. In this implementation, rather than failing fast with an error, the function would wait according to the context if was at...

enhancement
help wanted
good first issue

An implementation of https://github.com/cep21/circuit/blob/master/v3/metrics/statsdmetrics/statsd.go in another repository with standardized tag names and platform independent. I think datadog style statsd tags will allow us to solve this in a generalized way

help wanted
good first issue
needsmoreinfo

# Problem In the basic case, we want to time out or limit the rare bad request so we can maintain a good SLA. However, when problems happen (maybe the...

enhancement
help wanted

We should have tests to ensure statsd metric values don't change.

help wanted
good first issue

Hi, I'm using migra as part of my CI/CD pipeline. I understand wanting migra's error code to match diff's, but for a CI/CD pipeline I want to differentiate between a...

enhancement

If there are dependency cycles, the framework just fails inside a stack overflow. Ideally it would detect cycles and give a good error message.

### Describe the bug Our flux 1.0 setup is a monorepo with this setup ``` /releases/// ``` For example, we have one file in the path ``` /releases/prod/nginx-ingress/helmrelease-nginx.yaml ``` In...

Hi, I have a "mage.go" file at my root. I also have some helper libraries, at a path like `github.com/mycompany/magehelpers` So my go.mod file may look like this ``` module...

Reproducible test case: ``` > cat convey_test.go package convey import ( . "github.com/smartystreets/goconvey/convey" "testing" ) func TestFoo(t *testing.T) { t.Parallel() Convey("Foo", t, func() { Reset(func() {}) }) } func TestBar(t...