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