Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 57 of 57 for forkx (0.34 sec)

  1. src/runtime/stack.go

    //
    //go:nowritebarrierrec
    func newstack() {
    	thisg := getg()
    	// TODO: double check all gp. shouldn't be getg().
    	if thisg.m.morebuf.g.ptr().stackguard0 == stackFork {
    		throw("stack growth after fork")
    	}
    	if thisg.m.morebuf.g.ptr() != thisg.m.curg {
    		print("runtime: newstack called from g=", hex(thisg.m.morebuf.g), "\n"+"\tm=", thisg.m, " m->curg=", thisg.m.curg, " m->g0=", thisg.m.g0, " m->gsignal=", thisg.m.gsignal, "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  2. src/syscall/syscall_linux.go

    // but not really be pointers, and adjusting their value would break the call.
    //
    // //go:norace, on RawSyscall, to avoid race instrumentation if RawSyscall is
    // called after fork, or from a signal handler.
    //
    // //go:linkname to ensure ABI wrappers are generated for external callers
    // (notably x/sys/unix assembly).
    
    //go:uintptrkeepalive
    //go:nosplit
    //go:norace
    //go:linkname RawSyscall
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/coderepo.go

    		// or v2/go.mod should exist and claim v2. Not both.
    		// Note that we don't check the full path, just the major suffix,
    		// because of replacement modules. This might be a fork of
    		// the real module, found at a different path, usable only in
    		// a replace directive.
    		dir2 := path.Join(r.codeDir, r.pathMajor[1:])
    		file2 = path.Join(dir2, "go.mod")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  4. pkg/kube/inject/webhook.go

    	}
    
    	m := map[string]any{}
    	err := unmarshal(j, &m)
    	if err != nil {
    		return nil, mergepatch.ErrBadJSONDoc
    	}
    	return m, nil
    }
    
    // StrategicMergePatchYAML is a small fork of strategicpatch.StrategicMergePatch to allow YAML patches
    // This avoids expensive conversion from YAML to JSON
    func StrategicMergePatchYAML(originalJSON []byte, patchYAML []byte, dataStruct any) ([]byte, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

    NOTE: If using Java 10+, leveraging the `release` flag might be an easier solution, see above.
    
    To use Java 6 or Java 7, the following tasks need to be configured:
    
    * `JavaCompile` task to fork and use the correct Java home
    * `Javadoc` task to use the correct `javadoc` executable
    * `Test` and the `JavaExec` task to use the correct `java` executable.
    
    With the usage of Java toolchains, this can be done as follows:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    ==== Worker API: working directory of a worker can no longer be set
    
    Since JDK 11 no longer supports changing the working directory of a running process, setting the working directory of a worker via its fork options is now prohibited.
    All workers now use the same working directory to enable reuse.
    Please pass files and directories as arguments instead. See examples in the <<worker_api.adoc#worker_api, Worker API documentation>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  7. src/os/exec/exec_test.go

    	// and nExits subprocesses that exit immediately.
    	//
    	// When issue #61080 was present, a long-lived "hang" subprocess would
    	// occasionally inherit the fork/exec status pipe from an "exit" subprocess,
    	// causing the parent process (which expects to see an EOF on that pipe almost
    	// immediately) to unexpectedly block on reading from the pipe.
    	var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
Back to top