- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 22 for subProject (0.08 sec)
-
.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) -
.teamcity/src/main/kotlin/configurations/FlakyTestQuarantine.kt
steps { script { // Because we exclude tests in `distributions-integ-tests` below, `@Flaky` won't work in that subproject. // Here we check the existence of `@Flaky` annotation to make sure nobody use that annotation in `distributions-integ-tests` subproject. name = "MAKE_SURE_NO_@FLAKY_IN_DISTRIBUTIONS_INTEG_TESTS" executionMode = BuildStep.ExecutionMode.ALWAYS
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Sep 24 06:22:49 UTC 2024 - 3.7K bytes - Viewed (0) -
.teamcity/src/main/kotlin/projects/StageProject.kt
functionalTestProjects.forEach { functionalTestProject -> this@StageProject.subProject(functionalTestProject) } val functionalTestsPass = functionalTestProjects.map { functionalTestProject -> FunctionalTestsPass(model, functionalTestProject).also { ******@****.***ype(it) }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Oct 07 09:17:14 UTC 2024 - 9.5K bytes - Viewed (0) -
build-logic-commons/module-identity/build.gradle.kts
plugins { `kotlin-dsl` } description = "Provides a plugin to define the version and name for subproject publications" group = "gradlebuild" dependencies { api(platform(projects.buildPlatform)) implementation(projects.basics) implementation("com.google.code.gson:gson")
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Sep 17 10:11:26 UTC 2024 - 292 bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/CIBuildModel.kt
get() = "${testType.name.toCapitalized()}_$uuid" fun asConfigurationId(model: CIBuildModel, subProject: String = ""): String { val prefix = "${testCoveragePrefix}_" val shortenedSubprojectName = shortenSubprojectName(model.projectId, prefix + subProject) return model.projectId + "_" + if (subProject.isNotEmpty()) shortenedSubprojectName else "${prefix}0" } private
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Oct 16 06:14:14 UTC 2024 - 22.9K bytes - Viewed (0) -
CONTRIBUTING.md
### Testing changes After making changes, you can test your code in 2 ways: 1. Run tests. - Run `./gradlew :<subproject>:quickTest` where `<subproject>` is the name of the subproject you've changed. - For example: `./gradlew :launcher:quickTest`. 2. Install Gradle locally and try out a change in behavior manually. - Install: `./gradlew install -Pgradle_installPath=/any/path`
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Nov 05 15:15:33 UTC 2024 - 15.6K bytes - Viewed (0) -
api/maven-api-model/src/main/mdo/maven.mdo
</annotations> </field> <field xdoc.separator="blank"> <name>subprojects</name> <version>4.1.0</version> <description>The subprojects (formerly called modules) to build as a part of this project. Each subproject listed is a relative path to the directory containing the subproject. To be consistent with the way default URLs are calculated from parent, it is recommended
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 09 11:07:31 UTC 2024 - 115.1K bytes - Viewed (0) -
.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) -
.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)