Liss Heidrich

Results 12 issues of Liss Heidrich

Hi there, it would be really handy if `cargo-chef` had a "very verbose" (`-vv` = very verbose/build.rs output) flag like cargo itself. So that when you are building complex C...

Fixes: #2521 ## Motivation See #2521 and linked issue in hyper ## Solution Adds the `tcp_nodelay` method to `Serve` (and `WithGracefulShutdown`) to enable the user to instruct the server to...

- [x] I have looked for existing issues (including closed) about this ## Feature Request ### Motivation Currently `axum` does not set tcp-nodelay on accepted connections. As demonstrated in this...

For general correctness tests of triplestores it would be handy if IGUANA could validate query results. Two major problems: 1. If there is no pre-generated ground-truth: Where do we get...

enhancement
low priority

Java arrays and probably some other things are for some reason limited to roughtly `Integer.MAX_VALUE` (= 2^32 / 2) bytes which is just over 2GB. Which is problematic when the...

bug

Hi, we've ran into a problem an wanted some guidance. So, the metall manager has this `k_chunk_size` template parameter which is set to `1

**Describe the bug** Hi :), I was fiddling around with `faer` and found the support around complex numbers really confusing & slightly buggy. 1. Stack overflow on windows. The following...

bug

The following code causes a segfault: ```c++ std::string const path{std::format("/tmp/metall-test-capacity-{}", std::random_device{}())}; metall::manager manager{metall::create_only, path, 1}; std::vector vec{manager.get_allocator()}; for (size_t cap = 0; cap < 100'000'000; cap += 1'000'000) { vec.resize(cap);...

In `object_cache::priv_make_room_for_new_blocks` there is an assertion that the oldest block must not be nullptr https://github.com/LLNL/metall/blob/1f6c027680ea89bf92bd9a5255e006c044aa078f/include/metall/kernel/object_cache.hpp#L742. However, this assertion is not always true which causes a segfault on one of the...