Anuraag (Rag) Agrawal

Results 91 issues of Anuraag (Rag) Agrawal

While working on implementation of atomics, I noticed that the spec tests from here passed despite the logic being trivially broken by ignoring const offsets on memory addresses. While I...

wait and notify are probably inspired by futex APIs. However, currently they seem to be underspecified in terms of atomicity. When referring to futex docs https://man7.org/linux/man-pages/man2/futex.2.html ``` loading of the...

Resource reporting for Zipkin is complicated due to there being no shared structs in the protocol, and that Zipkin instrumentation traditionally is very conservative. We can expect reporting resources without...

spec:trace
triage:deciding:community-feedback

### TL;DR When setting `enable_ipv6` without `create_ipv6_address` or `ipv6_address`, frontends are still made with ephemereal IPV4 addresses. ### Expected behavior I was expecting `create_ipv6_address` to be enabled by default when...

bug

I am trying to run a very simple program using `argv`. argv.js: ```js import { argv } from 'process'; console.log(argv); ``` But it seems to be undefined ``` wasmedge --dir=....

I have developed a version of pgquery for Go that uses WebAssembly and wazero https://github.com/wasilibs/go-pgquery This means that it enable the library to be used without cgo, notably meaning no...

### Description Currently, `date-time` format uses `RFC3339`. It would be nice if it were possible to format is `RFC3339Nano`, perhaps by adding a custom `date-time-nano` format, or adding a generator...

enhancement
openapi-features

Also removes explicit dependency on rust-embed-impl, which is a transitive dependency of rust-embed (I couldn't find any references to it in this crate). I am trying to use rust-vfs with...

Currently, when the same name is declared multiple times, the iterator will only return one of them. This doesn't seem to be the intent of a named group iterator, so...