openai/openai-java

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v1.6.0

Branches

Tags

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

Clone

HTTPS

Download ZIP

gradle.properties

17lines · modecode

1org.gradle.caching=true
2org.gradle.configuration-cache=true
3org.gradle.parallel=true
4org.gradle.daemon=false
5# These options improve our compilation and test performance. They are inherited by the Kotlin daemon.
6org.gradle.jvmargs=\
7 -Xms1g \
8 -Xmx4g \
9 -XX:+UseParallelGC \
10 -XX:InitialCodeCacheSize=256m \
11 -XX:ReservedCodeCacheSize=1G \
12 -XX:MetaspaceSize=256m \
13 -XX:TieredStopAtLevel=1 \
14 -XX:GCTimeRatio=4 \
15 -XX:CICompilerCount=4 \
16 -XX:+OptimizeStringConcat \
17 -XX:+UseStringDeduplication
18