Christian Stewart
Christian Stewart
I found the commit that introduced this change: 23c763ef1cb9fbe7a5b419cd6f6ab83eb5a69438 Even though the commit is from 2019, it was not included in 20.10.x and was included in 23.0.0 (checking the commit...
@thaJeztah The systemd unit file changed with this release, and we were/are using it in Buildroot. The issue is mainly just pointing out that this change ought to be mentioned...
FYI this issue also breaks cups.
+1 for a Sync() implementation!
Maybe: add net.MultiplexListener, and implement also net.Listener by emulating a normal net.Conn where each conn is a stream and the connection is reused / garbage collected automatically when there are...
@kyleconroy This is a great idea, I'm using vtprotobuf a lot currently and it works great. Having some kind of auto-transpiler that automatically converts the reflection-based protobuf-go to use vtprotobuf...
vtprotobuf generates static code for Marshal and Unmarshal. We just need a version of protoc-gen-go that does not import reflect nor any of the "heavy" protobuf packages that add a...
I have completed protobuf-go-lite which is a reflection-free fork of protobuf-go merged with vtprotobuf and protoc-gen-go-json. Library: https://github.com/aperturerobotics/protobuf-go-lite Example: https://github.com/aperturerobotics/protobuf-project/tree/protobuf-lite RPCs are available as well with starpc: https://github.com/aperturerobotics/starpc **protobuf-go-lite now...
Not stale
I can expose it like this: ``` // FSConfigWithSysFSMount extends FSConfig to expose the existing WithSysFSMount function. // https://github.com/tetratelabs/wazero/issues/2076 type FSConfigWithSysFSMount interface { WithSysFSMount(fs wazero_sys.FS, guestPath string) wazero.FSConfig } var...