- Sort Score
- Num 10 results
- Language All
Results 11 - 14 of 14 for jvmArgs (0.03 seconds)
-
build-logic/integration-testing/src/main/kotlin/gradlebuild.distribution-testing.gradle.kts
localRepository.localRepo = configurations["${prefix}TestLocalRepositoryPath"] } fun DistributionTest.setJvmArgsOfTestJvm() { jvmArgs("-Xmx${project.the<IntegrationTestExtension>().testJvmXmx.get()}", "-XX:+HeapDumpOnOutOfMemoryError")
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Mon Aug 18 18:02:41 GMT 2025 - 3.8K bytes - Click Count (0) -
okhttp/build.gradle.kts
val alpnBootJar = configurations.detachedConfiguration( dependencies.create("org.mortbay.jetty.alpn:alpn-boot:$alpnBootVersion") ).singleFile tasks.withType<Test> { jvmArgs("-Xbootclasspath/p:${alpnBootJar}") } } } android { compileSdk = 35 namespace = "okhttp.okhttp3" defaultConfig { minSdk = 21
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Sat Nov 01 12:18:11 GMT 2025 - 12.3K bytes - Click Count (0) -
build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts
} } } } fun configureCompileTask(options: CompileOptions) { options.encoding = "utf-8" options.isIncremental = true options.isFork = true options.forkOptions.jvmArgs?.add("-XX:+HeapDumpOnOutOfMemoryError") options.forkOptions.memoryMaximumSize = "1g" options.compilerArgs.addAll(mutableListOf("-Xlint:-options", "-Xlint:-path")) } fun addDependencies() {Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Fri Dec 19 06:44:41 GMT 2025 - 18.9K bytes - Click Count (0) -
.github/workflows/build.yml
name: build on: push: branches: - master pull_request: types: [opened, labeled, unlabeled, synchronize] permissions: contents: read env: GRADLE_OPTS: "-Dorg.gradle.jvmargs=-Xmx4g -Dorg.gradle.daemon=false -Dkotlin.incremental=false" jobs: publish: runs-on: ubuntu-latest if: github.repository == 'square/okhttp' && github.ref == 'refs/heads/master' steps: - name: CheckoutCreated: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Fri Dec 12 04:49:37 GMT 2025 - 18.6K bytes - Click Count (0)