python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Golang - google/protobuf/Empty.proto: File not found
syntax = "proto3";
package model;
import "google/protobuf/Empty.proto";
message User {
string id = 1;
string name = 2;
string email = 3;
string alamat = 4;
...
Yahfi Ilham
Votes: 0
Answers: 4
--go-grpc_out: protoc-gen-go-grpc: Plugin failed with status code 1
i am getting this error when i compile my proto file:
protoc-gen-go-grpc: program not found or is not executable
Please specify a program using absolute path or make sure the program is available in y...
Zohaib Asif
Votes: 0
Answers: 1
Protobuf Error on TFOD API installation: ImportError: cannot import name 'builder'
I'm trying to install the Tensorflow Object Detection API by following this tutorial. When I got to the end, while trying the python object_detection/builders/model_builder_tf2_test.py command, I got ...

Francisco Ferraz
Votes: 0
Answers: 1
protoc-gen-gogo always appends a '_' to the field in the message
goTrying to generate golang pb.go file through protoc-gen-gogo. But it seems that there is a specific field 'uint64 sizeis always generated asSize_` with an unexpected _
The message is
message T {
...
No9527
Votes: 0
Answers: 1