Top "Protocol-buffers" questions

Protocol Buffers is a language-neutral and platform-neutral way of encoding structured data in an efficient yet extensible format.

Is there a standard mapping between JSON and Protocol Buffers?

From a comment on the announcement blog post: Regarding JSON: JSON is structured similarly to Protocol Buffers, but protocol buffer …

json protocol-buffers
gRPC + Image Upload

I want to create a simple gRPC endpoint which the user can upload his/her picture. The protocol buffer declaration …

protocol-buffers grpc
Maven & Protobuf compile error: Cannot find symbol in package com.google.protobuf

I'm new to Linux and Protobuf.. I need help. I'm trying to "mvn package" a project that contains many ".proto" …

java maven maven-2 maven-3 protocol-buffers
simple protobuf compilation with gradle

If you're looking for sample gradle protobuf project look here. I'm having hard time with gradle and protobuf, i want …

java gradle build protocol-buffers
How to return an array in Protobuf service rpc

I have the following schema in my .proto file: service MyService { rpc GetItem (ItemQuery) returns (Item) { } } message ItemQuery { int id = 1; } …

protocol-buffers rpc
How to decode protobuf binary response

I have created a test app that can recognize some image using Goggle Goggles. It works for me, but I …

protocol-buffers google-goggles
Are there C++ equivalents for the Protocol Buffers delimited I/O functions in Java?

I'm trying to read / write multiple Protocol Buffers messages from files, in both C++ and Java. Google suggests writing length …

java c++ serialization protocol-buffers
protobuf common.h "No such file"

I am trying to install Caffe, and I am running into this frustrating error. When I run make I get …

protocol-buffers caffe
Google protocol buffers compare

I want to compare two Messages or (two sub parameters) of Google protocol buffers. I don't find an API to …

c++ protocol-buffers
Is there an example on how to generate protobuf files holding trained TensorFlow graphs

I am looking at Google's example on how to deploy and use a pre-trained Tensorflow graph (model) on Android. This …

protocol-buffers tensorflow