Mrmaxmeier

Results 30 comments of Mrmaxmeier

Here's a small reproducer that doesn't depend on message sizes: ```javascript import { serve } from "https://deno.land/[email protected]/http/mod.ts"; const HTTP_PORT = 4321; setTimeout(async () => { const c = await Deno.connect({...

I'm using a simple mmap-based allocator to work around #4000 (^) here: https://github.com/Mrmaxmeier/wasmtime/commits/cranelift-jit-reserve-vmem-area The branch is mostly a hack though and made for easy rebasing, but feel free to benchmark...

> I have progress in oxidizing: > [crlf0710#273](https://github.com/crlf0710/tectonic/pull/273) > But I need help in regression testing of changes. > @Mrmaxmeier are you still interested in project? Your site https://tt.ente.ninja/ is...

> [..] but I would love to make sure that this repo and the oxidation effort stay well-aligned and that we have a vision for how to merge the work...

This fixes the `archive has no index; run ranlib to add one` issue from #531 and feels minimally invasive. (I'm posting this as a well-intentioned bump and for visibility, since...

Yep, I saw `undefined reference to symbol 'BrotliDecoderDecompress'` in my CI logs and was also wondering what that's about. Probably some strange interaction with dependencies.. (?) I'll try poking at...

While unlikely, this breaks in situations where the thread is migrated to a different CPU core during the "critical section" between `ibt_save` and `ibt_restore` calls since MSRs are per-core settings....

@gerceboss `No such file or directory` might refer to the shell script's interpreter in the shebang in this case (Linux's error messages for process spawning issues are a bit weird..)....

> I’m a bit surprised that "200" is unexpected. Maybe update the error message ? Tectonic is expecting a `206 Partial Content` response here. The bundle system is designed to...

> Have you tried by chance if the function blocklisting still works? Hm right, this probably breaks function filters. I'm not sure what the best fix is then. There might...