- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for maxParallelForks (0.05 sec)
-
.teamcity/src/main/kotlin/common/CommonExtensions.kt
fun buildToolGradleParameters( isContinue: Boolean = true, maxParallelForks: String = "%maxParallelForks%", ): List<String> = listOf( // We pass the 'maxParallelForks' setting as 'workers.max' to limit the maximum number of executers even // if multiple test tasks run in parallel. We also pass it to the Gradle build as a maximum (maxParallelForks)
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Wed Sep 10 01:37:13 UTC 2025 - 15K bytes - Viewed (0) -
build.gradle.kts
val javaToolchains = project.extensions.getByType<JavaToolchainService>() javaLauncher.set(javaToolchains.launcherFor { languageVersion.set(JavaLanguageVersion.of(testJavaVersion)) }) maxParallelForks = Runtime.getRuntime().availableProcessors() * 2 testLogging { exceptionFormat = TestExceptionFormat.FULL } systemProperty("okhttp.platform", platform)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Aug 01 08:06:31 UTC 2025 - 11.3K bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/CIBuildModel.kt
} enum class TestType( val unitTests: Boolean = true, val functionalTests: Boolean = true, val crossVersionTests: Boolean = false, val timeout: Int = 180, val maxParallelForks: Int = 4, ) { // Include cross version tests, these take care of selecting a very small set of versions to cover when run as part of this stage, including the current version QUICK(true, true, true, 120, 4),
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Sun Aug 03 22:40:28 UTC 2025 - 25.9K bytes - Viewed (0)