Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 478 for subProjects (0.24 sec)

  1. .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 Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  2. build-logic/build-update-utils/src/main/kotlin/gradlebuild.generate-subprojects-info.gradle.kts

    Jendrik Johannes <******@****.***> 1607501645 +0100
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 254 bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/model/FunctionalTestBucketProvider.kt

                    FunctionalTestBucket(it as JSONObject).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()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 05:14:09 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. .teamcity/test-buckets.json

    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"dependency-management"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"configuration-cache"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"tooling-api"
    				]
    			},
    			{
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  5. .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 Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 17:04:41 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/sharing_build_logic_between_subprojects.adoc

    An improper way to share build logic between subprojects is _cross-project configuration_ via the link:{javadocPath}//org/gradle/api/Project.html#subprojects-groovy.lang.Closure-[`subprojects {}`] and link:{javadocPath}/org/gradle/api/Project.html#allprojects-groovy.lang.Closure-[`allprojects {}`] DSL constructs.
    
    TIP:  Avoid using `subprojects {}` and `allprojects {}`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 12:58:46 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/java/ParallelTestTaskIntegrationTest.groovy

                latch.countDown()
                latch.await()
                println path + " go"
            }
    
            executable = "$java"
        }
    }
    """
            subprojects.each { subproject ->
                settingsFile << "include '$subproject'\n"
                file("${subproject}/src/test/java/ThingTest.java") << """
    import org.junit.Test;
    import static org.junit.Assert.*;
    
    public class ThingTest {
        @Test
        public void verify() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:27:57 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/model/GradleSubprojectProvider.kt

        private val nameToSubproject = subprojects.map { it.name to it }.toMap()
        override fun getSubprojectsForFunctionalTest(testConfig: TestCoverage) =
            subprojects.filter { it.hasTestsOf(testConfig.testType) }
    
        override fun getSubprojectByName(name: String) = nameToSubproject[name]
    
        private
        fun toSubproject(subproject: Map<String, Any>): GradleSubproject {
            val name = subproject["name"] as String
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 14:55:06 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. .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)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 1002 bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/build/BuildTestFixture.groovy

            return project
        }
    
        def multiProjectBuild(String projectName, List<String> subprojects, @DelegatesTo(value = BuildTestFile, strategy = Closure.DELEGATE_FIRST) Closure cl = {}) {
            multiProjectBuild(projectName, subprojects, CompiledLanguage.JAVA, cl)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top