Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 844 for child3 (0.1 sec)

  1. src/syscall/exec_libc.go

    	Setsid     bool        // Create session.
    	// Setpgid sets the process group ID of the child to Pgid,
    	// or, if Pgid == 0, to the new child's process ID.
    	Setpgid bool
    	// Setctty sets the controlling terminal of the child to
    	// file descriptor Ctty. Ctty must be a descriptor number
    	// in the child process: an index into ProcAttr.Files.
    	// This is only meaningful if Setsid is true.
    	Setctty bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultInheritanceAssembler.java

            String childPath = child.getProperties().getOrDefault(CHILD_DIRECTORY_PROPERTY, child.getArtifactId());
            hints.put(CHILD_DIRECTORY, childPath);
            hints.put(MavenModelMerger.CHILD_PATH_ADJUSTMENT, getChildPathAdjustment(child, parent, childPath));
            return merger.merge(child, parent, false, hints);
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/idea/model/IdeaProjectTest.groovy

        private ProjectInternal childProject
        private ProjectInternal anotherChildProject
    
        def setup() {
            childProject = TestUtil.createChildProject(project, "child", new File("."))
            anotherChildProject = TestUtil.createChildProject(project, "child2", new File("."))
        }
    
        def "location tracks change to outputFile property"() {
            when:
            project.pluginManager.apply(IdeaPlugin)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ProcessFixture.groovy

        String[] getChildProcesses() {
            if (pid == null) {
                throw new RuntimeException("Unable to get child processes because provided pid is null!")
            }
            if (!(OperatingSystem.current().unix)) {
                throw new RuntimeException("This implementation does not know how to get child processes on os: " + OperatingSystem.current())
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. 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)
  6. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/plugins/PrecompiledGroovyPluginsIntegrationTest.groovy

            enablePrecompiledPluginsInBuildSrc()
    
            file("buildSrc/src/main/groovy/child1.gradle") << "println 'child1 applied'"
            file("buildSrc/src/main/groovy/child2.gradle") << "println 'child2 applied'"
            file("buildSrc/src/main/groovy/parent.gradle") << """
                plugins {
                    id 'child1'
                    id 'child2'
                }
                println 'parent applied'
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 28.7K bytes
    - Viewed (0)
  7. src/net/http/cgi/integration_test.go

    	"internal/testenv"
    	"io"
    	"net/http"
    	"net/http/httptest"
    	"net/url"
    	"os"
    	"strings"
    	"testing"
    )
    
    // This test is a CGI host (testing host.go) that runs its own binary
    // as a child process testing the other half of CGI (child.go).
    func TestHostingOurselves(t *testing.T) {
    	testenv.MustHaveExec(t)
    
    	h := &Handler{
    		Path: os.Args[0],
    		Root: "/test.go",
    	}
    	expectedMap := map[string]string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 18:42:44 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/internal/crashmonitor/monitor.go

    // exclusive use of a writable pipe connected to the child process's stdin.
    func Parent(pipe *os.File) {
    	writeSentinel(pipe)
    	// Ensure that we get pc=0x%x values in the traceback.
    	debug.SetTraceback("system")
    	setCrashOutput(pipe)
    }
    
    // Child runs the part of the crashmonitor that runs in the child process.
    // It expects its stdin to be connected via a pipe to the parent which has
    // run Parent.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/idea/IdeaPluginTest.groovy

        private ProjectInternal childProject
        private ProjectInternal anotherChildProject
    
        def setup() {
            childProject = TestUtil.createChildProject(project, "child")
            anotherChildProject = TestUtil.createChildProject(project, "child2")
        }
    
        def "adds extension to root project"() {
            when:
            applyPluginToProjects()
    
            then:
            project.idea instanceof IdeaModel
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  10. pkg/util/iptree/iptree.go

    	if n.child[0] == nil &&
    		n.child[1] == nil {
    		return
    	}
    	// find the child and merge it
    	var child *node[T]
    	if n.child[0] != nil {
    		child = n.child[0]
    	} else if n.child[1] != nil {
    		child = n.child[1]
    	}
    	n.prefix = child.prefix
    	n.public = child.public
    	n.val = child.val
    	n.child = child.child
    	// remove any references from the deleted node
    	// to avoid memory leak
    	child.child[0] = nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 17.7K bytes
    - Viewed (0)
Back to top