Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 780 for oldR (0.09 sec)

  1. pkg/controller/volume/pvcprotection/pvc_protection_controller.go

    			e.podAddedDeletedUpdated(logger, nil, obj, false)
    		},
    		DeleteFunc: func(obj interface{}) {
    			e.podAddedDeletedUpdated(logger, nil, obj, true)
    		},
    		UpdateFunc: func(old, new interface{}) {
    			e.podAddedDeletedUpdated(logger, old, new, false)
    		},
    	})
    
    	return e, nil
    }
    
    // Run runs the controller goroutines.
    func (c *Controller) Run(ctx context.Context, workers int) {
    	defer utilruntime.HandleCrash()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 14K bytes
    - Viewed (0)
  2. src/runtime/os_linux.go

    func sigtramp() // Called via C ABI
    func cgoSigtramp()
    
    //go:noescape
    func sigaltstack(new, old *stackt)
    
    //go:noescape
    func setitimer(mode int32, new, old *itimerval)
    
    //go:noescape
    func timer_create(clockid int32, sevp *sigevent, timerid *int32) int32
    
    //go:noescape
    func timer_settime(timerid int32, flags int32, new, old *itimerspec) int32
    
    //go:noescape
    func timer_delete(timerid int32) int32
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  3. src/runtime/sys_freebsd_arm.s

    				// arg 1 - pid, now in R0
    	MOVW sig+0(FP), R1	// arg 2 - signal
    	MOVW $SYS_kill, R7
    	SWI $0
    	RET
    
    TEXT runtime·setitimer(SB), NOSPLIT|NOFRAME, $0
    	MOVW mode+0(FP), R0
    	MOVW new+4(FP), R1
    	MOVW old+8(FP), R2
    	MOVW $SYS_setitimer, R7
    	SWI $0
    	RET
    
    // func fallback_walltime() (sec int64, nsec int32)
    TEXT runtime·fallback_walltime(SB), NOSPLIT, $32-12
    	MOVW $0, R0 // CLOCK_REALTIME
    	MOVW $8(R13), R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/crdclient/client.go

    func (cl *Client) onEvent(resourceGVK config.GroupVersionKind, old controllers.Object, curr controllers.Object, event model.Event) {
    	currItem := controllers.ExtractObject(curr)
    	if currItem == nil {
    		return
    	}
    
    	currConfig := TranslateObject(currItem, resourceGVK, cl.domainSuffix)
    
    	var oldConfig config.Config
    	if old != nil {
    		oldConfig = TranslateObject(old, resourceGVK, cl.domainSuffix)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "AtomicOr8", argLength: 3, typ: "(Uint8, Mem)", hasSideEffects: true},               // *arg0 |= arg1.  arg2=memory.  Returns old contents of *arg0 and new memory.
    	{name: "AtomicAnd64", argLength: 3, typ: "(Uint64, Mem)", hasSideEffects: true},            // *arg0 &= arg1.  arg2=memory.  Returns old contents of *arg0 and new memory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  6. pkg/registry/apps/replicaset/storage/storage.go

    }
    
    func toScaleUpdateValidation(f rest.ValidateObjectUpdateFunc) rest.ValidateObjectUpdateFunc {
    	return func(ctx context.Context, obj, old runtime.Object) error {
    		newScale, err := scaleFromReplicaSet(obj.(*apps.ReplicaSet))
    		if err != nil {
    			return err
    		}
    		oldScale, err := scaleFromReplicaSet(old.(*apps.ReplicaSet))
    		if err != nil {
    			return err
    		}
    		return f(ctx, newScale, oldScale)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  7. src/runtime/sys_linux_amd64.s

    	// due to stack probes inserted to avoid stack/heap collisions.
    	// See issue #20427.
    
    	MOVQ	SP, R12	// Save old SP; R12 unchanged by C code.
    
    	MOVQ	g_m(R14), BX // BX unchanged by C code.
    
    	// Set vdsoPC and vdsoSP for SIGPROF traceback.
    	// Save the old values on stack and restore them on exit,
    	// so this function is reentrant.
    	MOVQ	m_vdsoPC(BX), CX
    	MOVQ	m_vdsoSP(BX), DX
    	MOVQ	CX, 0(SP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  8. src/internal/trace/summary.go

    		case ResourceGoroutine:
    			id := st.Resource.Goroutine()
    			old, new := st.Goroutine()
    			if old == new {
    				// Skip these events; they're not telling us anything new.
    				break
    			}
    
    			// Handle transition out.
    			g := s.gs[id]
    			switch old {
    			case GoUndetermined, GoNotExist:
    				g = &GoroutineSummary{ID: id, goroutineSummary: &goroutineSummary{}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  9. operator/pkg/apis/istio/v1alpha1/validation/validation.go

    		v, f, _ := tpath.GetFromStructPath(iop, d.old)
    		if f {
    			switch t := v.(type) {
    			// need to do conversion for bool value defined in IstioOperator component spec.
    			case *wrappers.BoolValue:
    				v = t.Value
    			}
    			if v != d.def {
    				messages = append(messages, fmt.Sprintf("! %s is deprecated; use %s instead", firstCharsToLower(d.old), d.new))
    			}
    		}
    	}
    	for _, d := range failHardSettings {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  10. pkg/registry/discovery/endpointslice/strategy_test.go

    						NodeName: ptr.To("node-2"),
    					},
    				},
    			},
    		},
    		{
    			name: "node name gate disabled, set on old and updated EPS",
    			oldEPS: &discovery.EndpointSlice{
    				Endpoints: []discovery.Endpoint{
    					{
    						NodeName: ptr.To("node-1-old"),
    					},
    					{
    						NodeName: ptr.To("node-2-old"),
    					},
    				},
    			},
    			newEPS: &discovery.EndpointSlice{
    				Endpoints: []discovery.Endpoint{
    					{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.3K bytes
    - Viewed (0)
Back to top