Sebastian Davids
Sebastian Davids
Note: You forgot the capital `ẞ`: https://github.com/dev-cycles/contextive/blob/c961ccc9bffe95954a37cbfae4a85f5ee7a3a18e/src/core/Contextive.Core/GlossaryFile.fs#L39
A German test case: Noun "Größe" (size) Größe - correct spelling Groesse - someone typing on a keyboard w/out German letters or someone being lazy groesse - someone typing on...
> Regarding the `ß` character, I understand it is commonly replaced with `ss`. German orthography has changed quite a bit in recent years; especially with the [Reform der deutschen Rechtschreibung...
In a German software project… ### Decide on the language used in source code/config files 1. everything in German - “Autofabrik”, “Personenlager” - correct spelling - “AutoFabrik”, “PersonenLager” - incorrect...
## Example Let’s say we are in the box storing domain… We might come up with `BoxRepository` and `Box`. ```json { "id": 1, "mass": 5.5, "dimensions": "1x3x5" } ``` ```java...
Interim solution? > It is possible to declare that a particular task is not compatible with the configuration cache via the [Task.notCompatibleWithConfigurationCache()](https://docs.gradle.org/current/javadoc/org/gradle/api/Task.html#notCompatibleWithConfigurationCache-java.lang.String-) method. > > Configuration cache problems found in...
```shell $ mkdir /tmp/test && cd "$_" $ gradle init --type java-library --java-version 21 --project-name test --dsl groovy --test-framework junit-jupiter --no-comments --no-incubating --quiet $ perl -i -l -p -e "print...
The [example](https://docs.gradle.org/8.7/userguide/configuration_cache.html#config_cache:requirements:external_processes) provided by the Gradle team wraps the `git` call inside `providers.exec`: ```groovy def gitVersion = providers.exec { commandLine("git", "--version") }.standardOutput.asText.get() ``` Maybe calls to `SCMInfoService` should be wrapped...
https://blog.gradle.org/road-to-gradle-9#configuration-cache-improvements > In Gradle 9.0, the Configuration Cache will be the preferred mode of execution, and turning it off will be deprecated.
Here is what another project using _Grgit_ did: https://github.com/n0mer/gradle-git-properties/pull/164