Alex Pyattaev

Results 8 comments of Alex Pyattaev

The only change needed is to put ('cgroup %s' % cgdir not in mounts and 'cgroup2 %s' % cgdir not in mounts and 'cgroups %s' % cgdir not in mounts)...

Trying to test the version, it fails to build with error: failed to select a version for `unicode-xid` which apparently is somewhere in the depths of the deptree for bevy...

Thanks @nicopap ! I was 100% sure that cargo clean actually wipes all build artifacts - I was so wrong! Live and learn, I suppose. Anyhow, testing was done usign...

Same failure, AMD GPU, latest driver and software on Arch linux. - WGPU_BACKEND=gl cargo run #woks fine, - AMD_VULKAN_ICD=RADV cargo run #works fine, - AMD_VULKAN_ICD=AMDVLK cargo run #crashes same as...

Also when something inevitably goes wrong, error messages are not helpful at all: resolvectl service _http._tcp local Resolve call failed: '_http._tcp.local' does not have any RR of the requested type...

Any chance to be able to just fetch all of the results? It would be a treasure for researchers doing compute performance analysis.

I've had to implement this functionality (for mutable iterators over some Container), and this is what I've learned: - The data stored in a Container is usually some Rust struct...

This crate does address this to some extent https://docs.rs/duplicate/latest/duplicate/ Though one has to admit this is a bit of a hack. But also a perfect use case for macros.