Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,835 for childs (0.11 sec)

  1. src/context/context_test.go

    			pc.mu.Lock()
    			if len(pc.children) != 0 {
    				t.Errorf("child's cancel didn't remove self from pc.children = %v", pc.children)
    			}
    			pc.mu.Unlock()
    		}
    
    		// child should be finished.
    		select {
    		case <-child.Done():
    		default:
    			t.Errorf("<-child.Done() blocked, but shouldn't have")
    		}
    		if e := child.Err(); e != Canceled {
    			t.Errorf("child.Err() == %v want %v", e, Canceled)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 19 19:13:01 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/inheritance/DefaultInheritanceAssembler.java

         * <li>The name of the child's base directory matches the artifact id of the child.</li>
         * </ul>
         * Note that for the sake of independence from the user
         * environment, the filesystem is intentionally not used for the calculation.</p>
         *
         * @param child The child model, must not be <code>null</code>.
         * @param parent The parent model, may be <code>null</code>.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. releasenotes/notes/rpm-builds.yaml

    Brian Avery <******@****.***> 1597180858 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 173 bytes
    - Viewed (0)
  4. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/initialization/LoadProjectsBuildOperationType.java

             */
            String getBuildPath();
        }
    
        public interface Result {
            /**
             * The path of the build configuration that contains these projects.
             * This will be ':' for top-level builds. Nested builds will have a sub-path.
             *
             * See {@code org.gradle.api.internal.GradleInternal#getIdentityPath()}.
             */
            String getBuildPath();
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r33/BasicProjectConfigurationProgressCrossVersionSpec.groovy

            def configureBuildSrc = buildSrc.child({ it.startsWith("Configure build") })
            configureBuildSrc.child("Configure project :buildSrc")
            configureBuildSrc.child("Configure project :buildSrc:a")
            configureBuildSrc.child("Configure project :buildSrc:b")
    
            def buildSrcTasks = buildSrc.child({ it.startsWith("Run tasks") })
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. src/syscall/exec_unix.go

    //
    // It is worse to inherit some file descriptors than others.
    // If a non-malicious child accidentally inherits an open ordinary file,
    // that's not a big deal. On the other hand, if a long-lived child
    // accidentally inherits the write end of a pipe, then the reader
    // of that pipe will not see EOF until that child exits, potentially
    // causing the parent program to hang. This is a common problem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/BuildResultLoggerIntegrationTest.groovy

            then:
            result.assertHasPostBuildOutput("3 actionable tasks: 3 up-to-date")
        }
    
        def "reports tasks from included builds"() {
            settingsFile << """
                includeBuild "child"
            """
            file("child/build.gradle") << """
                task executedTask {
                    doLast {
                        // Do something
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. tensorflow/cc/experimental/libtf/runtime/runtime.cc

      auto& root = nodes.at(0);
      for (auto& child : root.children()) {
        // The child's name describes the name of the edge that connects to the
        // parent object. This name will be the name of the object stored in the
        // generated module.
        auto& child_node = nodes.at(child.node_id());
        auto child_name = child.local_name().c_str();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 01 11:18:25 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  9. subprojects/composite-builds/src/test/groovy/org/gradle/composite/internal/DefaultIncludedBuildTaskGraphParallelTest.groovy

        }
    
        def "runs scheduled unrelated work across multiple builds"() {
            def services = new TreeServices(workers)
            def childBuild = build(services, new DefaultBuildIdentifier(Path.path(":child")))
            def build = build(services, DefaultBuildIdentifier.ROOT)
            def childNode = new TestNode("child build node")
            def node = new TestNode("main build node")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  10. src/net/http/cgi/integration_test.go

    	}
    	if len(p) > 0 {
    		n, err = w.w.Write(p)
    		w.n -= n
    	}
    	if w.n == 0 {
    		err = errors.New("past write limit")
    	}
    	return
    }
    
    // If there's an error copying the child's output to the parent, test
    // that we kill the child.
    func TestKillChildAfterCopyError(t *testing.T) {
    	testenv.MustHaveExec(t)
    
    	h := &Handler{
    		Path: os.Args[0],
    		Root: "/test.go",
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 18:42:44 UTC 2023
    - 5.5K bytes
    - Viewed (0)
Back to top