Robin Karlsson

Results 5 comments of Robin Karlsson

We're getting a similar `SUI_CONTAINS_BEFORE_ADD` false-positive. ```java if (!set.contains(item) && expensiveLogic(item)) { set.add(item) } ``` `!set.contains(item)` is used as a quick check to avoid calling the more expensive method unnecessarily....

We also ran into this problem and would like to be able to bootstrap the graviton based EC2 instance types (c6g, m6g, etc) when running Amazon Linux 2. > When...

This was suggested by @wing328 in the PR that added `asyncNative`: https://github.com/OpenAPITools/openapi-generator/pull/4721#issuecomment-567387617 I would like to try to create a PR for this but I'm a bit unsure about how...

I looked at the output for `okhttp-gson` now and yes, that's similar to what I mean. For each operation I would like to have: - `{{operationId}}(...)` - normal synchronous request...

Will there be a new version of 6.X.Y that accepts running on Java 25? I want to use `datasketches-java` in a library used by a few different projects, but I...