Gavin Rohrer
Gavin Rohrer
I noticed that the queues used in `balance.c` are all `rpq_t`, but all operations it is used with are integer keys that are implicitly cast to floats. Would it be...
On NixOS, `Shell.rm` fails to remove the `perf.data` file because it cannot find `/bin/rm`, which is a fatal error. This issue really lies with [shell](https://github.com/janestreet/shell), but I don't know enough...
#### Your system information * Steam client version (build number or date): `1715635533` * Distribution: ``` OS: Linux 6.1.90, NixOS, 23.11 (Tapir), 23.11.6869.651b4702e27a Host: ASUSTeK COMPUTER INC. STRIX Z270E GAMING...
Please, before submitting a new issue verify and check: - [X] I tested it on latest raylib version from master branch - [X] I checked there is no similar issue...
The first two loops in `CheckInputGraphWeights` in `checkgraph.c` have bad iteration logic and are guaranteed to perform out-of-bounds reads. It doesn't look like the function is called anywhere, but it...
The following graph fails an assert when compiled with `assert=1`: ``` % partition with this command: % gpmetis -ptype=kway -ctype=shem -objtype=vol -contig -seed=125 -nooutput GRAPH_FILE 16 51 207 010 3...
Currently, If there are links with long urls but short descriptions, `gq` formats them according to their expanded text. It would most likely be desirable for it to be formatted...
**Describe the bug** On startup, the plugins crashes taking plasma-workspace along with it. **Workshop link** [1543302637](https://steamcommunity.com/sharedfiles/filedetails/?id=1543302637) and [1115554966](https://steamcommunity.com/sharedfiles/filedetails/?id=1115554966) **System Information** - Kde: 6.4.5 - Qt: 6.9.2 (I think??) - OS:...
https://github.com/rust-lang/nomicon/blob/91044a66c8342ce3a85ebf5bc3f6811a39843990/src/unchecked-uninit.md?plain=1#L32 This asserts that `Box::new` cannot panic, but of course, it may fail to allocate in which case [`handle_alloc_error`](https://doc.rust-lang.org/std/alloc/fn.handle_alloc_error.html) is called, which is documented as potentially panicking.