Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 796 for oldR (0.06 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. 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)
  3. src/runtime/sys_freebsd_amd64.s

    	MOVQ	sig+0(FP), DI		// arg 1 sig
    	MOVQ	new+8(FP), SI		// arg 2 act
    	MOVQ	old+16(FP), DX		// arg 3 oact
    	MOVL	$SYS_sigaction, AX
    	SYSCALL
    	JCC	2(PC)
    	MOVL	$-1, AX
    	MOVL	AX, ret+24(FP)
    	RET
    
    TEXT runtime·callCgoSigaction(SB),NOSPLIT,$16
    	MOVQ	sig+0(FP), DI		// arg 1 sig
    	MOVQ	new+8(FP), SI		// arg 2 act
    	MOVQ	old+16(FP), DX		// arg 3 oact
    	MOVQ	_cgo_sigaction(SB), AX
    	MOVQ	SP, BX			// callee-saved
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  4. src/fmt/example_test.go

    	// Kim is 22 years old.
    }
    
    func ExamplePrintln() {
    	const name, age = "Kim", 22
    	fmt.Println(name, "is", age, "years old.")
    
    	// It is conventional not to worry about any
    	// error returned by Println.
    
    	// Output:
    	// Kim is 22 years old.
    }
    
    func ExamplePrintf() {
    	const name, age = "Kim", 22
    	fmt.Printf("%s is %d years old.\n", name, age)
    
    	// It is conventional not to worry about any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 21:03:10 UTC 2019
    - 11.8K bytes
    - Viewed (0)
  5. 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)
  6. pkg/controller/deployment/rolling.go

    	}
    	logger.V(4).Info("Cleaned up unhealthy replicas from old RSes", "count", cleanupCount)
    
    	// Scale down old replica sets, need check maxUnavailable to ensure we can scale down
    	allRSs = append(oldRSs, newRS)
    	scaledDownCount, err := dc.scaleDownOldReplicaSetsForRollingUpdate(ctx, allRSs, oldRSs, deployment)
    	if err != nil {
    		return false, nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  7. 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)
  8. src/internal/runtime/atomic/types.go

    //
    //go:nosplit
    func (u *UnsafePointer) CompareAndSwapNoWB(old, new unsafe.Pointer) bool {
    	return Casp1(&u.value, old, new)
    }
    
    // CompareAndSwap atomically compares u's value with old,
    // and if they're equal, swaps u's value with new.
    // It reports whether the swap ran.
    func (u *UnsafePointer) CompareAndSwap(old, new unsafe.Pointer) bool {
    	return casPointer(&u.value, old, new)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/abt/avlint32_test.go

    		}
    		for j, old := range history {
    			s, i := old.wellFormed()
    			if s != "" {
    				te.Errorf("Tree consistency problem %s at old after DeleteMin, old=\n%stree=\n%v", s, old.DebugString(), t.DebugString())
    				return
    			}
    			if i != len(x)-j {
    				te.Errorf("Wrong old tree size %v, expected %v after DeleteMin, old=\n%vtree\n%v", i, len(x)-j, old.DebugString(), t.DebugString())
    				return
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 11 16:34:41 UTC 2022
    - 20.3K bytes
    - Viewed (0)
  10. src/internal/trace/testtrace/validation.go

    			}
    			state, ok := v.gs[id]
    			if ok {
    				if old != state.state {
    					e.Errorf("bad old state for goroutine %d: got %s, want %s", id, old, state.state)
    				}
    				state.state = new
    			} else {
    				if old != trace.GoUndetermined && old != trace.GoNotExist {
    					e.Errorf("bad old state for unregistered goroutine %d: %s", id, old)
    				}
    				state = &goState{state: new}
    				v.gs[id] = state
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top