- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 51 for subproject (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
.teamcity/src/test/kotlin/SplitBucketTest.kt
val subprojects = LinkedList( listOf( Subproject("a", 20), Subproject("b", 19), Subproject("c", 5), Subproject("d", 5), Subproject("e", 5), Subproject("f", 5), Subproject("g", 4), Subproject("h", 4),Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Feb 12 09:12:03 GMT 2025 - 3K bytes - Click Count (0) -
.teamcity/src/main/kotlin/projects/GradleBuildToolRootProject.kt
buildScanTags = listOf("Check"), subprojects = JsonBasedGradleSubprojectProvider(File("./subprojects.json")), ) val gradleBuildBucketProvider = DefaultFunctionalTestBucketProvider(model, File("./test-buckets.json")) subProject(CheckProject(model, gradleBuildBucketProvider)) if (!isSecurityFork()) { subProject(PromotionProject(model.branch)) subProject(UtilProject)
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Feb 12 09:12:03 GMT 2025 - 1.1K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/ModelUpgradeStrategy.java
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 16.6K bytes - Click Count (0) -
.teamcity/src/main/kotlin/model/FunctionalTestBucketGenerator.kt
{ largeElement, factor -> List(factor) { SmallSubprojectBucket(largeElement.subProject, parallelization(factor)) } }, { list -> SmallSubprojectBucket(list.map { it.subProject }, parallelization(1)) }, testCoverage.expectedBucketNumber, MAX_PROJECT_NUMBER_IN_BUCKET,Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Thu Apr 10 15:09:32 GMT 2025 - 7.3K bytes - Click Count (0) -
.github/PULL_REQUEST_TEMPLATE.md
- [ ] Provide integration tests (under `<subproject>/src/integTest`) to verify changes from a user perspective. - [ ] Provide unit tests (under `<subproject>/src/test`) to verify logic. - [ ] Update User Guide, DSL Reference, and Javadoc for public-facing changes. - [ ] Ensure that tests pass sanity check: `./gradlew sanityCheck`. - [ ] Ensure that tests pass locally: `./gradlew <changed-subproject>:quickTest`. ### Reviewing cheatsheet
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Tue Feb 13 22:36:19 GMT 2024 - 1.7K bytes - Click Count (0) -
CHANGELOG/OWNERS
options: # make root approval non-recursive no_parent_owners: true approvers: - release-engineering-approvers - release-managers - release-team-subproject-leads - satyampsoni # 1.32 Release Notes Lead reviewers: - release-managers - release-team-subproject-leads - satyampsoni # 1.32 Release Notes Lead labels: - sig/release
Created: Fri Dec 26 09:05:12 GMT 2025 - Last Modified: Thu Dec 12 18:04:32 GMT 2024 - 417 bytes - Click Count (0) -
api/maven-api-core/src/test/java/org/apache/maven/api/services/SourcesTest.java
Path resolvedPath = Paths.get("/tmp/subproject/pom.xml"); when(locator.locateExistingPom(any(Path.class))).thenReturn(resolvedPath); Sources.BuildPathSource source = (Sources.BuildPathSource) Sources.buildSource(basePath); ModelSource resolved = source.resolve(locator, "subproject"); assertNotNull(resolved);
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Sep 29 14:45:25 GMT 2025 - 5.4K bytes - Click Count (0) -
.teamcity/src/main/kotlin/configurations/FlakyTestQuarantine.kt
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.ALWAYSCreated: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Mon Dec 22 07:15:16 GMT 2025 - 5.6K bytes - Click Count (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")Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Tue Sep 17 10:11:26 GMT 2024 - 292 bytes - Click Count (0) -
.teamcity/src/main/kotlin/model/CIBuildModel.kt
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 fun shortenSubprojectName(Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Nov 05 13:00:26 GMT 2025 - 27.5K bytes - Click Count (0)