Abhijit Sarkar

Results 123 issues of Abhijit Sarkar

ph-javacc-maven-plugin depends on ParserGeneratorCC which says: > This fork is not really actively maintained, except some severe problems arise OOTB, ph-javacc-maven-plugin generates code differently than JavaCC 7.0.10. For example: 1....

Like https://github.com/neo4j-examples/movies-kotlin-spring-data-neo4j/blob/master/src/main/java/movies/spring/data/neo4j/domain/model/persistent/entities/Movie.kt#L10 I've come to realize that declaring the properties as `val` makes queries not find previously saved entities, although I've not figured out why. Saving seems to work, but...

I'm learning Spring Data Neo4J and this is probably the only application that is written in Kotlin, so thanks for that. However, as a beginner to Spring Data Neo4J but...

...asking for a friend 😃

I'd like to disable gRPC client(s) using properties, similar to that available for the server `grpc.server.enabled=false`. `grpc.client.enabled=false` would disable all gRPC client stub creation, and `grpc.client.greeter.enabled=false` would disable `greeter` client...

type: enhancement
info: good first issue

[Micronaut gRPC](https://micronaut-projects.github.io/micronaut-grpc/snapshot/guide/index.html#server) creates a `NettyServerBuilder` automatically. How do I use an [InProcessServerBuilder](https://grpc.github.io/grpc-java/javadoc/io/grpc/inprocess/InProcessServerBuilder.html) for testing? One way is to set `grpc.server.enabled=false`, and then create the `Server` myself. ``` Server server =...

### Task List - [ ] Steps to reproduce provided - [x] Stacktrace (if present) provided - [ ] Example that reproduces the problem uploaded to Github - [x] Full...

info: good first issue
type: docs

Please update the tutorial showing how to rejoin the swarm after leaving (stopping the containers/restarting the computer/any other way). This applies to all nodes, `swarm-*` and `consul-machine`. The instructions in...

Pattern `\\d+|\\b[a-zA-Z']+\\b` fails to find the digits in input "testing, 1, 2 testing". The regex is correct as can be tested here https://regex101.com/r/griuTm/1. Changing the pattern to `\\b[0-9a-zA-Z']+\\b` works, but...

enhancement
faq

GIven the attached file (rename to `.go`): [main.txt](https://github.com/rhysd/go-fakeio/files/7715120/main.txt) ``` fake := fakeio.Stderr().Stdout() defer fake.Restore() run() s := bufio.NewScanner(fake) for s.Scan() { line := s.Text() fmt.Println(line) } if s.Err() != nil...