- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for KILL_LEAKED_PROCESSES_FROM_PREVIOUS_BUILDS (0.2 sec)
-
.teamcity/src/test/kotlin/ApplyDefaultConfigurationTest.kt
} } @Test fun `can apply defaults to configurations`() { applyDefaults(buildModel, buildType, "myTask") assertEquals( listOf( "KILL_LEAKED_PROCESSES_FROM_PREVIOUS_BUILDS", "GRADLE_RUNNER", "KILL_PROCESSES_STARTED_BY_GRADLE", "CHECK_CLEAN_M2_ANDROID_USER_HOME" ), steps.items.map(BuildStep::name)
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Sep 24 06:22:49 UTC 2024 - 6.3K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/GradleBuildConfigurationDefaults.kt
package configurations import common.Arch import common.BuildToolBuildJvm import common.Jvm import common.KillProcessMode.KILL_ALL_GRADLE_PROCESSES import common.KillProcessMode.KILL_LEAKED_PROCESSES_FROM_PREVIOUS_BUILDS import common.KillProcessMode.KILL_PROCESSES_STARTED_BY_GRADLE import common.Os import common.VersionedSettingsBranch import common.applyDefaultSettings import common.buildScanTagParam import common.buildToolGradleParameters
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Sep 24 06:22:49 UTC 2024 - 8K bytes - Viewed (0) -
.teamcity/src/main/kotlin/util/RerunFlakyTest.kt
* limitations under the License. */ package util import common.Arch import common.BuildToolBuildJvm import common.JvmVendor import common.JvmVersion import common.KillProcessMode.KILL_LEAKED_PROCESSES_FROM_PREVIOUS_BUILDS import common.KillProcessMode.KILL_PROCESSES_STARTED_BY_GRADLE import common.Os import common.applyDefaultSettings import common.buildToolGradleParameters import common.checkCleanM2AndAndroidUserHome
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Sep 24 06:22:49 UTC 2024 - 4.6K bytes - Viewed (0) -
build-logic/cleanup/src/main/java/gradlebuild/cleanup/services/KillLeakingJavaProcesses.java
* Only kill local Gradle processes (classpath in checkout directory). * Not clean up global Gradle processes (i.e. classpath in ~/.gradle/...). */ KILL_LEAKED_PROCESSES_FROM_PREVIOUS_BUILDS, /** * Run at the end of each build. Kill potentially leaked processes in the current build. * Only kill local Gradle processes (classpath in checkout directory).
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Aug 19 15:07:24 UTC 2024 - 11.6K bytes - Viewed (0) -
.teamcity/src/main/kotlin/common/extensions.kt
/** * Align with build-logic/cleanup/src/main/java/gradlebuild/cleanup/services/KillLeakingJavaProcesses.java */ enum class KillProcessMode { KILL_LEAKED_PROCESSES_FROM_PREVIOUS_BUILDS, KILL_PROCESSES_STARTED_BY_GRADLE, KILL_ALL_GRADLE_PROCESSES }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Oct 10 03:25:26 UTC 2024 - 13.2K bytes - Viewed (0)