snek

Results 463 comments of snek

You have to complete the TLS handshake before you can get the `host` header, so this isn't really possible. What people do instead is use one certificate with multiple domains...

I think interior mutable access is still unsound without a runtime check due to reenetrancy/aliasing through JS.

if you write a rust function which performs `get_mut` and then also evaluates some javascript, that javascript may call the rust function again, which will do `get_mut` again. you could...

> In short, GcCell acts as if it is a pointer to data inside the v8::Isolate for the purposes of borrow checking. thanks for clarifying, i should've read the patch...

I don't think requiring the arguments to be elements of the container is unreasonable, but the other two suggestions are not valid. An implementation, for example, may perform *SortCompare(a, a)*...

@nicolo-ribaudo yes I guess to be very specific, whether the function is unstable for specific comparisons. I bring it up because, unless my memory is completely wrong, one of the...

I wonder if we need to set up bindgen to look in the right place for clang. Could you try temporarily setting `CLANG_PATH` to the downloaded clang location? (iirc it...

I looked into this some more and it turns out that the clang we download from chromium does not include libclang shared libraries. I'm discussing with them whether these can...

It looks like sandbox now requires shared read only space as well.

@wingo Am I understanding correctly here that ReadOnlyHeap and SharedReadOnlyHeap are both being kind of "merged" into the sharedness of IsolateGroup? That would be great if we can control isolate...