Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 52 for subproject1 (0.24 sec)

  1. .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 Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 05:47:35 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/FilesInTransformIntegrationTest.groovy

            given:
            getTransformFixture().tap {
                withTransformPlugin(testDirectory.createDir("buildSrc"))
                withJavaLibrarySubproject(testDirectory.createDir("subproject"))
            }
    
            settingsFile("""
                include("subproject")
            """)
    
            buildFile("""
                plugins { id("${TransformFixture.TRANSFORM_PLUGIN_ID}") }
                ${mavenCentralRepository()}
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiInvocationValidationIntegrationTest.groovy

            }
        }
    
        def "reports cross project access from model builder while fetching custom tooling model"() {
            given:
            settingsFile << """
                include('a')
                include('b')
            """
            withSomeToolingModelBuilderPluginInBuildSrc("""
                project.subprojects.each { it.extensions }
            """)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInTransformIntegrationTest.groovy

                withTransformPlugin(testDirectory.createDir("buildSrc"))
                withJavaLibrarySubproject(testDirectory.createDir("subproject"))
            }
    
            settingsFile("""
                include("subproject")
            """)
    
            buildFile("""
                plugins { id("${TransformFixture.TRANSFORM_PLUGIN_ID}") }
                ${mavenCentralRepository()}
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskSelectionIntegrationTest.groovy

        @ToBeFixedForIsolatedProjects(because = "subprojects")
        def "given an unqualified name traverse project tree from current project and select all tasks with matching name"() {
            createDirs("a", "b", "a/a", "b/b")
            settingsFile << "include 'a', 'b', 'a:a', 'b:b'"
    
            buildFile << """
                subprojects {
                    task thing
                    projectDir.mkdirs()
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/execution/TaskSelectorsAndOrdinalNodeIntegrationTest.groovy

        @ToBeFixedForIsolatedProjects(because = "subprojects")
        def "build is not exponentially slower when many tasks are requested"() {
            createDirs((1..30).collect({ "sub" + it }) as String[])
            settingsFile << """
                rootProject.name = "test"
                (1..30).each {
                    include "sub" + it
                }
            """
            buildFile << """
                subprojects {
                    apply plugin: 'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/DevelocityBuildLifecycleServiceIntegrationTest.groovy

        }
    
        @Requires(
            value = IntegTestPreconditions.NotIsolatedProjects,
            reason = "accessing `tasks` from subprojects is in violation of Isolated Projects"
        )
        def "lifecycle applied build logic runs before subprojects configuration logic"() {
            given:
            settingsFile """
                include 'sub'
    
                $beforeProject {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 18:42:29 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/inspect.adoc

    Expand that row to see where the build applied this script.
    
    image::performance/script-b-application.png[title="Showing the application of script-b.gradle to the build"]
    
    You can see that subproject `:app1` applied the script once, from inside of that subproject's `build.gradle` file.
    
    == Profile report
    
    If you prefer not to use build scans, you can generate an HTML report in the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/m5/ToolingApiIdeaModelCrossVersionSpec.groovy

            then:
            project.languageLevel.level == "JDK_1_5"
            project.jdkName == '1.6'
        }
    
        def "provides all modules"() {
    
            file('build.gradle').text = '''
    subprojects {
        apply plugin: 'java'
    }
    '''
            file('settings.gradle').text = "include 'api', 'impl'"
    
            when:
            IdeaProject project = loadToolingModel(IdeaProject)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r213/ModelsWithGradleProjectIdentifierCrossVersionSpec.groovy

            buildTestFixture.singleProjectBuild(projectName, cl)
        }
    
        def multiProjectBuild(String projectName, List<String> subprojects, @DelegatesTo(BuildTestFile) Closure cl = {}) {
            buildTestFixture.multiProjectBuild(projectName, subprojects, cl)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top