Kristupas Antanavicius
Kristupas Antanavicius
Is this part of 0.12.2 release? I can't seem to remove the default ps2 inputs and replace them with usb only inputs. ``` libvirt.inputs = [] libvirt.input :type => "mouse",...
Ok, it looks like Libvirt itself adds ps2 keyboard and mouse.. I have even tried to remove the default value for `@inputs`, build the plugin using rake and install .gem...
I'm not sure if this is actually related, but I have found a way to make mouse/keyboard work for my VM. I used a similar trick as @trinitronx. I also...
I can confirm this is fixed when using `pytest-asyncio ~= 0.18`. Previously I was using `pytest-asyncio ~= 0.16` and had the same error as described in this issue.
This morning I realized there are still a couple of things that need to be implemented. - parsing spaces in key=value pairs - limit concurrency for remaining tasks that haven't...
@willemt could you take a look at this? I think I'm pretty happy with the changes at this point. These are the new concurrency control cases: - control individual marks....
Its been a while, but if I remember correctly, I haven't used any new APIs that weren't used before. I added some new configuration values, and updated how tasks are...
I've ran overnight pipelines using a VM with `start` changed from `delayed-auto` to `auto`. I've observed around 1 minute 40 seconds faster startup time for the VM. Also, for the...
You should stick with the paradigm of the language that you are using. Swift has first-class support for checked exceptions, and avoiding exceptions is just going to result in sub-par...
Its not just about copies. Currently Rust `bytes` implementation uses `for` loop to copy individual bytes from `RustBuffer` into `Vec`. `memcpy` would be far more efficient.