- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 26 for subprojects (0.21 sec)
-
.teamcity/subprojects.json
"functionalTests": false, "crossVersionTests": false }, { "name": "core", "path": "subprojects/core", "unitTests": true, "functionalTests": true, "crossVersionTests": true }, { "name": "core-api", "path": "subprojects/core-api", "unitTests": true, "functionalTests": true, "crossVersionTests": false }, {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Oct 23 22:33:41 UTC 2024 - 34.3K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/FunctionalTest.kt
} fun getTestTaskName(testCoverage: TestCoverage, subprojects: List<String>): String { val testTaskName = if (testCoverage.testType == TestType.isolatedProjects) "isolatedProjectsIntegTest" else "${testCoverage.testType.name}Test" return when { subprojects.isEmpty() -> { testTaskName } else -> { subprojects.joinToString(" ") { "$it:$testTaskName" } }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Sep 25 06:14:43 UTC 2024 - 4.5K bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/FunctionalTestBucketGenerator.kt
.filter { model.subprojects.getSubprojectByName(it.key) != null } .map { SubprojectTestClassTime(model.subprojects.getSubprojectByName(it.key)!!, it.value.filter { it.testClassAndSourceSet.sourceSet != "test" }) } .sortedBy { -it.totalTime } .filter { onlyNativeSubprojectsForIntelMacs(testCoverage, it.subProject.name) }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Aug 29 11:04:49 UTC 2024 - 8.5K bytes - Viewed (0) -
.github/CODEOWNERS
testing/internal-performance-testing/ @gradle/bt-developer-productivity testing/internal-testing/ @gradle/bt-developer-productivity # Release coordination subprojects/core-platform/ @gradle/bt-support subprojects/distributions-dependencies/ @gradle/bt-support subprojects/distributions-full/ @gradle/bt-support testing/performance/ @gradle/bt-support testing/smoke-test/ @gradle/bt-support
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Oct 24 14:46:27 UTC 2024 - 10.6K bytes - Viewed (0) -
.teamcity/test-buckets.json
"name":"TestDistribution" }, "subprojects":[ "dependency-management" ] }, { "parallelizationMethod":{ "name":"TestDistribution" }, "subprojects":[ "configuration-cache" ] }, { "parallelizationMethod":{ "name":"TestDistribution" }, "subprojects":[ "tooling-api" ] }, {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Oct 08 11:14:16 UTC 2024 - 87.8K bytes - Viewed (0) -
.teamcity/src/test/kotlin/BuildScanTagUtilsTest.kt
} private val subprojectProvider = JsonBasedGradleSubprojectProvider(File("../.teamcity/subprojects.json")) private val model = CIBuildModel( projectId = "Check", branch = VersionedSettingsBranch.fromDslContext(), buildScanTags = listOf("Check"), subprojects = subprojectProvider ) @Test fun `test stage tags`() { assertEquals(
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Sep 30 07:24:00 UTC 2024 - 1.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Mojo.java
* @return requires a project */ boolean projectRequired() default true; /** * if the Mojo uses the Maven project and its subprojects. * @return uses the Maven project and its subprojects */ boolean aggregator() default false; /** * does this Mojo need to be online to be executed? * @return need to be online */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Aug 29 18:21:40 UTC 2024 - 3.5K bytes - Viewed (0) -
.teamcity/src/test/kotlin/BuildTypeTest.kt
private val buildModel = CIBuildModel( projectId = "Gradle_Check", branch = VersionedSettingsBranch("master"), buildScanTags = listOf("Check"), subprojects = JsonBasedGradleSubprojectProvider(File("../.teamcity/subprojects.json")) ) @Test fun `CompileAll parameters are correct`() { val gradleStep = CompileAll(buildModel, buildModel.stages[0]).steps.getGradleStep(GRADLE_RUNNER_STEP_NAME)
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Sep 30 07:24:00 UTC 2024 - 4.7K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/BuildDistributions.kt
).joinToString(" ") ) features { publishBuildStatusToGithub(model) } artifactRules = """$artifactRules subprojects/distributions-full/build/distributions/*.zip => distributions platforms/core-runtime/base-services/build/generated-resources/build-receipt/org/gradle/build-receipt.properties """.trimIndent()
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Sep 24 06:22:49 UTC 2024 - 1.1K bytes - Viewed (0) -
.teamcity/src/test/kotlin/ApplyDefaultConfigurationTest.kt
private val buildModel = CIBuildModel( projectId = "Gradle_Check", branch = VersionedSettingsBranch("master"), buildScanTags = listOf("Check"), subprojects = JsonBasedGradleSubprojectProvider(File("../.teamcity/subprojects.json")) ) @BeforeEach fun setUp() { val stepsCapturer = slot<BuildSteps.() -> Unit>() every { buildType.steps } returns steps
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Sep 24 06:22:49 UTC 2024 - 6.3K bytes - Viewed (0)