Brian Kroth
Brian Kroth
@byte-sculptor observed that we are currently missing the Python long haul tests. We don't necessarily want these in the CI pipelines (they take too long), but we do want to...
As noted in #133, we currently offer `wchar_t` support in a few places (e.g. `WideStringPtr`). This has portability issues since on Windows that's 2-bytes and on Linux it's 4-bytes. There...
We switched to ListenAny for the GrpcServer in Mlos.Agent.Server in #106 so that we could expose the ports in Docker. Apparently this causes a security pop-up in Windows. We should...
We already do this for Python using sphinx. It's already possible to output xml from the msbuild `.csproj` files. Should be able to output either HTML directly or use another...
We already do this for sphinx. However, it may require some tweaks for C++ to use a well recognized/supported comment format (e.g. doxygen)
We've noticed that troubleshooting, particularly where there is cross process/language waiting or lookups involved, could be added by some simple print statements to track the status of various operations (e.g....
Do we have an issue to move the CI to conda? _Originally posted by @amueller in https://github.com/microsoft/MLOS/pull/79#issuecomment-693479238_
There are several places where `getcwd` is used to compose a path assuming that the script is executed from the `source/Mlos.Python` directory or else used to create a temporary file....
Hmm, Python unit tests are still timing out. Something else might be going on than the Python unit tests just randomly taking a long time due to high-degree polynomials being...
We currently get an error in the `website/build_site.sh` script if `pip` selects a new version (e.g. 6.0.1): ``` jinja2.exceptions.TemplateNotFound: index.md.j2 ``` _Originally posted by @bpkroth in https://github.com/microsoft/MLOS/pull/61#r486501149_