Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 60 for mp (0.02 sec)

  1. src/runtime/tls_stub.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build (windows && !amd64) || !windows
    
    package runtime
    
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 260 bytes
    - Viewed (0)
  2. src/runtime/tracestatus.go

    		// _Gsyscall is the tracer's signal that the P its bound to is also in a syscall,
    		// so we need to emit a status that matches. See #64318.
    		if w.mp.p.ptr() == pp && w.mp.curg != nil && readgstatus(w.mp.curg)&^_Gscan == _Gsyscall {
    			status = traceProcSyscall
    		}
    	case _Psyscall:
    		status = traceProcSyscall
    	default:
    		throw("attempt to trace invalid or unsupported P status")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. misc/ios/detect.go

    	fmt.Println("# will be overwritten when running Go programs.")
    	for _, mp := range mps {
    		fmt.Println()
    		f, err := os.CreateTemp("", "go_ios_detect_")
    		check(err)
    		fname := f.Name()
    		defer os.Remove(fname)
    
    		out := output(parseMobileProvision(mp))
    		_, err = f.Write(out)
    		check(err)
    		check(f.Close())
    
    		cert, err := plistExtract(fname, "DeveloperCertificates:0")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:30 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. tools/bug-report/pkg/filter/filter.go

    ) (sets.String, error) {
    	for pe, n := range node {
    		np := append(path, pe)
    		if nn, ok := n.(map[string]any); ok {
    			// non-leaf node
    			mp, err := getMatchingPathsForSpecImpl(config, cluster, nn, np, matchingPaths)
    			if err != nil {
    				return nil, err
    			}
    			matchingPaths = matchingPaths.Union(mp)
    			continue
    		}
    		// container name leaf
    		cn, ok := n.(string)
    		if !ok && n != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 23:42:29 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  5. pkg/volume/util/hostutil/fake_hostutil.go

    // checking if is listed as a device in the in-memory mountpoint table.
    func (hu *FakeHostUtil) DeviceOpened(pathname string) (bool, error) {
    	hu.mutex.Lock()
    	defer hu.mutex.Unlock()
    
    	for _, mp := range hu.MountPoints {
    		if mp.Device == pathname {
    			return true, nil
    		}
    	}
    	return false, nil
    }
    
    // PathIsDevice always returns true
    func (hu *FakeHostUtil) PathIsDevice(pathname string) (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 13:32:38 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. src/runtime/testdata/testprogcgo/pprof_callback.go

    }
    
    func CgoPprofCallback() {
    	// Issue 50936 was a crash in the SIGPROF handler when the signal
    	// arrived during the exitsyscall following a cgocall(back) in dropg or
    	// execute, when updating mp.curg.
    	//
    	// These are reachable only when exitsyscall finds no P available. Thus
    	// we make C calls from significantly more Gs than there are available
    	// Ps. Lots of runnable work combined with >20us spent in callGo makes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 08 15:44:05 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  7. src/go/doc/comment/markdown.go

    // See the [Printer] documentation for ways to customize the Markdown output.
    func (p *Printer) Markdown(d *Doc) []byte {
    	mp := &mdPrinter{
    		Printer:       p,
    		headingPrefix: strings.Repeat("#", p.headingLevel()) + " ",
    	}
    
    	var out bytes.Buffer
    	for i, x := range d.Content {
    		if i > 0 {
    			out.WriteByte('\n')
    		}
    		mp.block(&out, x)
    	}
    	return out.Bytes()
    }
    
    // block prints the block x to out.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:48 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/base/base.go

    					goal, oldGogc, count, mp, gcConcurrency)
    			} else {
    				inUse := sample[ALLOCS].Value.Uint64() - sample[FREES].Value.Uint64()
    				overPct := 100 * (int(inUse) - int(requestedHeapGoal)) / int(requestedHeapGoal)
    				fmt.Fprintf(os.Stderr, "GCAdjust: AtExit goal %d gogc %d count %d maxprocs %d gcConcurrency %d overPct %d\n",
    					goal, oldGogc, count, mp, gcConcurrency, overPct)
    
    			}
    		})
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:18:34 UTC 2023
    - 8K bytes
    - Viewed (0)
  9. src/runtime/traceevent.go

    	w := tl.writer()
    	if pp := tl.mp.p.ptr(); pp != nil && !pp.trace.statusWasTraced(tl.gen) && pp.trace.acquireStatus(tl.gen) {
    		w = w.writeProcStatus(uint64(pp.id), procStatus, pp.trace.inSweep)
    	}
    	if gp := tl.mp.curg; gp != nil && !gp.trace.statusWasTraced(tl.gen) && gp.trace.acquireStatus(tl.gen) {
    		w = w.writeGoStatus(uint64(gp.goid), int64(tl.mp.procid), goStatus, gp.inMarkAssist, 0 /* no stack */)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. src/runtime/sys_linux_mipsx.s

    	// even for syscalls with less than 8 arguments. Reserve 32 bytes of new
    	// stack so that any syscall invoked immediately in the new thread won't fail.
    	ADD	$-32, R5
    
    	// Copy mp, gp, fn off parent stack for use by child.
    	MOVW	mp+8(FP), R16
    	MOVW	gp+12(FP), R17
    	MOVW	fn+16(FP), R18
    
    	MOVW	$1234, R1
    
    	MOVW	R16, 0(R5)
    	MOVW	R17, 4(R5)
    	MOVW	R18, 8(R5)
    
    	MOVW	R1, 12(R5)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 20:57:24 UTC 2022
    - 9.7K bytes
    - Viewed (0)
Back to top