Adrian Cole

Results 1423 comments of Adrian Cole

fyi watchers, I have requested to remove the text compiler for the 1.0 release https://github.com/tetratelabs/watzero/issues/1

https://github.com/tetratelabs/wazero/issues/620 will also block 1.0

TL;DR; Wazero 1.0 will have a floor Go version of 1.19, which means the 1.0 first cut will be in august 2022 and final cut in feb 2023. This aligns...

One thing I forgot to document is the rationale of doing planned betas vs other norms. * Cut 1.0 for emotional or marketing reasons and break it anyway * Emotionally...

To adhere to go's tagging recommendations, the first beta tag is `v1.0.0-beta.1` https://go.dev/doc/modules/version-numbers

@ncruces thanks for the background. I think some libraries will do their own sort of error mediation above the syscall layer wrt some read failure, though I understand that the...

well, we can write the data before returning the errno. that's fine

we want to avoid too much logic and allocations at the syscall abstraction which is repeated at higher abstractions, so trying to do compensating buffering which may also occur in...

> Yes, but callers of readv won't inspect it if you return an error, so the data is lost forever. ... sounds fine as I wasn't particularly interested in writing...

@ncruces I didn't quite read your comment below correctly first time. My gut feel is storing extra state about an error might be problematic, but then again WebAssembly doesn't really...