Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for Child (0.08 sec)

  1. src/os/exec/exec.go

    	// of unexpected delay in Wait: a child process that fails to exit after the
    	// associated Context is canceled, and a child process that exits but leaves
    	// its I/O pipes unclosed.
    	//
    	// The WaitDelay timer starts when either the associated Context is done or a
    	// call to Wait observes that the child process has exited, whichever occurs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/os/exec.go

    	p.state.CompareAndSwap(0, uint64(reason))
    }
    
    // ProcAttr holds the attributes that will be applied to a new process
    // started by StartProcess.
    type ProcAttr struct {
    	// If Dir is non-empty, the child changes into the directory before
    	// creating the process.
    	Dir string
    	// If Env is non-nil, it gives the environment variables for the
    	// new process in the form returned by Environ.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/WorkerProcessClassPathProvider.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.process.internal.worker.child;
    
    import org.gradle.api.Action;
    import org.gradle.api.GradleException;
    import org.gradle.api.JavaVersion;
    import org.gradle.api.internal.ClassPathProvider;
    import org.gradle.api.internal.classpath.ModuleRegistry;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiIdeaProjectIntegrationTest.groovy

            }
    
            checkIdeaProject(ideaModel, originalIdeaModel)
        }
    
        def "IdeaProject 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
    - 20.9K bytes
    - Viewed (0)
  10. cmd/iam-object-store.go

    	policyDBUsersListKey    = "policydb/users/"
    	policyDBSTSUsersListKey = "policydb/sts-users/"
    	policyDBGroupsListKey   = "policydb/groups/"
    )
    
    // splitPath splits a path into a top-level directory and a child item. The
    // parent directory retains the trailing slash.
    func splitPath(s string, lastIndex bool) (string, string) {
    	var i int
    	if lastIndex {
    		i = strings.LastIndex(s, "/")
    	} else {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 19.5K bytes
    - Viewed (0)
Back to top