Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
122 views

I've just installed Ghidra and tried to debug a sample program to get a taste of it. I've installed Python 3.12 and the redistributed site-packages with it (from \Ghidra\Debug\Debugger-agent-dbgeng\...
jtxkopt - STOP GENOCIDE's user avatar
0 votes
1 answer
79 views

I am writing a raw protobuf message with the library com.google.protobuf, leveraging UnknownFieldSet and I am encountering a problem when encoding strings as they sometimes break the result. I want to ...
Sim's user avatar
  • 4,136
0 votes
1 answer
126 views

My goal is to set up the Flink-SQL-Connector. I want to use SQL capabilities to retrieve Kafka topic messages. Protobuf is being used by Kafaf Topic. I am getting error "Exception in thread "...
Mitesh's user avatar
  • 13
0 votes
1 answer
141 views

I was able to run the jmeter http sampler request script in Kubernetes, but when I try with the gRPC request, I get the below error: 2025-01-08 10:33:25,530 ERROR v.z.b.GRPCSampler: java.lang....
Praveen Dhasarathan's user avatar
0 votes
1 answer
272 views

I have created ProtoBuf file and using object file generated via protoc command in my code i.e. MyEvent.java MyEventOrBuilder.java MyEventProtos.java I am using Apache Kafka (Confluent) to handle the ...
Karan's user avatar
  • 866
0 votes
1 answer
70 views

I am migrating to Gradle kts in my current Andriod application. The protobuf configuration is proving to be very challenging the original verson for gradle is as follows:- // Versions def ...
Hector's user avatar
  • 5,704
0 votes
2 answers
339 views

I'm getting the above warning while executing tests. It seems that it doesn't affect anything and the tests are executed successfully. Any Idea why I'm seeing this warning?
DimitriosP's user avatar
0 votes
1 answer
70 views

I have class P{ @ProtoField(number=1, CollectionImplementation=ArrayList.class) List<? extends Account> accounts; @ProtoField(number=2) ZonedDateTime fromDate; @ProtoFactory P(List<? extends ...
user1912935's user avatar
1 vote
1 answer
1k views

I have a .proto, there is one message in it named Event. message Event{ string id=1; string param=2; } The param field of Event is a model defined by biz layer, different biz has different ...
唐子玄's user avatar
1 vote
0 answers
40 views

In the example from Google's documentation, we see that the text responses from a detectIntent call are in the following format: { "responseId": "38e8f23d-eed2-445e-a3e7-149b242dd669&...
Paul's user avatar
  • 185
0 votes
1 answer
207 views

I'm learning grpc. This is a simple hello world example: syntax = "proto3"; option java_multiple_files = true; option java_package = "io.grpc.helloworld"; option ...
victorli's user avatar
-1 votes
1 answer
539 views

I have class with below properties in my service, I want to create a grpc service for this. but i am not able to find how can i map Object data in protobuf. public class FeatureDetails { private ...
Aysha's user avatar
  • 1
1 vote
0 answers
388 views

I'm trying to dynamically convert a JSON string to a DynamicMessage from the protobuf library. Currently, I have the following piece of code: val topic = "sample-topic" // I'm using ...
Yorgos S.'s user avatar
  • 346
0 votes
1 answer
135 views

protocul buffer supports only a close set of types, like int32, strings, repeted, etc. The problem is that I want to create a custom deserializer for specific things. For example, look at this proto ...
Elad Barkay's user avatar
0 votes
2 answers
116 views

I am exploring on grpc My sample application fetches few records from Database + reads a file from S3(very small file) and returns the combined result. Since the file size is very less, i am not using ...
Jeevi's user avatar
  • 3,062
0 votes
1 answer
2k views

I'm struggling with packing a protobuf map type into google.protobuf.Any in Java. The proto message I'm working with has the following schema: message Msg { google.protobuf.Any value = 1; } For ...
bszwej's user avatar
  • 420
1 vote
3 answers
1k views

I am upgrading my Android app to support API 33. For that, I also upgraded protobuf & grpc libraries. Everything is upgraded and the app works if I build & run it directly from Android Studio ...
yasin tavukcuoglu's user avatar
22 votes
3 answers
8k views

I followed this codelab from the android developer platform: https://developer.android.com/codelabs/android-proto-datastore#4 Added the same exact dependencies as shown in the codelab and I get the ...
Giuliopime's user avatar
  • 1,257
0 votes
0 answers
69 views

I am working on a protobuf plugin project where I have a bundle of protobuf dependencies imported as a plug-in dependency to my protobuf plugin. One of the dependencies is the protoc-jar-maven-plugin ...
bronzebeard's user avatar
11 votes
2 answers
6k views

I installed the new version of Android Studio and did update of my project (without changing dependencies) and i had this issue: Missing class com.google.protobuf....
JpA's user avatar
  • 111
1 vote
1 answer
126 views

Can someone let me know if there is any library or extension available for doing snapshot testing using protobuf text messages? Something similar to what the below libraries do json-snapshot jest ...
tuk's user avatar
  • 6,954
0 votes
1 answer
1k views

I have a directory that stores all of my proto files at ${basedir}/resources/proto/, there is a file a.proto in which imports another proto file via resources/proto/b.proto. I tried the following ...
Baiqing's user avatar
  • 1,341
3 votes
0 answers
706 views

I am trying to integrate pytorch model to process language. This is why I need the sentencepiece to tokenize the sentence chunks. But I am unable to do that correctly. I did not find any robust ...
im07's user avatar
  • 416
1 vote
2 answers
3k views

ad_group { resource_name: "customers/8776659915/adGroups/143689544046" status: ENABLED type: VIDEO_TRUE_VIEW_IN_STREAM id: 143689544046 name: "Video Consideration - 2023-01-06&...
Keshavram Kuduwa's user avatar
1 vote
0 answers
599 views

I have an existing java grpc server file that is generated from a .proto file. I need to add HTTP REST API endpoints for each of the rpc calls in my .proto file. Probably using google.api.http. The ....
cmg811's user avatar
  • 11

1
2 3 4 5 6