[go-nuts] Getting panic: proto: extension number 1042 is already registered on message google.protobuf.FileOptions

2023-12-24 Thread 'Roopan M' via golang-nuts
Hi Team, When I try to run the docker compose up, getting the below issue for one of the container related to proto buf extension. Please help to resolve, *service-cms-1| panic: proto: extension number 1042 is already registered on message

[go-nuts] Re: Go 1.22 Release Candidate 1 is released

2023-12-24 Thread Andrew Harris
There was some discussion on the GitHub issue(s) that the trailing outer bool is perhaps not adding much in actual usage, shortly after the experiment document. Signatures changed to drop the outer bool, and appearances in docs are vestigial. Of the trailing inner, outer booleans: The inner

Re: [go-nuts] How to convert a net.Addr into a netip.AddrPort ?

2023-12-24 Thread Robert Engels
github.com/robaho/go-trader has udp multicast support with both server and client codeOn Dec 24, 2023, at 11:05 AM, christoph...@gmail.com wrote:Hello,I'm developping a UDP client server program. Everything is clear on the server side. I'm just a bit confused with the client side. In C we can

[go-nuts] How to convert a net.Addr into a netip.AddrPort ?

2023-12-24 Thread christoph...@gmail.com
Hello, I'm developping a UDP client server program. Everything is clear on the server side. I'm just a bit confused with the client side. In C we can specify the network address and set the port to 0 so that a free port is picked. Apparently we can't do that with the net API. The client

[go-nuts] Re: Go 1.22 Release Candidate 1 is released

2023-12-24 Thread John David Lee
This is in the section titled "Why are yield functions limited to at most two arguments?" On Sunday, December 24, 2023 at 5:43:23 PM UTC+1 John David Lee wrote: > Hello. > > In the rangefunc experiment document > the iter package is said to > export

[go-nuts] Re: Go 1.22 Release Candidate 1 is released

2023-12-24 Thread John David Lee
Hello. In the rangefunc experiment document the iter package is said to export the following: type Seq[V any] func(yield func(V) bool) bool type Seq2[K, V any] func(yield func(K, V) bool) bool But after installing tip, it looks like the iter package