Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 292 for forkx (0.11 sec)

  1. testing/architecture-test/build.gradle.kts

            ruleFile = ruleStoreDir.file("stored.rules").asFile
        }
    
        test {
            // Looks like loading all the classes requires more than the default 512M
            maxHeapSize = "1g"
    
            // Only use one fork, so freezing doesn't have concurrency issues
            maxParallelForks = 1
    
            inputs.dir(ruleStoreDir)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. src/runtime/debug/example_monitor_test.go

    			log.Fatal(err)
    		}
    		if err := f.Close(); err != nil {
    			log.Fatal(err)
    		}
    		log.Fatalf("saved crash report at %s", f.Name())
    	}
    
    	// This is the application process.
    	// Fork+exec the same executable in monitor mode.
    	exe, err := os.Executable()
    	if err != nil {
    		log.Fatal(err)
    	}
    	cmd := exec.Command(exe, "-test.run=ExampleSetCrashOutput_monitor")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. src/os/exec_plan9.go

    	for _, f := range attr.Files {
    		sysattr.Files = append(sysattr.Files, f.Fd())
    	}
    
    	pid, _, e := syscall.StartProcess(name, argv, sysattr)
    	if e != nil {
    		return nil, &PathError{Op: "fork/exec", Path: name, Err: e}
    	}
    
    	return newPIDProcess(pid), nil
    }
    
    func (p *Process) writeProcFile(file string, data string) error {
    	f, e := OpenFile("/proc/"+itoa.Itoa(p.Pid)+"/"+file, O_WRONLY, 0)
    	if e != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.pom

                        <showDeprecation>true</showDeprecation>
                        <showWarnings>true</showWarnings>
                        <debug>true</debug>
                        <fork>true</fork>
                        <compilerArgs>
                            <arg>-Xlint:unchecked</arg>
                        </compilerArgs>
                        <maxmem>128m</maxmem>
                    </configuration>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  5. src/runtime/defs_solaris.go

    #include <sys/select.h>
    #include <sys/siginfo.h>
    #include <sys/signal.h>
    #include <sys/stat.h>
    #include <sys/time.h>
    #include <sys/ucontext.h>
    #include <sys/regset.h>
    #include <sys/unistd.h>
    #include <sys/fork.h>
    #include <sys/port.h>
    #include <semaphore.h>
    #include <errno.h>
    #include <signal.h>
    #include <pthread.h>
    #include <netdb.h>
    */
    import "C"
    
    const (
    	EINTR       = C.EINTR
    	EBADF       = C.EBADF
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 17:47:39 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_replace_gopkgin.txt

    # Regression test for golang.org/issue/34254:
    # a clone of gopkg.in/[…].vN should be replaceable by
    # a fork hosted at corp.example.com/[…]/vN,
    # even if there is an explicit go.mod file containing the
    # gopkg.in path.
    
    skip 'skipping test that depends on an unreliable third-party server; see https://go.dev/issue/54503'
    	# TODO(#54043): Make this test hermetic and re-enable it.
    
    [!net:gopkg.in] skip
    [!git] skip
    
    env GO111MODULE=on
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/process/internal/DefaultJavaExecSpec.java

            targetSpec.getModularity().getInferModulePath().set(getModularity().getInferModulePath());
            targetSpec.classpath(getClasspath());
            // BaseExecSpec
            copyBaseExecSpecTo(this, targetSpec);
            // Java fork options
            super.copyTo(targetSpec);
        }
    
        @Override
        public List<String> getCommandLine() {
            return argumentsSpec.getCommandLine();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 27 09:47:37 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. cmd/service.go

    // cancelGlobalContext can be used to indicate server shutdown.
    var GlobalContext, cancelGlobalContext = context.WithCancel(context.Background())
    
    // restartProcess starts a new process passing it the active fd's. It
    // doesn't fork, but starts a new process using the same environment and
    // arguments as when it was originally started. This allows for a newly
    // deployed binary to be started. It returns the pid of the newly started
    // process when successful.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Feb 28 07:02:14 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/process/internal/DefaultExecSpec.java

        @Inject
        public DefaultExecSpec(PathToFileResolver resolver) {
            super(resolver);
        }
    
        public void copyTo(ExecSpec targetSpec) {
            // Fork options
            super.copyTo(targetSpec);
            // BaseExecSpec
            copyBaseExecSpecTo(this, targetSpec);
            // ExecSpec
            targetSpec.setArgs(getArgs());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 06 16:16:31 UTC 2020
    - 4.6K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/process/internal/DefaultExecHandleSpec.groovy

        @Rule final TestNameTestDirectoryProvider tmpDir = new TestNameTestDirectoryProvider(getClass())
        private BuildCancellationToken buildCancellationToken = Mock(BuildCancellationToken)
    
        void "forks process"() {
            given:
            def out = new ByteArrayOutputStream()
            def err = new ByteArrayOutputStream()
    
            def execHandle = handle()
                    .args(args(TestApp.class, "arg1", "arg2"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 23 03:44:52 UTC 2021
    - 14.9K bytes
    - Viewed (0)
Back to top