Dennis Duda

Results 16 issues of Dennis Duda

Just reducing the number of parentheses a bit: - `no_context` → `context(false)` - `context(no_suffix)` → `context(suffix(false))` - `no_source` → `source(false)` etc.

As discussed on discord, feel free to edit/move/etc. :)

https://github.com/technocreatives/core2/blob/d2d4681c13dfef88ac5fe0ced8d3cb98ccdee85c/src/io/buffered.rs#L612-613 https://github.com/technocreatives/core2/blob/d2d4681c13dfef88ac5fe0ced8d3cb98ccdee85c/src/io/buffered.rs#L631-633 `copy_from_slice` panics if the slices are of different length. The code does not limit `self.buf` to the correct slice offset and length needed for this call to ever...

We were debugging a crash issue in v8's garbage collector crashing the Electron renderer process and traced it back to the usage of a `Buffer` supplied by the JS side....

Extending from the `swap_closed` test in [`merge.rs`](https://github.com/austinjones/postage-rs/blob/main/src/stream/merge.rs): ```rs #[test] fn swap_closed_pending() { let left = from_poll_iter(vec![PollRecv::Closed, PollRecv::Closed, PollRecv::Closed]); let right = from_poll_iter(vec![PollRecv::Ready(1), PollRecv::Pending, PollRecv::Ready(2)]); let mut find = MergeStream::new(left, right);...

If TOPBENCH is on a write-protected floppy, it exits with a rather non-descriptive `Runtime error 150`. Ideally it'd still work (without the ability to write to the database, of course)

bug

Not sure if this would be in scope for the repo, but would be nice to have documented somewhere. I wasn't able to get a valid kernel driver binary going....

### Code I tried this code: ```rust pub fn fna(x: [u8; 1024]) -> u8 { x.into_iter().max().unwrap() } pub fn fnb(x: [u8; 1024]) -> u8 { *x.iter().max().unwrap() } ``` [Godbolt](https://rust.godbolt.org/z/f36snahTn) I...

A-LLVM
I-slow
T-compiler
C-bug
I-prioritize
regression-untriaged