Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for forkx (0.04 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            // JVM args that must be used for the build JVM
            final List<String> buildJvmArgs = new ArrayList<>();
            // JVM args that must be used to fork a JVM
            final List<String> launcherJvmArgs = new ArrayList<>();
            // Implicit JVM args that should be used to fork a JVM
            final List<String> implicitLauncherJvmArgs = new ArrayList<>();
    
            protected Map<String, String> getEnvironmentVars() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            expected.add("maven-it-plugin-packaging");
            expected.add("maven-it-plugin-log-file");
            expected.add("maven-it-plugin-expression");
            expected.add("maven-it-plugin-fork");
            expected.add("maven-it-plugin-touch");
    
            List<String> actual = new ArrayList<>();
            @SuppressWarnings("unchecked")
            List<Plugin> plugins = (List<Plugin>) pom.getValue("build/plugins");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  3. src/runtime/pprof/pprof_test.go

    			if have[i] < min {
    				t.Logf("%s has %d samples out of %d, want at least %d, ideally %d", name, have[i], total, min, total/uintptr(len(have)))
    				ok = false
    			}
    		}
    		return
    	}
    }
    
    // Fork can hang if preempted with signals frequently enough (see issue 5517).
    // Ensure that we do not do this.
    func TestCPUProfileWithFork(t *testing.T) {
    	testenv.MustHaveExec(t)
    
    	exe, err := os.Executable()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/init.go

    	if os.Getenv("GIT_TERMINAL_PROMPT") == "" {
    		os.Setenv("GIT_TERMINAL_PROMPT", "0")
    	}
    
    	// Disable any ssh connection pooling by Git.
    	// If a Git subprocess forks a child into the background to cache a new connection,
    	// that child keeps stdout/stderr open. After the Git subprocess exits,
    	// os/exec expects to be able to read from the stdout/stderr pipe
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/lib.go

    	if syscallExecSupported && !ownTmpDir {
    		runAtExitFuncs()
    		ctxt.execArchive(argv)
    		panic("should not get here")
    	}
    
    	// Otherwise invoke 'ar' in the usual way (fork + exec).
    	if out, err := exec.Command(argv[0], argv[1:]...).CombinedOutput(); err != nil {
    		Exitf("running %s failed: %v\n%s", argv[0], err, out)
    	}
    }
    
    func (ctxt *Link) hostlink() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top