Lucas Kent
Lucas Kent
**Description** My understanding is that when the `webgpu` and `webgl` cargo features are enabled and `Backends::all()` is set, the adapter should attempt to be created with webgpu and then failing...
It seems that j4rs does not support calling java methods defined with varargs from rust. I'll take a look into whats missing for this to work, but if you have...
closes https://github.com/astonbitecode/j4rs/issues/123 This PR does two important things: * includes the word `varargs` in the docs, which is the actual term used by java, and the term that I searched...
It was not clear to me how to run tests, I eventually figured it out and documented my findings here. Instead of checking in the script we could provide a...
Possible solution for https://github.com/tychedelia/kafka-protocol-rs/issues/84 I'll have a go at porting my application to it and report back. edit: https://github.com/shotover/shotover-proxy/pull/1759 The benchmark for decoding produce requests improved by 20% ! Fun...
At least I think thats what I want. What I really want is to replace the usage of raw_cpuid in this file with cpufeatures https://github.com/metrics-rs/quanta/blob/main/src/detection.rs The reason being that: rawcpu_id...
This turned out to be more complicated than I initially thought. When `AdminClient.listConsumerGroups` is called, the java driver sends a `ListGroups` request to all brokers and then combines the responses,...
Every variant of the PendingRequestState enum contains a `destination` field of the same `Destination` type. This is redundant and we would be better off just storing this value once in...
This was an experiment to see if we could remove the confusing `'shorter`/`'longer` lifetimes from the transform definition. And I think it was a success! Decoupling the transform iterator from...