Heyang Zhou
Heyang Zhou
Basic DOM operations on HTML and XML documents are now implemented (https://github.com/losfair/blueboat/pull/71). The API looks like: ```js let dom = TextUtil.DOM.HTMLDOMNode.parse('Test', { fragment: true }); dom.queryWithFilter({type: "hasClass", className: "some-class"}, elem...
I just tested with your second + last examples on x86_64 (not Android though) and it didn't crash. Is the error only present on JNI/Android or on all x86_64 platforms?
Being worked on as a part of #489 .
I ran the tests in a Linux VM to keep the environment consistent with described in README. Running natively on macOS: ``` % time ../target/release/async-brigade 500 tasks, 10000 iterations: mean...
@jimblandy > how about one-thread-brigade, to see how much time is due to the I/O alone? macOS (M1): ``` % time ../target/release/one-thread-brigade 10000 iterations, 500 tasks, mean 259.929µs per iteration,...
Not yet, since the Wasmer backend support for generating code for secure kernel context + ARM64 combination isn't implemented.
I'd prefer the first or the second method to keep things simple. However, I have a few questions about these two approaches: - For the first approach, is it possible...
I'm not aware of any stdlib interfaces for flushing caches. Maybe generate the cache flushing instructions with dynasm itself for stable rust?
Looks nice to me! Will try it. Thanks!
A runtime is needed to run WebAssembly modules compiled from Go. What runtime are you using? Are you sure that the panic originates from the default branch but not somewhere...