Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 652 for child3 (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. maven-core/src/test/resources/projects/base-directory-alignment/project-which-needs-directory-alignment-child.xml

    Britton Isbell <******@****.***> 1240982438 +0000
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 29 05:20:38 UTC 2009
    - 1.1K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/projects/base-directory-alignment/subproject/project-which-needs-directory-alignment-child.xml

    Britton Isbell <******@****.***> 1240982438 +0000
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 29 05:20:38 UTC 2009
    - 1011 bytes
    - Viewed (0)
  10. maven-core/src/test/resources-project-builder/limited-inheritance/child/pom.xml

      </parent>
    
      <artifactId>child</artifactId>
    
      <organization>
        <name>child-org</name>
      </organization>
    
      <scm>
        <developerConnection>https://child.url/scm</developerConnection>
      </scm>
      <issueManagement>
        <url>https://child.url/issues</url>
      </issueManagement>
      <ciManagement>
        <system>child-ci</system>
        <url>https://child.url/ci</url>
      </ciManagement>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 1.7K bytes
    - Viewed (0)
Back to top