Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 112 for subproject1 (0.2 sec)

  1. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/impl/DefaultDevelocityBuildLifecycleService.java

            // - `allprojects` executes eagerly before any project has been evaluated, allowing its effects
            //   to be observable from other eager configuration blocks (e.g., `subprojects { ... }`).
            // - `lifecycle.beforeProject` executes just before each project is evaluated. Therefore, its effects
            //   are not observable from eager configuration blocks, which would anyway be incompatible with
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 21:44:28 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/typesafe/TypeSafeProjectAccessorsIntegrationTest.groovy

            then:
            failureDescriptionContains "Cannot generate project dependency accessors because project '1library' doesn't follow the naming convention: [a-zA-Z]([A-Za-z0-9\\-_])*"
        }
    
        def "fails if two subprojects have the same java name"() {
            given:
            createDirs("super-cool", "super--cool")
            settingsFile << """
                include 'super-cool'
                include 'super--cool'
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 20:11:20 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r28/ToolingApiEclipseModelCrossVersionSpec.groovy

        @TargetGradleVersion(">=3.0")
        def "makes sure module names are unique in gradle"() {
            given:
            file('build.gradle').text = """
    subprojects {
        apply plugin: 'java'
    }
    
    project(':impl') {
        dependencies {
            ${implementationConfiguration} project(':api')
        }
    }
    
    project(':contrib:impl') {
        dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r28/ToolingApiIdeaModelCrossVersionSpec.groovy

    class ToolingApiIdeaModelCrossVersionSpec extends ToolingApiSpecification implements WithOldConfigurationsSupport {
    
        def "makes sure module names are unique in gradle"() {
    
            file('build.gradle').text = """
    subprojects {
        apply plugin: 'java'
    }
    
    project(':impl') {
        dependencies {
            ${implementationConfiguration} project(':api')
        }
    }
    
    project(':contrib:impl') {
        dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/caching/configuration/internal/BuildCacheCompositeConfigurationIntegrationTest.groovy

                        }
                        ${mavenCentralRepository()}
                        testing.suites.test.useJUnitJupiter()
                    }
                    tasks.build.dependsOn(subprojects.tasks.build)
                    tasks.clean.dependsOn(subprojects.tasks.clean)
                """
                file("src/test/java/Test.java") <<
                    """
                    class Test {
                        @org.junit.jupiter.api.Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. testing/distributions-integ-tests/src/integTest/groovy/org/gradle/DistributionIntegrationSpec.groovy

        abstract int getMaxDistributionSizeBytes()
    
        /**
         * Change this whenever you add or remove subprojects for distribution core modules (lib/).
         */
        int getCoreLibJarsCount() {
            69
        }
    
        /**
         * Change this whenever you add or remove subprojects for distribution-packaged plugins (lib/plugins).
         */
        int getPackagedPluginsJarCount() {
            80
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  7. platforms/enterprise/enterprise-plugin-performance/build.gradle.kts

            "manyScripts" to true
        )
        daemonMemory = "4096m"
        maxWorkers = 4
        doLast {
            File(destDir, "build.gradle").appendText("""
    // gradle-profiler doesn't support expectFailure
    subprojects {
        afterEvaluate {
            test.ignoreFailures = true
        }
    }
    """)
        }
    }
    
    tasks.withType<gradlebuild.performance.tasks.PerformanceTest>().configureEach {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 23:14:25 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitorSpec.groovy

    15818 ?        Sl     2:15 /opt/jdk/oracle-jdk-8/bin/java -DintegTest.gradleHomeDir=/home/tcagent1/agent/work/668602365d1521fc/subprojects/test-kit/build/integ test -DintegTest.gradleUserHomeDir=/home/tcagent1/agent/work/668602365d1521fc/intTestHomeDir -DintegTest.toolingApiShadedJarDir=/home/tcagent1/agent/work/668602365d1521fc/subprojects/tooling-api/build/shaded-jar -Djava.security.manager=worker.org.gradle.process.internal.worker.child.BootstrapSecurityManager -Dorg.gradle.ci.agentCount=2...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  9. platforms/software/testing-base/build.gradle.kts

    testing-related abstract base types and interfaces for things like Test tasks, listeners and filters.
    
    This project is a implementation dependency of many other testing-related subprojects in the Gradle build.
    """
    
    errorprone {
        disabledChecks.addAll(
            "EmptyBlockTag", // 3 occurrences
            "InlineMeInliner", // 2 occurrences
            "MissingCasesInEnumSwitch", // 1 occurrences
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiKotlinDslIntegrationTest.groovy

        def isolatedScriptsModel = "org.gradle.kotlin.dsl.tooling.builders.internal.IsolatedScriptsModel"
    
        def "can fetch KotlinDslScripts model for single subproject build"() {
            withSettings("""
                rootProject.name = "root"
                include("a")
            """)
            withBuildScript()
            withBuildScriptIn("a")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top