Jed Brown
Jed Brown
Just replace `immediate_ready_send` with `immediate_send`.
How do we get a parallel job in your model? Using `MPI_Comm_spawn`? I'm familiar with test harnesses and tinkered with them to some extent. I'm a big fan of nextest,...
The interface would be `cargo nextest run`. Custom test harnesses can be implemented using libtest-mimic or manually ([nextest docs](https://nexte.st/book/custom-test-harnesses.html)). If using `libtest-mimic`, it'll require a small modification to be able...
Sorry about the silence. If it's a different remote, it may also be a different user. We should do named remotes like Git itself.
Yes, when i started `git-fat`, I wanted to avoid the dependency (it's not in the default distribution prior to python-2.7), but it is easy enough to install and, in retrospect,...
I hit this error in the default Arch Linux build because it [now uses `-fno-omit-frame-pointer`](https://rfc.archlinux.page/0026-fno-omit-frame-pointer/) as do [many distributions now](https://www.brendangregg.com/blog/2024-03-17/the-return-of-the-frame-pointers.html). The rationale, as desribed in the second link, is to...
There has not been a release since gklib was decoupled from METIS (978c43a1e7351f937705de70dd14535487d006bc). It's unclear what versions are needed and this makes things challenging for packagers and confusing for users.
Simply running `git add` in a normal repository (or `git hash-object`) will take a similar amount of time because the SHA1 needs to be computed and the file compressed. Normally...
1. There's nothing I can do about it in `git-fat`. After all, I'm in a separate process. It is possible that something could be done in upstream `git`, but it...
Does `git fat status` take a similarly long time? What about `git fat status HEAD^..`?