Jonas Greitemann
Jonas Greitemann
# Checklist If applicable: - [ ] I have updated `CHANGELOG.md` - [ ] I have updated the documentation (README.md, docs/, demos/) - [x] I have updated the config schema...
We have a reasonably accurate schema for the config TOML but we don't actually benefit from it when editing the config file in an editor which either has a _taplo_-derived...
Fixes #5189. As discussed in the issue, I went ahead with property-based testing and followed the state machine approach mentioned by @arxanas. Thanks for the pointers you gave in https://github.com/jj-vcs/jj/issues/5189#issuecomment-2836104306;...
Fixes #6861 # Checklist If applicable: - [x] I have updated `CHANGELOG.md` - [ ] I have updated the documentation (`README.md`, `docs/`, `demos/`) - [ ] I have updated the...
## Minimal reproduction ```cpp auto do_nothing_in_parallel() -> boost::asio::awaitable { using Task = decltype(boost::asio::co_spawn( std::declval(), std::declval(), boost::asio::deferred)); std::vector tasks; co_await boost::asio::experimental::make_parallel_group(std::move(tasks)) .async_wait(boost::asio::experimental::wait_for_all{}, boost::asio::use_awaitable); } int main() { boost::asio::io_context ctx; auto f...