Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 125 for forkx (0.05 sec)

  1. src/cmd/covdata/tool_test.go

    				if len(b) != 0 {
    					t.Logf("## instrumented run output:\n%s", b)
    				}
    				if err != nil {
    					t.Fatalf("instrumented run error: %v", err)
    				}
    			}
    		}
    	}
    
    	// At this point we can fork off a bunch of child tests
    	// to check different tool modes.
    	t.Run("MergeSimple", func(t *testing.T) {
    		t.Parallel()
    		testMergeSimple(t, s, s.outdirs[0], s.outdirs[1], "set")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  2. src/syscall/zsyscall_openbsd_386.go

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func fork() (pid int, err error) {
    	r0, _, e1 := rawSyscall(abi.FuncPCABI0(libc_fork_trampoline), 0, 0, 0)
    	pid = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_fork_trampoline()
    
    //go:cgo_import_dynamic libc_fork fork "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  3. src/runtime/proc.go

    	gp := getg().m.curg
    
    	// Block signals during a fork, so that the child does not run
    	// a signal handler before exec if a signal is sent to the process
    	// group. See issue #18600.
    	gp.m.locks++
    	sigsave(&gp.m.sigmask)
    	sigblock(false)
    
    	// This function is called before fork in syscall package.
    	// Code between fork and exec must not allocate memory nor even try to grow stack.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/script/cmds.go

    		cmd.Stderr = &stderrBuf
    		err := cmd.Start()
    		if err == nil {
    			break
    		}
    		if isETXTBSY(err) {
    			// If the script (or its host process) just wrote the executable we're
    			// trying to run, a fork+exec in another thread may be holding open the FD
    			// that we used to write the executable (see https://go.dev/issue/22315).
    			// Since the descriptor should have CLOEXEC set, the problem should
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  5. 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)
  6. src/go/types/stmt.go

    	type Expr = ast.Expr
    	type identType = ast.Ident
    	identName := func(n *identType) string { return n.Name }
    	sKey, sValue := s.Key, s.Value
    	var sExtra ast.Expr = nil // (used only in types2 fork)
    	isDef := s.Tok == token.DEFINE
    	rangeVar := s.X
    	noNewVarPos := inNode(s, s.TokPos)
    
    	// Everything from here on is shared between cmd/compile/internal/types2 and go/types.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top