Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 71 for forkx (0.11 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. 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)
  6. docs/en/docs/release-notes.md

    * 💚 Fix disabling install of Material for MkDocs Insiders in forks, strike 1 ⚾. PR [#2340](https://github.com/tiangolo/fastapi/pull/2340) by [@tiangolo](https://github.com/tiangolo).
    * 🐛 Fix disabling Material for MkDocs Insiders install in forks. PR [#2339](https://github.com/tiangolo/fastapi/pull/2339) by [@tiangolo](https://github.com/tiangolo).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/cmd/go/internal/work/exec.go

    	// on binaries that we are going to run and then delete.
    	// There's no point in doing work on such a binary.
    	// Worse, opening the binary for write here makes it
    	// essentially impossible to safely fork+exec due to a fundamental
    	// incompatibility between ETXTBSY and threads on modern Unix systems.
    	// See golang.org/issue/22220.
    	// We still call updateBuildID to update a.buildID, which is important
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  10. ChangeLog.md

    - [`KT-58260`](https://youtrack.jetbrains.com/issue/KT-58260) Make invoke convention work consistently with expected desugaring
    - [`KT-67314`](https://youtrack.jetbrains.com/issue/KT-67314) PCLA works inconsistently with smart-cast related CS forks
    - [`KT-66797`](https://youtrack.jetbrains.com/issue/KT-66797) K2 JS: Primary constructor property annotation with target VALUE_PARAMETER is put on property instead of parameter
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
Back to top