DaGeRe

Results 9 comments of DaGeRe

I debugged this a little bit, and found that the error is in `\documentclass[hyperref={pdfpagelabels=false}]{beamer}`: If I instead write `\documentclass{beamer}`, it works. Since I do not remember why I added this...

Iterators in Java are a widely used concept and you can find tutorials at many places, e.g. https://www.w3schools.com/java/java_iterator.asp. Since the existing source code uses indices, I am not sure how...

Thanks for the hints. I adapted the code, but is there any part of the maven launcher which allows to pass something like `-Dtest=MySelector`, or do I have to call...

Unfortunately, the same error seems to exist with the jaxb2-maven-plugin. My configuration is ``` org.codehaus.mojo jaxb2-maven-plugin 2.5.0 org.glassfish.jaxb jaxb-xjc 2.3.0 org.glassfish.jaxb jaxb-runtime 2.3.0 xjc xjc de.dagere.kopeme.generated ``` And it seems...

I also stumbled over this, but it seems like this project is no longer maintained, and the go-to solution (that works fine from my point of view) is https://github.com/Tinkoff/gatling-jdbc-plugin/.

Thanks for this hint. While its easy to copy the lines in every Gradle configuration, its still a bit annoying to have all these lines in the configuration. I've adjusted...

Thanks for the try, one solution seems to be to use `null` as empty element: https://github.com/teetime-framework/TeeTime/pull/32 Does this make sense to you? If not, maybe we should leave it as...

I would expect the termination object to be required as for consumers of a pipe are listening, until the termination object comes, and than they stop their activity. This would...

I have the same problem. Running like this works: ``` services: search: image: elasticsearch:8.16.1 environment: - cluster.name=es1 - discovery.type=single-node - xpack.security.enabled=false - ES_JAVA_OPTS=-Xms1g -Xmx1g ports: - 9200:9200 - 9300:9300 kibana:...