Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 49 for mp (0.04 sec)

  1. src/internal/coverage/test/roundtrip_test.go

    	}
    	pmp := dec.ModulePath()
    	if pmp != mp {
    		t.Errorf("dec.ModulePath(): got %s want %s", pmp, mp)
    	}
    }
    
    func TestMetaDataEncoderDecoder(t *testing.T) {
    	// Test encode path.
    	pp := "foo/bar/pkg"
    	pn := "pkg"
    	mp := "barmod"
    	b, err := encodemeta.NewCoverageMetaDataBuilder(pp, pn, mp)
    	if err != nil {
    		t.Fatalf("making builder: %v", err)
    	}
    	f1 := coverage.FuncDesc{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 21:42:05 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  2. src/internal/types/testdata/check/const1.go

    // constant conversions
    
    package const1
    
    import "math"
    
    const(
    	mi = ^int(0)
    	mu = ^uint(0)
    	mp = ^uintptr(0)
    
    	logSizeofInt     = uint(mi>>8&1 + mi>>16&1 + mi>>32&1)
    	logSizeofUint    = uint(mu>>8&1 + mu>>16&1 + mu>>32&1)
    	logSizeofUintptr = uint(mp>>8&1 + mp>>16&1 + mp>>32&1)
    )
    
    const (
    	minInt8 = -1<<(8<<iota - 1)
    	minInt16
    	minInt32
    	minInt64
    	minInt = -1<<(8<<logSizeofInt - 1)
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 16:11:16 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. internal/http/lambda-headers.go

    	AmzFwdHeaderObjectLockLegalHold   = "x-amz-fwd-header-x-amz-object-lock-legal-hold"
    	AmzFwdHeaderObjectLockRetainUntil = "x-amz-fwd-header-x-amz-object-lock-retain-until-date"
    	AmzFwdHeaderMPPartsCount          = "x-amz-fwd-header-x-amz-mp-parts-count"
    	AmzFwdHeaderReplicationStatus     = "x-amz-fwd-header-x-amz-replication-status"
    	AmzFwdHeaderSSE                   = "x-amz-fwd-header-x-amz-server-side-encryption"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 07 16:12:41 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top