Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 106 for mp (0.06 sec)

  1. 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)
  2. src/runtime/runtime1.go

    //go:nosplit
    func acquirem() *m {
    	gp := getg()
    	gp.m.locks++
    	return gp.m
    }
    
    //go:nosplit
    func releasem(mp *m) {
    	gp := getg()
    	mp.locks--
    	if mp.locks == 0 && gp.preempt {
    		// restore the preemption request in case we've cleared it in newstack
    		gp.stackguard0 = stackPreempt
    	}
    }
    
    // reflect_typelinks is meant for package reflect,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  3. pilot/test/xdstest/extract.go

    		return "nil"
    	}
    	s, err := protomarshal.ToJSONWithIndent(p, "  ")
    	if err != nil {
    		t.Fatal(err)
    	}
    	return s
    }
    
    func MapKeys[M ~map[string]V, V any](mp M) []string {
    	res := maps.Keys(mp)
    	sort.Strings(res)
    	return res
    }
    
    func TypeName[T proto.Message]() string {
    	ft := new(T)
    	return resource.APITypePrefix + string((*ft).ProtoReflect().Descriptor().FullName())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  4. src/runtime/runtime2.go

    type muintptr uintptr
    
    //go:nosplit
    func (mp muintptr) ptr() *m { return (*m)(unsafe.Pointer(mp)) }
    
    //go:nosplit
    func (mp *muintptr) set(m *m) { *mp = muintptr(unsafe.Pointer(m)) }
    
    // setMNoWB performs *mp = new without a write barrier.
    // For times when it's impractical to use an muintptr.
    //
    //go:nosplit
    //go:nowritebarrier
    func setMNoWB(mp **m, new *m) {
    	(*muintptr)(unsafe.Pointer(mp)).set(new)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  5. src/runtime/mcache.go

    //
    // Returns nil if we're not bootstrapping or we don't have a P. The caller's
    // P must not change, so we must be in a non-preemptible state.
    func getMCache(mp *m) *mcache {
    	// Grab the mcache, since that's where stats live.
    	pp := mp.p.ptr()
    	var c *mcache
    	if pp == nil {
    		// We will be called without a P while bootstrapping,
    		// in which case we use mcache0, which is set in mallocinit.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. src/runtime/sys_linux_ppc64x.s

    	MOVW	R3, 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), R3
    	MOVD	stk+8(FP), R4
    
    	// Copy mp, gp, fn off parent stack for use by child.
    	// Careful: Linux system call clobbers ???.
    	MOVD	mp+16(FP), R7
    	MOVD	gp+24(FP), R8
    	MOVD	fn+32(FP), R12
    
    	MOVD	R7, -8(R4)
    	MOVD	R8, -16(R4)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  7. pilot/pkg/xds/sds.go

    				TlsCertificate: tlsCertificate,
    			},
    		})
    	}
    	return &discovery.Resource{
    		Name:     name,
    		Resource: res,
    	}
    }
    
    func containsAny(mp sets.Set[model.ConfigKey], keys []model.ConfigKey) bool {
    	for _, k := range keys {
    		if _, f := mp[k]; f {
    			return true
    		}
    	}
    	return false
    }
    
    // relatedConfigs maps a single resource to a list of relevant resources. This is used for cache invalidation
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. cmd/object-handlers_test.go

    		{"small-1", []int64{509}, nil},
    
    		{"mp-1", []int64{5 * oneMiB, 1}, nil},
    		{"mp-2", []int64{5487701, 5487799, 3}, nil},
    
    		// Encrypted object
    		{"enc-nothing", []int64{0}, mapCopy(metaWithSSEC)},
    		{"enc-small-1", []int64{509}, mapCopy(metaWithSSEC)},
    
    		{"enc-mp-1", []int64{5 * oneMiB, 1}, mapCopy(metaWithSSEC)},
    		{"enc-mp-2", []int64{5487701, 5487799, 3}, mapCopy(metaWithSSEC)},
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  9. cmd/iam-etcd-store.go

    	return ies.saveIAMConfig(ctx, &p, getPolicyDocPath(policyName))
    }
    
    func (ies *IAMEtcdStore) saveMappedPolicy(ctx context.Context, name string, userType IAMUserType, isGroup bool, mp MappedPolicy, opts ...options) error {
    	return ies.saveIAMConfig(ctx, mp, getMappedPolicyPath(name, userType, isGroup), opts...)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. internal/http/headers.go

    	MinIOSnowballPrefix = "X-Amz-Meta-Minio-Snowball-Prefix"
    
    	// Object lock enabled
    	AmzObjectLockEnabled = "x-amz-bucket-object-lock-enabled"
    
    	// Multipart parts count
    	AmzMpPartsCount = "x-amz-mp-parts-count"
    
    	// Object date/time of expiration
    	AmzExpiration = "x-amz-expiration"
    
    	// Dummy putBucketACL
    	AmzACL = "x-amz-acl"
    
    	// Signature V4 related constants.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:44:56 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top