Rob Figueiredo

Results 101 comments of Rob Figueiredo

I agree that it seems useful, but I can't see any way to add this functionality in a backwards compatible manner. Or even if it weren't backwards compatible, I don't...

A related idea is providing a context to jobs which provides that sort of information in it, and which can be used for cancelation (e.g. calling cron.Stop() cancels the context...

Yeah, this seems like a good change, although I wouldn't use the term Cancelable since jobs may want the context just to get the schedule information. Maybe something boring like...

To clarify what you're suggesting.. if the GO15VENDOREXPERIMENT environment variable is set, then use /vendor/ as the root of the GOPATH for "go get" invocations instead of the system GOPATH...

I pushed a version on the vendor branch. Unfortunately, I realized that putting everything within the vendor directory breaks the ability to build commands -- afaik there is no easy...

I think that only works for library dependencies. For example, my work glockfile includes "cmd github.com/gogo/protobuf/protoc-gen-gogo", which causes glock to "go install github.com/gogo/protobuf/protoc-gen-gogo" whenever dependencies update. However, the go install...

Yeah, I guess I was thinking of files like README and INSTALL rather than Makefile or Godeps. I don't mind changing it. Probably the ideal solution would be to (a)...

Yeah, I meant dependencies, not the main repo. (Frequently the main repo is dirty with in-progress changes)

Very cool, thanks for the links

Thanks for the great package! We run errcheck as part of our continuous build at work. I'm interested in getting this case covered, but it seems like it may be...