Jörn Huxhorn

Results 6 issues of Jörn Huxhorn

Using commands isn't as easy as the rest of JCommander. I have code that looks like this: ``` CommandLineArgs cl=new CommandLineArgs(); JCommander commander = new JCommander(cl); Cat cat = new...

```rust #![no_main] use libfuzzer_sys::fuzz_target; fuzz_target!(|data: [u8; 16]| { // fuzzed code goes here }); ``` causes the following error: ```console error[E0463]: can't find crate for `arbitrary` --> fuzz_targets/fuzz_target_1.rs:4:1 | 4...

This is a preparation for a [LOGBACK-1183](http://jira.qos.ch/browse/LOGBACK-1183) fix while keeping the optimizations of [LOGBACK-873](http://jira.qos.ch/browse/LOGBACK-873) in place. It replaces the package-private method `Throwable getThrowableCandidate(Object[] argArray)` with a public `Throwable extractUnconsumedThrowable(String messagePattern,...

### Polars version checks - [X] I have checked that this issue has not already been reported. - [X] I have confirmed this bug exists on the [latest version](https://crates.io/crates/polars) of...

bug
rust

### Description The documentation of [strptime](https://docs.rs/polars/latest/polars/prelude/string/struct.StringNameSpace.html#method.strptime) is unclear. [to_datetime](https://docs.rs/polars/latest/polars/prelude/string/struct.StringNameSpace.html#method.to_datetime) has the same issue. I don't understand what `ambiguous` (added in 0.33, I think) is doing, even after diving into the...

documentation
timeseries

I'm trying to use the following custom signature file: ``` @defaultMessage Use org.assertj.core.api.Assertions.assertThatThrownBy with isInstanceOf and hasMessage instead. org.junit.jupiter.api.Assertions#assertThrows(java.lang.Class,org.junit.jupiter.api.function.Executable) org.junit.jupiter.api.Assertions#assertThrows(java.lang.Class,org.junit.jupiter.api.function.Executable,java.lang.String) org.junit.jupiter.api.Assertions#assertThrows(java.lang.Class,org.junit.jupiter.api.function.Executable,java.util.function.Supplier) org.junit.jupiter.api.Assertions#assertThrowsExactly(java.lang.Class,org.junit.jupiter.api.function.Executable) org.junit.jupiter.api.Assertions#assertThrowsExactly(java.lang.Class,org.junit.jupiter.api.function.Executable,java.lang.String) org.junit.jupiter.api.Assertions#assertThrowsExactly(java.lang.Class,org.junit.jupiter.api.function.Executable,java.util.function.Supplier) org.junit.Assert#assertThrows(java.lang.Class,org.junit.function.ThrowingRunnable) org.junit.Assert#assertThrows(java.lang.String,java.lang.Class,org.junit.function.ThrowingRunnable) ``` Unfortunately, this causes...