Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 104 for mp (0.02 sec)

  1. src/runtime/sys_linux_riscv64.s

    	MOVW	val3+32(FP), A5
    	MOV	$SYS_futex, A7
    	ECALL
    	MOVW	A0, ret+40(FP)
    	RET
    
    // func clone(flags int32, stk, mp, gp, fn unsafe.Pointer) int32
    TEXT runtime·clone(SB),NOSPLIT|NOFRAME,$0
    	MOVW	flags+0(FP), A0
    	MOV	stk+8(FP), A1
    
    	// Copy mp, gp, fn off parent stack for use by child.
    	MOV	mp+16(FP), T0
    	MOV	gp+24(FP), T1
    	MOV	fn+32(FP), T2
    
    	MOV	T0, -8(A1)
    	MOV	T1, -16(A1)
    	MOV	T2, -24(A1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  2. src/runtime/symtab.go

    	// tend to have the same recursive functions over and over,
    	// or repetitive stacks between goroutines.
    	var checkVal int32
    	var checkPC uintptr
    	ck := pcvalueCacheKey(targetpc)
    	{
    		mp := acquirem()
    		cache := &mp.pcvalueCache
    		// The cache can be used by the signal handler on this M. Avoid
    		// re-entrant use of the cache. The signal handler can also write inUse,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/list.go

    		var match func(string) bool
    		if arg == "all" {
    			match = func(p string) bool { return !gover.IsToolchain(p) }
    		} else if strings.Contains(arg, "...") {
    			mp := pkgpattern.MatchPattern(arg)
    			match = func(p string) bool { return mp(p) && !gover.IsToolchain(p) }
    		} else {
    			var v string
    			if mg == nil {
    				var ok bool
    				v, ok = rs.rootSelected(arg)
    				if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 22:43:50 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  4. src/runtime/sys_linux_loong64.s

    	SYSCALL
    	MOVW	R4, ret+40(FP)
    	RET
    
    // int64 clone(int32 flags, void *stk, M *mp, G *gp, void (*fn)(void));
    TEXT runtime·clone(SB),NOSPLIT|NOFRAME,$0
    	MOVW	flags+0(FP), R4
    	MOVV	stk+8(FP), R5
    
    	// Copy mp, gp, fn off parent stack for use by child.
    	// Careful: Linux system call clobbers ???.
    	MOVV	mp+16(FP), R23
    	MOVV	gp+24(FP), R24
    	MOVV	fn+32(FP), R25
    
    	MOVV	R23, -8(R5)
    	MOVV	R24, -16(R5)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 20:58:13 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/route/route.go

    		}
    	}
    
    	if in.Mirror != nil {
    		if mp := MirrorPercent(in); mp != nil {
    			action.RequestMirrorPolicies = append(action.RequestMirrorPolicies,
    				TranslateRequestMirrorPolicy(in.Mirror, serviceRegistry[host.Name(in.Mirror.Host)], listenerPort, mp))
    		}
    	}
    	for _, mirror := range in.Mirrors {
    		if mp := MirrorPercentByPolicy(mirror); mp != nil && mirror.Destination != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  6. pkg/monitoring/monitoring.go

    	prom, err := otelprom.New(promOpts...)
    	if err != nil {
    		return nil, err
    	}
    
    	opts := []metric.Option{metric.WithReader(prom)}
    	opts = append(opts, knownMetrics.toHistogramViews()...)
    	mp := metric.NewMeterProvider(opts...)
    	otel.SetMeterProvider(mp)
    	handler := promhttp.HandlerFor(gatherer, promhttp.HandlerOpts{})
    	return handler, nil
    }
    
    // A Metric collects numerical observations.
    type Metric interface {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  7. cmd/site-replication.go

    		addPolicy := func(t IAMUserType, mp *xsync.MapOf[string, MappedPolicy]) {
    			mp.Range(func(k string, mp MappedPolicy) bool {
    				info.UserPolicies[k] = madmin.SRPolicyMapping{
    					IsGroup:     false,
    					UserOrGroup: k,
    					UserType:    int(t),
    					Policy:      mp.Policies,
    					UpdatedAt:   mp.UpdatedAt,
    				}
    				return true
    			})
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  8. src/runtime/crash_unix_test.go

    	var want, got int64
    	var wg sync.WaitGroup
    	ready := make(chan *runtime.M)
    	wg.Add(1)
    	go func() {
    		runtime.LockOSThread()
    		want, got = runtime.WaitForSigusr1(r, w, func(mp *runtime.M) {
    			ready <- mp
    		})
    		runtime.UnlockOSThread()
    		wg.Done()
    	}()
    	waitingM := <-ready
    	runtime.SendSigusr1(waitingM)
    
    	timer := time.AfterFunc(time.Second, func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 20:11:47 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  9. pilot/pkg/model/telemetry.go

    					// We should tweak this to collapse to this mode where possible
    					for _, metricName := range metricsNames {
    						if _, f := mp[mode]; !f {
    							mp[mode] = map[string]metricOverride{}
    						}
    						override := mp[mode][metricName]
    						if o.Disabled != nil {
    							override.Disabled = o.Disabled
    						}
    						for k, v := range o.TagOverrides {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Client-TLSv13-ClientCert-Ed25519

    00000330  16 e9 70 89 e7 98 a8 f3  4a 81 d4 d8 ff 5f 48 6e  |..p.....J...._Hn|
    00000340  60 c6 4a 07 c5 57 9c 22  25 3a 9f bf 7e 71 f3 0d  |`.J..W."%:..~q..|
    00000350  71 e5 a5 d4 2b 6d 70 2f  c5 a3 17 03 03 00 99 b9  |q...+mp/........|
    00000360  15 c7 70 bc 06 75 26 50  0f 22 90 43 99 25 0d 0f  |..p..u&P.".C.%..|
    00000370  05 d3 ce e7 3c 53 fb 01  d4 d2 e8 fb b7 49 87 03  |....<S.......I..|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top