openai/openai-java
Publicmirrored from https://github.com/openai/openai-javaAvailable
gradle.properties
21lines · modecode
| 1 | org.gradle.caching=true |
| 2 | org.gradle.configuration-cache=true |
| 3 | org.gradle.parallel=true |
| 4 | org.gradle.daemon=false |
| 5 | kotlin.daemon.enabled=false |
| 6 | kotlin.compiler.execution.strategy=in-process |
| 7 | kotlin.incremental=false |
| 8 | # These options improve our compilation and test performance. They are inherited by the Kotlin daemon. |
| 9 | org.gradle.jvmargs=\ |
| 10 | -Xms2g \ |
| 11 | -Xmx8g \ |
| 12 | -XX:+UseParallelGC \ |
| 13 | -XX:InitialCodeCacheSize=256m \ |
| 14 | -XX:ReservedCodeCacheSize=1G \ |
| 15 | -XX:MetaspaceSize=512m \ |
| 16 | -XX:MaxMetaspaceSize=2G \ |
| 17 | -XX:TieredStopAtLevel=1 \ |
| 18 | -XX:GCTimeRatio=4 \ |
| 19 | -XX:CICompilerCount=4 \ |
| 20 | -XX:+OptimizeStringConcat \ |
| 21 | -XX:+UseStringDeduplication |
| 22 | |