Merge pull request #5388 from IntersectMBO/dependabot/github_actions/actions/checkout-7
build(deps): bump actions/checkout from 6 to 7
build(deps): bump actions/checkout from 6 to 7
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
A low level API which allows to control address resolution mode via `AcceptFilePath` introduced in the previous patch.
Export constructors of `Address`: * `IP` * `mkAddress`
A low level API which allows to control address resolution mode via `AcceptFilePath` introduced in the previous patch.
Export constructors of `Address`: * `IP` * `mkAddress`
Update policy based on mainnet messaurements.
tasty 1.5.4 causes ~4x higher peak memory under parallel test execution (510 MiB max residency vs 160 MiB with 1.5.3), causing OOM at GHCRTS=-M900M on x86_64-linux CI.
These expose some combinators which allow for summarising rolling statistics across a long stream in constant memory.
These modules expose sliding windows backed by an approximate t-digest measure, which permit efficient computations of quantiles in bounded memory.
These modules keep samples within a configured duration of the newest sample's timestamp. These variants abstract over the timestamp type via the 'TimeLike' class, which have two implementations defined: - `UTCTime` / `NominalDiffTime` (wall-clock, from `time`) - `Time` / `DiffTime` (monotonic, from `io-classes:si-timers`) Monotonic is preferred when sliding-window correctness must not be perturbed by NTP corrections or wall-clock jumps; wall-clock fits data that already carries `UTCTime` timestamps.
These modules provide a fingertree-backed sliding window with fixed element count. The fingertree backend caches a user-supplied monoidal measure `v` which updates incrementally as elements are added and evicted, which allows for constant time lookup of its value regardless of window size. The Window.Count module exposes a public API, and the private internal implementation is exposed by the Internal.Count module without any guarantees that it stays compatible between any releases. The Measures module exposes some common and practical prebuilt measures.