Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 42 for subProject (0.05 seconds)

  1. .teamcity/src/main/kotlin/model/FunctionalTestBucketModel.kt

    }
    
    data class SmallSubprojectBucket(
        val subprojects: List<GradleSubproject>,
        val parallelizationMethod: ParallelizationMethod,
    ) : BuildTypeBucket {
        constructor(
            subproject: GradleSubproject,
            parallelizationMethod: ParallelizationMethod,
        ) : this(listOf(subproject), parallelizationMethod)
    
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Thu Apr 10 15:09:32 GMT 2025
    - 3.4K bytes
    - Click Count (0)
  2. okhttp-bom/build.gradle.kts

    plugins {
      id("com.vanniktech.maven.publish.base")
      id("java-platform")
    }
    
    dependencies {
      constraints {
        project.rootProject.subprojects.forEach { subproject ->
          if (subproject.name != "okhttp-bom") {
            api(subproject)
          }
        }
        api("com.squareup.okhttp3:okhttp-jvm:${project.version}")
        api("com.squareup.okhttp3:okhttp-android:${project.version}")
      }
    }
    
    publishing {
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Sun Jul 13 08:32:01 GMT 2025
    - 501 bytes
    - Click Count (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/ModelUpgradeStrategy.java

                modulesElement.name(SUBPROJECTS);
                context.detail("Converted <modules> to <subprojects>");
    
                // Convert all module children to subproject
                var moduleElements = modulesElement.children(MODULE).toList();
                for (Element moduleElement : moduleElements) {
                    moduleElement.name(SUBPROJECT);
                }
    
    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)
  4. .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)
  5. .teamcity/src/main/kotlin/projects/StageProject.kt

                        testCoverage,
                        stage,
                    )
                }
    
            functionalTestProjects.forEach { functionalTestProject ->
                this@StageProject.subProject(functionalTestProject)
            }
            val functionalTestsPass =
                functionalTestProjects.map { functionalTestProject ->
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Thu Oct 16 00:34:25 GMT 2025
    - 12.1K bytes
    - Click Count (0)
  6. 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)
  7. .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.ALWAYS
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Mon Dec 22 07:15:16 GMT 2025
    - 5.6K bytes
    - Click Count (0)
  8. .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)
  9. .teamcity/src/main/kotlin/model/FunctionalTestBucketProvider.kt

                        FunctionalTestBucket(it).toBuildTypeBucket(model.subprojects)
                    }
    
                // Sometimes people may add new subproject into `subprojects.json`
                // in this case we have no historical test running time, so we simply add these subprojects into first available bucket
                val allSubprojectsInBucketJson = buckets.flatMap { it.subprojects.map { it.name } }.toSet()
    
                val allSubprojectsInModel =
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Wed Sep 24 08:38:33 GMT 2025
    - 8.2K bytes
    - Click Count (0)
  10. build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/action/IncubatingApiReportAggregationWorkAction.kt

            val currentCommit = parameters.currentCommit.get()
            outputFile.parentFile.mkdirs()
            outputFile.printWriter(Charsets.UTF_8).use { writer ->
                writer.println("Link;Platform/Subproject;Incubating since")
                data.toSortedMap().forEach { (category, projectsWithProblems) ->
                    projectsWithProblems.forEach { (project, problems) ->
                        problems.forEach {
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Mon Jun 02 09:57:54 GMT 2025
    - 5.2K bytes
    - Click Count (0)
Back to Top