Results 490 comments of Jacob Lifshay

are you still intending on working on this? having storepass work on oftc would be really nice!

I wrote some code that could be adapted: https://salsa.debian.org/Kazan-team/spectre-resistant-speculative-processor/-/blob/b894d88aea15f7dbe237a0aa25b0ca6345d95ca7/src/logic.rs#L391 you have my permission to use `logic.rs` under the Apache 2 OR MIT license even though it's currently LGPLv2.1+

If you do use it, I would appreciate adding a link to the original source in a comment or something, along with the note about my giving you permission to...

https://github.com/WebAssembly/memory-control/blob/16dd6b93ab82d0b4b252e3da5451e9b5e452ee62/proposals/memory-control/virtual.md#L80 I don't think you can use `munmap` since iirc that would let the host put unrelated allocations in the memory range that was supposed to be reserved for the...

why not return both the key/value you tried to insert and the `OccupiedEntry`? i'd expect the key to just be dropped by `entry` anyways, so returning both wouldn't need to...

*please* don't call it converging, that isn't the opposite of diverging as you seem to think, but instead commonly used for GPU code where you want all threads in a...

also broken in chrome on android with javascript disabled

> ```rust > std::iter::zip([10], [11]).map(usize::min) > ``` when we get variadic generics, you could probably just have: ```rust pub trait Iterator { // assumes variadic generics are built on tuples...

> Are you suggesting this as a change to `map`, or as a separate method? > If the former, would this be a breaking change? `splatted_map` would have to be...