Cameron
Cameron
Can you post the full error message?
For objects allocated on the heap this can be normal. It's not a problem if the alignment to 64 is not respected, it's just a hint to potentially improve performance....
You can use an SPSC implementation, provided you take care to synchronize the memory effects as the queue is handed off between threads.
Ah OK, so this is normal?
Got it :-) It's really a pretty small repository, it's just spread over a lot of files.
Hmm, I wonder -- would it help much if the calls to `git` were batched by changeset? Often many files were changed at the same time. The calls to `git...
Hmm, turns out `git log -1 path1 path2` doesn't work that way -- it yields the top commit among the set of commits for both files together (one output), instead...
Gogs finds only the information necessary for the immediate files in the folder being displayed, not the whole tree. But internally, git itself goes through its entire history looking for...
Sorry, I wasn't clear. I meant as opposed to loading the information for the whole tree, as Rukenshia was wondering. I agree that if the information cannot be obtained instantly,...
I tried at one point to implement the same functionality using the git C API directly (from C code), taking in the whole list of files as input instead of...