Sergey Ermakov
Sergey Ermakov
Hello! There is a classpact clash between: ``` com/google/protobuf/protobuf-java/3.6.1/protobuf-protobuf-java-3.6.1.jar com/google/protobuf/protobuf-lite/3.0.1/protobuf-protobuf-lite-3.0.1.jar Conflicted classes: com.google.protobuf.AbstractMessageLite$Builder$LimitedInputStream com.google.protobuf.AbstractMessageLite$Builder com.google.protobuf.AbstractMessageLite and 137 more ``` As suggested in https://github.com/grpc/grpc-java/issues/6332#issuecomment-545997451 Let's exclude io.grpc:grpc-protobuf-lite from dependencies
Hello, I would like to have slf4j as a backend log system. And also to enable logging via static call ``` RestAssured.enableLoggingOfRequestAndResponseIfValidationFails(); ``` How I can do it right now?
Make order of params consistent with previous examples I hereby agree to the terms of the CLA available at: https://yandex.ru/legal/cla/?lang=ru Description of changes:
Currently, if you start `ghcr.io/goccy/bigquery-emulator:0.4.3` docker will write a warning. ``` ➜ ~ docker run --rm -i -t -d ghcr.io/goccy/bigquery-emulator:0.4.3 --project=test WARNING: The requested image's platform (linux/amd64) does not match...
Steps to reproduce ```java bigQuery.create(DatasetInfo.of("temp")); bigQuery.create(TableInfo.of(TableId.of("temp", "countries"), StandardTableDefinition.of( Schema.of(Field.newBuilder("name", StandardSQLTypeName.STRING).build()) ))); bigQuery.create(TableInfo.of(TableId.of("temp", "my_view"), ViewDefinition.of( "with recursive all_countries as (select * from temp.countries)\n" + "select * from all_countries" ))); ``` Will...
How to reproduce I am using java gcloud SDK ```java bigQuery.create(DatasetInfo.of("temp")); bigQuery.create(TableInfo.of(TableId.of("temp", "countries"), StandardTableDefinition.of( Schema.of( Field.newBuilder("population", StandardSQLTypeName.INT64).build(), Field.newBuilder("gender", StandardSQLTypeName.STRING).build() ) ))); bigQuery.create(TableInfo.of(TableId.of("temp", "result"), StandardTableDefinition.of( Schema.of(Field.newBuilder("diff", StandardSQLTypeName.INT64).build()) ))); bigQuery.query(QueryJobConfiguration.newBuilder("" + "SELECT...
Hello Please, add detailed documentation about each check in the README and java docs. The detailed documentation should include: - What this check is about - What could go wrong...
### Proposal I wanted to use wiremock grpc for my project, but it wasn't working. proto contained of multiple files: myservice.proto ``` syntax = "proto3"; package wallet.myservice; import "wallet/errors.proto"; service...
Hello! I have inherited the project, where pagehelper is being used. Unfortunately, It's almost impossible to maintain the project without English documentation. Please, make an English transaction. Thank you.