orchestra: pre-release WIP snapshot (orchestra-06g4xafh1mbpc35vsjn7v3ns14-5ec6e9dc)

This commit is contained in:
2026-08-29 22:00:45 +04:00
parent 7c24b6acea
commit 36bcf8a2e1
+3
View File
@@ -64,6 +64,9 @@ now_us() { printf '%s' "${EPOCHREALTIME//[!0-9]/}"; }
# elapsed_ms <start-us>: whole milliseconds since <start-us>. # elapsed_ms <start-us>: whole milliseconds since <start-us>.
elapsed_ms() { printf '%s' "$(( ($(now_us) - $1) / 1000 ))"; } elapsed_ms() { printf '%s' "$(( ($(now_us) - $1) / 1000 ))"; }
# check_count: how many checks the run will execute.
check_count() { set -- $CHECKS; printf '%s' "$#"; }
# emit <format> <template> [args...]: the single output path. # emit <format> <template> [args...]: the single output path.
# format: text or json print; none suppresses (--quiet). Explicit argument, # format: text or json print; none suppresses (--quiet). Explicit argument,
# never read from an enclosing variable. # never read from an enclosing variable.