Stefan Sauer

Results 256 comments of Stefan Sauer

Can you share the whole output. Does it also say `fuse: memory allocation failed`?

This is supposed to be fixed with the upcoming 3.0 (currently alpha). See e.g.: * https://github.com/audacity/audacity/issues/8790#issuecomment-2889892542 * https://forum.cursor.com/t/0-47-9-failed-to-launch-fuse-memory-allocation-failed/68394 * ... Although there has been little activity recently. I hope it...

Looks like https://github.com/bazel-contrib/rules_foreign_cc/issues/1239

Normally this is solved by SO_REUSEADDR and some people wrote https://pkg.go.dev/github.com/portmapping/go-reuse for that

Can't we simplify `pickUnusedPortOrDie()´ to skip ResolveTCPAddr? The docs say `If the Port field of laddr is 0, a port number is automatically chosen.`. ``` func pickUnusedPortOrDie() int { if...

Okay, the issue is that golang is not supporting SO_REUSEPORT. There are a ton of freeport libs that all one way or the other suffer from the same issue: *...