Maik Riechert
Maik Riechert
Google uses bare keys for example, but I don’t have that use case myself. https://www.googleapis.com/oauth2/v3/certs > On 25 Jul 2022, at 11:37, Amaury Chamayou ***@***.***> wrote: > > >...
Not at this time. > On 25 Jul 2022, at 11:37, Amaury Chamayou ***@***.***> wrote: > > > @letmaik is there a particular use case for this? > >...
> > In those conditions, the JIT kicks in, especially when the benchmark doesn't just run for a few microseconds. > > I think you mean _doesn't_. No, just badly...
> > > > In those conditions, the JIT kicks in, especially when the benchmark doesn't just run for a few microseconds. > > > > > > > >...
@wintersteiger managed to fix the remaining OE issues, which means V8 runs in SGX as well now, single-threaded. One (obvious) observation from running single-threaded is that there are no background...
For the limits, I would suggest to store global (not per-endpoint) settings. I don't think there's a good use case for per-endpoint settings and keeping it separate from the app...
The interrupt handler set by `JS_SetInterruptHandler` is called (via `js_poll_interrupts()`) at the following points, mostly to avoid going into infinite loops/recursion without allowing "ctrl-c": - function calls - `instanceof` -...
I had another look at this and can confirm that sharing runtimes is not enough because module loading/caching happens per-context, not per-runtime. The docs of quickjs mention: > If the...
The following leverages the tests to try to find slow methods with cProfile: ``` python -m cProfile -o profile.pstats -m pytest tests ``` Dumping the top 10 functions sorted by...
+1 Would be really useful.