Jacques Marais
Jacques Marais
Hey @guidovranken Thanks for the suggestion. I think it is a good idea. However, I am not 100% familiar with how one integrates with the project. > Should I use...
@guidovranken I looked at the fuzztests repo and I think it might already do what we want. The [```assert```](https://github.com/gogo/fuzztests/blob/master/main.go#L84) does an extensive marshal/unmarshal/marshal. And then [```func Fuzz```](https://github.com/gogo/fuzztests/blob/master/main.go#L148-L151) also compares the...
Hey. ```MethodOptions``` Is part of the protocol descriptor.proto and not a well known type. Here is a list of all the well known types: https://developers.google.com/protocol-buffers/docs/reference/google.protobuf Did you want to use...
Hi, Thanks for volunteering. I didn't look at this issue initially, but correct me if I am wrong. I think the issue is we assume we are generating a Size()...
@apelisse Hi. I am not well versed with the kubernetes api. Do you have any recommendation why ```ListMeta``` would not have the ```MarshalToSizedBuffer``` method?
@apelisse I have not made a new release with this code yet.
Hey. Could you provide a example of such a message with the fields you mentioned and your ```customtype```?
Thanks for your example. I had a look and you are right, we are currently not generating 'getters' for customtype fields. I think one problem with ```customtype``` getters was how...
Great. The logic of the getter generation resides here: https://github.com/gogo/protobuf/blob/master/protoc-gen-gogo/generator/generator.go#L2558-L2702
I thought about it a bit more keeping: https://developers.google.com/protocol-buffers/docs/proto3#default in mind. It might be non trivial to create getters for customtypes. The getters should be able to return a ```default```...