Samuel Coleman

Results 7 comments of Samuel Coleman

D'oh, I somehow didn't see https://github.com/NV/CSSOM/pull/113, which does the same thing as this.

For anyone running into this error after upgrading Jest, you're seeing this because Jest 27 [changed its defaults](](https://jestjs.io/blog/2021/05/25/jest-27#flipping-defaults)) to use [the Circus test runner](https://www.npmjs.com/package/jest-circus). You can keep using bdd-lazy-var by...

@decompilercmp, it seems like you uploaded/linked `LocaleUtils.class` instead of `JpegUtils.class`. Do you still have the original? The class files for `JpegUtils$1` and `JpegUtils$Visitor` included in the only version available from...

Another possible solution would be to remove the `stderr` checking, and rely on the error checking of `cmd.Wait()` to catch a non-zero exit status from the `go list` invocation. Conventionally,...

How are you trying to serve the Swagger UI: from a static, standalone web server (e.g., Caddy, nginx); or from within your Go application? If you're trying to expose the...

As a consumer of this library, I'm generally leery of libraries tying themselves to any particular logging library. While most of my applications do depend on Logrus, I'd hate for...

Setting `GO111MODULE=off` to force a global install also disables Go modules, so you can't refer to a module version (in this case, `v2`). You have two options: * If you're...