python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Is there a way to get autocomplete for .proto JavaScript generated code?
I've written a simple .proto file
syntax = "proto3";
message Event {
optional string name = 1;
}
I've downloaded the protoc linux compiler (protoc-3.19.3-linux-x86_64.zip) and installed ...
Vitor EL
Votes: 0
Answers: 1
How to create stub/services files with MATLAB grpc plugin?
I'm using MatlabWithProtoV3 to create protoc.exe with matlab_out in Windows environment.
I was able to create protoc and when I use
protoc.exe user.proto --matlab_out=./
It only creating matlab files...
WPFUser
Votes: 0
Answers: 1
How to serialize parsed protobuf back to byte in python
I have a array of proto as a db column, and I need to modify it and write it back
updated_proto_array = []
for proto_byte in proto_array
parsedProto.ParseFromString(proto_byte)
# do some modif on ...
Henry Wang
Votes: 0
Answers: 1
What label to use in `deps` for `bazel` rule `proto_library` to be able to use `google/protobuf/timestamp.proto`?
I have a .proto file in which I'd like to import "google/protobuf/timestamp.proto";
The build fails, though, with google/protobuf/timestamp.proto: File not found. I'm assuming it needs deps ...
Noel Yap
Votes: 0
Answers: 1