Anton Zhilin
Anton Zhilin
Sometimes I want to `co_return` some additional final value from a generator. It could be: - Some additional statistics on the data as a whole - A reason for why...
In order to be able to use RansacLib as a modern CMake library, I had to: 1. Move `RS_ROOT/RansacLib` directory to `RS_ROOT/include/RansacLib`, because otherwise I'd get `examples`, `LICENSE` and `README`...
Minimal reproducer: ```cpp thread_local int x{}; ++x; engine::Yield(); ++x; ``` Let's say that after the context switch, the task is scheduled on another thread. It's expected then that after `Yield`,...
https://t.me/vfarme > Basically I have a monorepo with a structure like > > ``` > - service_1 > - service_2 > - service_3 > - third_party > - userver >...
When an `engine::impl::TaskContext` (roughly a stackful coroutine) is ready to start or continue running, it is pushed (scheduled) by `engine::TaskProcessor` into `engine::TaskQueue`, from which worker threads will then take it....
userver fixtures rely on only 1 service being there: 1 service binary and config locations, 1 config, 1 set of ports, 1 set of clients, etc. All of this will...
From time to time, we raise the question of LRU efficiency in the internal discussions. We could try improving the basic implementation of LRU caches by replacing LRU with TinyLFU...