Jens Reimann

Results 241 issues of Jens Reimann

There are currently three methods in `CompositeFuture` which force you to use raw types: * `io.vertx.core.CompositeFuture.all(List)` * `io.vertx.core.CompositeFuture.any(List)` * `io.vertx.core.CompositeFuture.join(List)` The causes compiler warnings to appear all over the place:...

I am having troubles figuring out how to deal with base64 encoded blobs. This can be used with serde, using the `base64-serde` crate. However, I would also need to add...

**Problem** ``` error: the property value must be either a literal or enclosed in braces. Consider adding braces around your expression. --> src/components/slider.3.example:13:25 | 13 | | ^^^^^^^ ``` Using...

feature-request
ergonomics
macro
A-yew-macro

When using the dart-sass version compiled to JavaScript (to e.g. run on aarch64) the version string is slightly different: ``` [root@d36e6883d18e /]# sass --version 1.49.7 compiled with dart2js 2.15.1 ```

I am importing popperjs using: ``` #[wasm_bindgen(module = "/src/js/popperjs.js")] extern "C" { #[wasm_bindgen(js_name = "createPopper")] pub fn create_popper( reference: web_sys::Node, popper: web_sys::Node, opts: &JsValue, ) -> Instance; } ``` This...

Assuming I use `trunk serve` for local development (same for `trunk watch`), I would like to enable an additional feature for the Rust build automatically (`--feature debug`). It would be...

Stale

## Description Maybe it is me, or my understanding, but it feels like the table layout is pretty broken. ## To Reproduce For example: Add two columns, with `Max(64)`, `Min(10)`....

bug

**Is this a request for help?**: No --- **Is this a BUG REPORT or FEATURE REQUEST?** (choose one): **Version of Helm and Kubernetes**: * helmpack/chart-testing:v2.4.0 **What happened**: The linting fails...

Read the FAQ first: https://github.com/edenhill/librdkafka/wiki/FAQ Description =========== librdkafka requires a `group.id` for the `assign` operation of a consumer, while the Java client does not. https://github.com/edenhill/librdkafka/blob/f5c1045dc898abd1bd0b97da90b4717876f5d251/src/rdkafka_subscription.c#L110-L113 Java: https://github.com/apache/kafka/blob/1adb580faae89e0a298c0cb4ba08b238d91f9d03/clients/src/main/java/org/apache/kafka/clients/consumer/KafkaConsumer.java#L1101 Compared to "subscribe":...

Using a "too big" number (like the current milliseconds since the unix epoch) with the Perlin noise generator make it panic: ``` panicked at 'attempt to add with overflow', /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/core/src/ops/arith.rs:108:1...