Holger Voormann
Holger Voormann
Running a JUnit 5.9.3 test (e.g. via right-click and choosing _Run As > JUnit Test_) fails in Eclipse 2023-09 (4.29) with `NoSuchMethodError`. `build.gradle` to reproduce this issue: ```groovy apply plugin:...
I use the `tycho-p2-extras-plugin` to convert an old style update site into a p2 update site by first mirroring it, removing the metadata and then recreating the metadata (see [here](https://github.com/howlger/IDEalized/blob/master/mirror-non-p2/pom.xml))....
In order to get support for BERT based sentence embedding models like [BAAI/bge-base-en-v1.5](https://huggingface.co/BAAI/bge-base-en-v1.5), [mixedbread-ai/mxbai-embed-large-v1](https://huggingface.co/mixedbread-ai/mxbai-embed-large-v1), or others, update [llama.cpp](https://github.com/ggerganov/llama.cpp) from [b1696](https://github.com/ggerganov/llama.cpp/releases/tag/b1696) (2023-12-12) to the current latest release [b2581](https://github.com/ggerganov/llama.cpp/releases/tag/b2581) (2024-03-30). BERT support...
It seems that the Modernizer issues are only logged ([here?](https://github.com/andygoossens/gradle-modernizer-plugin/blob/30bab090587295bf7af60bb56824e610987d4871/src/main/groovy/com/github/andygoossens/gradle/plugins/ModernizerTask.groovy#L279-L294)) and it would be nice if the violations/problems found by the Modernizer would also be reported via the [Gradle Problems...
Use the initialization-on-demand holder idiom instead of the double-checked locking idiom as the first one is a bit faster and better to read. See https://en.wikipedia.org/wiki/Initialization-on-demand_holder_idiom