Evgeny Safronov
Evgeny Safronov
Given: - logging pattern: `"some message with {} placeholders and {:d} even {:.3f} more"`. - formatting arguments: `["some", 2, 3.1415]` Required: - check that sizeof...(Args) == placeholdersCount(). - for every...
There are some maps with `std::string`. However an attribute name is a `std::string_view`, and without c++17 it's required to always convert view into string to perform find operation. This can...
Given a `std::chrono::duration` value: `const std::chrono::seconds value(1);` Suggest some way to auto format **both** pattern placeholders and attributes when provided values of such type. For example: ``` c++ logger.log(4, "elapsed:...
This helps to avoid unnecessary downloading if these libs are already installed.
Currently we're not checking master's level, but we must.
Currently, all containers are run without IPv6 support due to Docker default limitations. However, when a task is started, there are IPv6-mapped endpoints shown in the output, they are still...