Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 991 for oldR (0.04 sec)

  1. pkg/registry/certificates/certificates/storage/metrics_test.go

    			wantRequested: false,
    			wantHonored:   false,
    		},
    		{
    			name:    "old CSR already has a cert so it is ignored",
    			success: true,
    			obj: &certificates.CertificateSigningRequest{
    				Status: certificates.CertificateSigningRequestStatus{
    					Certificate: createCert(t, time.Hour, caPrivateKey, caCert),
    				},
    			},
    			old: &certificates.CertificateSigningRequest{
    				Spec: certificates.CertificateSigningRequestSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultPluginConfigurationExpander.java

        }
    
        static <T> List<T> map(List<T> list, Function<T, T> mapper) {
            List<T> newList = list;
            for (int i = 0; i < newList.size(); i++) {
                T oldT = newList.get(i);
                T newT = mapper.apply(oldT);
                if (newT != oldT) {
                    if (newList == list) {
                        newList = new ArrayList<>(list);
                    }
                    newList.set(i, newT);
                }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. buildscripts/minio-iam-ldap-upgrade-import-test.sh

    	mc admin service restart old-minio
    
    	mc idp ldap policy attach old-minio readwrite --user=UID=dillon,ou=people,ou=swengg,dc=min,dc=io
    	mc idp ldap policy attach old-minio readwrite --group=CN=project.c,ou=groups,ou=swengg,dc=min,dc=io
    
    	mc idp ldap policy entities old-minio
    
    	mc admin cluster iam export old-minio
    	set +x
    
    	mc admin service stop old-minio
    }
    
    import_iam_content_in_new_minio() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/metrics_test.go

    		desc   string
    		obj    *unstructured.Unstructured
    		old    *unstructured.Unstructured
    		schema apiextensions.JSONSchemaProps
    		iters  int // how many times to validate the same update before checking metric
    		want   string
    	}{
    		{
    			desc: "valid noop update",
    			obj: &unstructured.Unstructured{
    				Object: map[string]interface{}{
    					"foo": "bar",
    				},
    			},
    			old: &unstructured.Unstructured{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. src/internal/runtime/atomic/atomic_amd64.s

    // bool Cas(int32 *val, int32 old, int32 new)
    // Atomically:
    //	if(*val == old){
    //		*val = new;
    //		return 1;
    //	} else
    //		return 0;
    TEXT ·Cas(SB),NOSPLIT,$0-17
    	MOVQ	ptr+0(FP), BX
    	MOVL	old+8(FP), AX
    	MOVL	new+12(FP), CX
    	LOCK
    	CMPXCHGL	CX, 0(BX)
    	SETEQ	ret+16(FP)
    	RET
    
    // bool	·Cas64(uint64 *val, uint64 old, uint64 new)
    // Atomically:
    //	if(*val == old){
    //		*val = new;
    //		return 1;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. src/runtime/atomic_pointer.go

    	}
    	if goexperiment.CgoCheck2 {
    		cgoCheckPtrWrite(ptr, new)
    	}
    	old := unsafe.Pointer(sync_atomic_SwapUintptr((*uintptr)(noescape(unsafe.Pointer(ptr))), uintptr(new)))
    	return old
    }
    
    //go:linkname sync_atomic_CompareAndSwapUintptr sync/atomic.CompareAndSwapUintptr
    func sync_atomic_CompareAndSwapUintptr(ptr *uintptr, old, new uintptr) bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. pkg/registry/storage/csidriver/strategy_test.go

    	}{
    		{
    			name:           "podInfoOnMount feature enabled, before: none, update: enabled",
    			old:            driverWithNothing,
    			update:         driverWithPodInfoOnMountEnabled,
    			wantGeneration: 1,
    		},
    		{
    			name:           "podInfoOnMount feature enabled, before: enabled, update: disabled",
    			old:            driverWithPodInfoOnMountEnabled,
    			update:         driverWithPodInfoOnMountDisabled,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  8. src/internal/runtime/atomic/atomic_s390x.s

    	RET
    
    // func Casint32(ptr *int32, old, new int32) bool
    TEXT ·Casint32(SB), NOSPLIT, $0-17
    	BR	·Cas(SB)
    
    // func Casint64(ptr *int64, old, new int64) bool
    TEXT ·Casint64(SB), NOSPLIT, $0-25
    	BR	·Cas64(SB)
    
    // func Casuintptr(ptr *uintptr, old, new uintptr) bool
    TEXT ·Casuintptr(SB), NOSPLIT, $0-25
    	BR	·Cas64(SB)
    
    // func CasRel(ptr *uint32, old, new uint32) bool
    TEXT ·CasRel(SB), NOSPLIT, $0-17
    	BR	·Cas(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. src/runtime/slice.go

    //go:linkname reflect_growslice reflect.growslice
    func reflect_growslice(et *_type, old slice, num int) slice {
    	// Semantically equivalent to slices.Grow, except that the caller
    	// is responsible for ensuring that old.len+num > old.cap.
    	num -= old.cap - old.len // preserve memory of old[old.len:old.cap]
    	new := growslice(old.array, old.cap+num, old.cap, num, et)
    	// growslice does not zero out new[old.cap:new.len] since it assumes that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. src/runtime/lfstack.go

    		throw("lfstack.push")
    	}
    	for {
    		old := atomic.Load64((*uint64)(head))
    		node.next = old
    		if atomic.Cas64((*uint64)(head), old, new) {
    			break
    		}
    	}
    }
    
    func (head *lfstack) pop() unsafe.Pointer {
    	for {
    		old := atomic.Load64((*uint64)(head))
    		if old == 0 {
    			return nil
    		}
    		node := lfstackUnpack(old)
    		next := atomic.Load64(&node.next)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top