Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,233 for child3 (0.12 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. 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)
  3. 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)
  4. 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)
  5. pkg/volume/util/subpath/subpath_linux_test.go

    			},
    			expectError: true,
    		},
    		{
    			name: "subpath-child-outside-exists",
    			prepare: func(base string) ([]string, string, string, error) {
    				volpath, _ := getTestPaths(base)
    				subpathDir := filepath.Join(volpath, "dir0")
    				child := filepath.Join(base, "child0")
    				subpath := filepath.Join(subpathDir, "child0")
    				if err := os.MkdirAll(volpath, defaultPerm); err != nil {
    					return nil, "", "", err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 10 16:52:55 UTC 2021
    - 37.3K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/projects/child-with-bogus-parent.xml

    Jason van Zyl <******@****.***> 1172702970 +0000
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 22:49:30 UTC 2007
    - 947 bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top