Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 30 for child3 (0.16 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiGradleProjectIntegrationTest.groovy

            runBuildAction(new FetchGradleProjectForTarget(":included1"))
    
            then:
            fixture.assertStateLoaded()
        }
    
        def "root GradleProject model is invalidated when a child project configuration changes"() {
            settingsFile << """
                rootProject.name = 'root'
                include("a")
                include("b")
            """
            file("a/build.gradle") << ""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. src/os/exec_unix_test.go

    	}
    
    	p, err := FindProcess(pid)
    	if err != nil {
    		t.Fatalf("FindProcess(math.MaxInt32) got err %v, want nil", err)
    	}
    
    	if ps, err := p.Wait(); !errors.Is(err, syscall.ECHILD) {
    		t.Errorf("Wait() got err %v (ps %+v), want %v", err, ps, syscall.ECHILD)
    	}
    
    	if err := p.Release(); err != nil {
    		t.Errorf("Release() got err %v, want nil", err)
    	}
    }
    
    func TestUNIXProcessAlive(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 18:08:44 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CachedBuildState.kt

    ) : CachedProjectState(path, projectDir, buildFile)
    
    
    data class BuildToStore(
        val build: VintageGradleBuild,
        // Does this build have work scheduled?
        val hasWork: Boolean,
        // Does this build have a child build with work scheduled?
        val hasChildren: Boolean
    ) {
        fun hasChildren() = BuildToStore(build, hasWork, true)
    }
    
    
    /**
     * State cached for a build in the tree.
     */
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheKey.kt

        fun Hasher.putAll(list: Collection<String>) {
            putInt(list.size)
            list.forEach(::putString)
        }
    
        /**
         * Returns the path of [target] relative to [base] if
         * [target] is a child of [base] or `null` otherwise.
         */
        private
        fun relativeChildPathOrNull(target: File, base: File): String? =
            relativePathOf(target, base)
                .takeIf { !it.startsWith('.') }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiCoupledProjectsIntegrationTest.groovy

    package org.gradle.internal.cc.impl.isolated
    
    class IsolatedProjectsToolingApiCoupledProjectsIntegrationTest extends AbstractIsolatedProjectsToolingApiIntegrationTest {
    
        def "projects are treated as coupled when parent mutates child project"() {
            given:
            withSomeToolingModelBuilderPluginInBuildSrc()
            settingsFile << """
                include("a")
                include("b")
                include("c")
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  6. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

        /**
         * @param aggregator <code>true</code> if the Mojo uses the Maven project and its child modules,
         * <code>false</code> otherwise.
         */
        public void setAggregator(boolean aggregator) {
            this.aggregator = aggregator;
        }
    
        /**
         * @return <code>true</code> if the Mojo uses the Maven project and its child modules,
         * <code>false</code> otherwise.
         */
        public boolean isAggregator() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiCompositeBuildsIntegrationTest.groovy

                projectConfigured(":buildSrc")
                projectConfigured(":b")
                buildModelCreated()
                modelsCreated(":", ":a")
            }
        }
    
        def "invalidates cached state when plugin in child build changes"() {
            given:
            withSomeToolingModelBuilderPluginInChildBuild("plugins")
            settingsFile << """
                includeBuild("plugins")
                include("a")
                include("b")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ProblemReportingCrossProjectModelAccess.kt

                when (access.pattern) {
                    DIRECT -> {
                        text("another project ")
                        reference(delegate)
                    }
    
                    CHILD -> {
                        text("child projects")
                        if (relativeToAnother) {
                            text(" of project ")
                            reference(access.relativeTo)
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  9. settings.gradle.kts

        }
    
        private fun NodeWriter.platform(platform: Platform) {
            println()
            node("subgraph ${platform.id}[\"${platform.name} platform\"]") {
                for (child in platform.children) {
                    element(child)
                }
            }
            node("end")
            node("style ${platform.id} fill:#c2e0f4,stroke:#3498db,stroke-width:2px,color:#000;")
            for (dep in platform.uses) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromGroovyDslIntegrationTest.groovy

            "allprojects"                       | "subprojects via 'allprojects'"
            "subprojects"                       | "subprojects"
            "configure(childProjects.values())" | "child projects"
        }
    
        def "reports problem when build script uses #property property to apply plugins to another project"() {
            createDirs("a", "b")
            settingsFile << """
                include("a")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 32.4K bytes
    - Viewed (0)
Back to top