Alexander Biryukov
Alexander Biryukov
Same thing here. * I have a free DNS name from Mikrotik * my ISP blocks 80 port => can't use HTTP/DNS challenge and have to use self-signed certificated :(...
@CodingMarco probably yours ext4 partition is formatted with 64-bit feature. There are many ways to check what kind of features are enabled. You can boot with liveCD and check it...
https://github.com/zalando/logbook/pull/1154 implementation
I'm experiencing the same issue,but in our case this is a flaky failure, like 1 in 10 build fails. I guess it has to do something with parallel junit execution,...
https://spring.io/blog/2022/05/24/preparing-for-spring-boot-3-0 ``` Check if Third-party Projects Have Jakarta EE 9 Compatible Releases Jakarta EE 9 a new top-level jakarta package, replacing EE 8’s javax top-level package. For example, the Servlet...
workaround 1. Extract version from pom.xml in CI script ```sh REVISION=$(mvn help:evaluate -Dexpression=revision -q -DforceStdout) # or faster alternative REVISION=$(grep -oP '(?
The code above is equivalent to ```java try (var r1 = SomeStream; var r2 = OtherStream; var r3 = AnotherStream) { } ``` I don't think it needs to be...
My use case includes a function with 9 arguments. I can rewrite it as ```kotlin val x: SomeParametrizedInterface = SomeParametrizedInterface { argument1, anotherArgument, somethingElse, .... -> } ``` but as...
I can confirm that the check cannot be disabled. I think there's something wrong with editorconfig inheritance, for example, if I put `max_line_length=off` in `[*]` everything works. But if I...
sample project [ktlint-max-length-bug.zip](https://github.com/pinterest/ktlint/files/9203200/ktlint-max-length-bug.zip) `.editorconfig`: ``` root = true [*] max_line_length = 120 [{*.kt, *.kts}] max_line_length = 80 ij_kotlin_code_style_defaults = KOTLIN_OFFICIAL [**/test/**.kt] max_line_length = off ktlint_ignore_back_ticked_identifier = true ``` `mvn package`...