openai/openai-java

Public

mirrored from https://github.com/openai/openai-javaAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v4.24.1

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

gradle.properties

21lines · modecode

1org.gradle.caching=true
2org.gradle.configuration-cache=true
3org.gradle.parallel=true
4org.gradle.daemon=false
5kotlin.daemon.enabled=false
6kotlin.compiler.execution.strategy=in-process
7kotlin.incremental=false
8# These options improve our compilation and test performance. They are inherited by the Kotlin daemon.
9org.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