Zygo

Results 411 comments of Zygo

> But what is missing is the item adjust_offset_hit. Is it possible that the file is not quite up to date? That one is missing. Thanks for spotting it! >...

Sure. What did you have in mind? Pass version string to Makefile via an environment variable, then (if defined) use that instead of git describe?

Ironically, that code is meant to detect at runtime exactly the bug that the warning is warning about at compile time: it attempts the desired cast, and verifies that <...

Due to the privileged and pervasive nature of this program, I'd really rather it not build than produce binaries with ignored warnings. Package maintainers are free to add `-Wno-error` to...

I was thinking github actions too, but docs.github.com was down earlier today when I wanted to read about it :-P Though...now that it's back up, I see that their `ubuntu-latest`...

> Anyway, shall I close this issue, or leave it open? Leave it open please. There are better ways to write that template, and no CI workflow can be considered...

Currently you have to run `compsize` before and after to see how much space was saved. bees does not track the amount of space saved itself. It only tracks the...

The df 'used' column reports the total space usage across the filesystem. `btrfs fi show` gives that information broken down by drive. For dedupe purposes, simply comparing the df 'used'...

The hash table is loaded lazily by extent scanning. If the hash table fails to load because of an exception, the extent scanner's exception handler traps the exception and returns...

Should we round up or round down? What happens if the file is 15.9MB and the size rounds down to zero? What if there is some other error opening the...