Alan D. Cabrera

Results 68 comments of Alan D. Cabrera

The plugin is aware of two kinds of strings, ones that are for string values and ones that are for string names, e.g. import paths: When a string value is...

Ok, as you can see above, it supports **both** backtick and triple-double-quotes to delimit multiline strings. I'm just making that clear.

> Coming from a Python background, I was surprised by the backtick syntax. Then I read about the JavaScript Template Strings. But wouldn't it be confusing for users, since this...

@puellanivis, that is not true. Supporting custom tags would open protobufs to a plethora of possible tooling.

Here's a rough sketch of what I've been using type converter func(payload interface{}) (proto.Message, error) var converters map[reflect.Type]converter func init() { converters = make(map[reflect.Type]converter) converters[reflect.TypeOf(gitlab.IssueEventPayload{})] = func(payload interface{}) (proto.Message, error)...

I'll assume that this is ok.

I'm also adding a `NewMessage()` function to facilitate the deserialization of messages serialized in `Any`: func NewMessage(typeUrl string) (proto.Message, error) { mType, ok := anyTypes[typeUrl] if !ok { return nil,...

This builds fine for me. Could supply additional information on how to reproduce the error: - OS version - Java verison - mvn version Does this error occur for you...

This builds fine for me. Could supply additional information on how to reproduce the error: - OS version - Java verison - mvn version Does this error occur for you...

> The replacement for EnvironmentVariables is the method `withEnvironmentVariable` together with the inner class `EnvironmentVariables`. I'm sure I'm being dense. How can I set the environmental variables once, for all...