[protobuf] Adding numeric range options?

2013-07-01 Thread mailto . jonas
Hi all, I wan't to add numeric range information to fields according to the following syntax: message MyMessage { uint32 field1 = 1 [default = 0, (myext).min = 0, (myext).max = 0x]; double field2 = 2 [default = 0.0, (myext).min = 0.0, (myext).max =

[protobuf] Issue 526 in protobuf: 2.5.0 - Java compilation - Find unknown fields in ... BUG

2013-07-01 Thread protobuf
Status: New Owner: liuj...@google.com Labels: Type-Defect Priority-Medium New issue 526 by dusan...@gmail.com: 2.5.0 - Java compilation - Find unknown fields in ... BUG http://code.google.com/p/protobuf/issues/detail?id=526 What steps will reproduce the problem? - upgrade to 2.5 What is

Re: [protobuf] Adding numeric range options?

2013-07-01 Thread Feng Xiao
On Mon, Jul 1, 2013 at 3:20 AM, mailto.jo...@gmail.com wrote: Hi all, I wan't to add numeric range information to fields according to the following syntax: message MyMessage { uint32 field1 = 1 [default = 0, (myext).min = 0, (myext).max = 0x]; double field2 =

[protobuf] Re: Issue 526 in protobuf: 2.5.0 - Java compilation - Find unknown fields in ... BUG

2013-07-01 Thread protobuf
Comment #1 on issue 526 by xiaof...@google.com: 2.5.0 - Java compilation - Find unknown fields in ... BUG http://code.google.com/p/protobuf/issues/detail?id=526 Can you find a minimum .proto file that can reproduce the problem and then attach the source? -- You received this message

[protobuf] Re: Increasing memory usage with Protobuf

2013-07-01 Thread Joel Holveck
Many parts of Protobuf will cache empty objects, in the expectation that they'll be reused. For example, if you have a Message object with a repeated message field, and there are five entries in that field, when you later call .clear on the object, the five entries will be marked as unused