pennae
pennae
when using the memory backend multiple subcommands of nixops either misbehave or fail entirely while the "important" stuff like deploy works as expected: - `nixops info` lists all machines of...
**Describe the bug** toJSON unnecessarily truncates floats to six significant figures. **Steps To Reproduce** ``` nix-repl> builtins.toJSON 1.000001 "1" nix-repl> builtins.toJSON 1048576.1 "1.04858e+06" ``` **Expected behavior** ``` nix-repl> builtins.toJSON 1.000001...
currently floating point conversions are done with 6 digits of precision, which is adequate for float but can lose precision for double. toString additionally uses the fixed format rather than...
# Motivation fix #9149. also fix exponential increase in error message size with nested inherit-from expressions. (cc @roberth) # Context we now allocate an extra env for attrsets containing inherit-from...
having a wrapper for `clock_nanosleep` and its `TIMER_ABSTIME` flag would be extremely useful for accurately doing something with an exact period. `clock_nanosleep` is specified in https://pubs.opengroup.org/onlinepubs/9699919799/. is this something `clock`...
it seems that nom updates its display way too often. builds that produce a lot of output very quickly (eg because they're running on many threads) flicker to the point...
### Describe the bug **context** myst_role misparses inlines that begin with a role occurences and end with `\` because its checks for leading `\` unintentionally wraps around the end of...