Steven Grimm

Results 14 comments of Steven Grimm
trafficstars

A new version of the Java Docker client library was just released today that fixes this (uses npipe by default on Windows): https://github.com/docker-java/docker-java/releases/tag/3.2.12

For commands and maybe queries, where there's bidirectional communication with an originating node, I think downcasting is also needed for the case where new code sends to old code. The...

That approach only works for additions and removals of fields. Which, granted, is probably the vast majority of changes, but consider something like ``` { orderId: 1234, itemId: 432, warehouse:...

A few possible fixes: 1. Make `GapAwareTrackingToken` store ranges rather than individual IDs. Then a contiguous gap of any arbitrary size will take constant memory. Obviously the worst-case behavior here...

On the "why not just use the Java generator" question, the big thing that pushed me toward the Kotlin generator was being able to use named arguments in constructors. Also,...

I'd commented that one reason to not switch to the Java generator was to get named constructor parameters. The `copy` method is also a key benefit of Kotlin data classes....

Just ran into this with a file upload API that had an object part for some metadata. The whole proposed solution here would of course be great, but just setting...

I think the example parameters in the [previous comment](https://github.com/facebook/ktfmt/issues/226#issuecomment-857064823) are kind of a best-case scenario for the existing behavior because things line up neatly: every parameter has annotations of exactly...

Maintaining it as a standalone file people can download may be easier than making the plugin emit it on the fly, but either way would be useful. Basically the idea...

The target audience I had in mind is actually IntelliJ users. To be clear, this is definitely a low-priority thing, but I'd want this for a few reasons: * My...