Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 44 for Cur (0.02 sec)

  1. pkg/controller/ttlafterfinished/ttlafterfinished_controller.go

    	if job.DeletionTimestamp == nil && needsCleanup(job) {
    		tc.enqueue(logger, job)
    	}
    
    }
    
    func (tc *Controller) updateJob(logger klog.Logger, old, cur interface{}) {
    	job := cur.(*batch.Job)
    	logger.V(4).Info("Updating job", "job", klog.KObj(job))
    
    	if job.DeletionTimestamp == nil && needsCleanup(job) {
    		tc.enqueue(logger, job)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 23:59:28 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. pkg/controller/disruption/disruption.go

    	logger.V(4).Info("Add DB", "podDisruptionBudget", klog.KObj(pdb))
    	dc.enqueuePdb(logger, pdb)
    }
    
    func (dc *DisruptionController) updateDB(logger klog.Logger, old, cur interface{}) {
    	// TODO(mml) ignore updates where 'old' is equivalent to 'cur'.
    	pdb := cur.(*policy.PodDisruptionBudget)
    	logger.V(4).Info("Update DB", "podDisruptionBudget", klog.KObj(pdb))
    	dc.enqueuePdb(logger, pdb)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  3. pkg/controller/replicaset/replica_set.go

    // up. If the labels of the pod have changed we need to awaken both the old
    // and new replica set. old and cur must be *v1.Pod types.
    func (rsc *ReplicaSetController) updatePod(logger klog.Logger, old, cur interface{}) {
    	curPod := cur.(*v1.Pod)
    	oldPod := old.(*v1.Pod)
    	if curPod.ResourceVersion == oldPod.ResourceVersion {
    		// Periodic resync will send update events for all known pods.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/crdclient/client.go

    			cl.queue.Push(func() error {
    				cl.onEvent(resourceGVK, nil, obj, model.EventAdd)
    				return nil
    			})
    		},
    		UpdateFunc: func(old, cur controllers.Object) {
    			incrementEvent(kind, "update")
    			cl.queue.Push(func() error {
    				cl.onEvent(resourceGVK, old, cur, model.EventUpdate)
    				return nil
    			})
    		},
    		DeleteFunc: func(obj controllers.Object) {
    			incrementEvent(kind, "delete")
    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. pilot/pkg/serviceregistry/aggregate/controller.go

    	}
    	return res
    }
    
    func (c *Controller) AdditionalPodSubscriptions(proxy *model.Proxy, addr, cur sets.String) sets.String {
    	if !features.EnableAmbient {
    		return nil
    	}
    	res := sets.New[string]()
    	for _, p := range c.GetRegistries() {
    		res = res.Merge(p.AdditionalPodSubscriptions(proxy, addr, cur))
    	}
    	return res
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  6. src/cmd/go/internal/envcmd/env.go

    	// get returns the value for key after applying add and del and
    	// reports whether it changed. cur should be the current value
    	// (i.e., before applying changes) and def should be the default
    	// value (i.e., when no environment variables are provided at all).
    	get := func(key, cur, def string) (string, bool) {
    		if val, ok := add[key]; ok {
    			return val, true
    		}
    		if del[key] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  7. pkg/controller/clusterroleaggregation/clusterroleaggregation_controller.go

    			},
    		),
    	}
    	c.syncHandler = c.syncClusterRole
    
    	clusterRoleInformer.Informer().AddEventHandler(cache.ResourceEventHandlerFuncs{
    		AddFunc: func(obj interface{}) {
    			c.enqueue()
    		},
    		UpdateFunc: func(old, cur interface{}) {
    			c.enqueue()
    		},
    		DeleteFunc: func(uncast interface{}) {
    			c.enqueue()
    		},
    	})
    	return c
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/ztypes_zos_s390x.go

    	Majflt   int64
    	Nswap    int64
    	Inblock  int64
    	Oublock  int64
    	Msgsnd   int64
    	Msgrcv   int64
    	Nsignals int64
    	Nvcsw    int64
    	Nivcsw   int64
    }
    
    type Rlimit struct {
    	Cur uint64
    	Max uint64
    }
    
    // { int, short, short } in poll.h
    type PollFd struct {
    	Fd      int32
    	Events  int16
    	Revents int16
    }
    
    type Stat_t struct { //Linux Definition
    	Dev     uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  9. pkg/controller/resourcequota/resource_quota_controller.go

    	options.ResourceQuotaInformer.Informer().AddEventHandlerWithResyncPeriod(
    		cache.ResourceEventHandlerFuncs{
    			AddFunc: func(obj interface{}) {
    				rq.addQuota(logger, obj)
    			},
    			UpdateFunc: func(old, cur interface{}) {
    				// We are only interested in observing updates to quota.spec to drive updates to quota.status.
    				// We ignore all updates to quota.Status because they are all driven by this controller.
    				// IMPORTANT:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  10. pkg/controller/cronjob/cronjob_controllerv2.go

    // is updated and wake them up. If the anything of the Job have changed, we need to
    // awaken both the old and new CronJob. old and cur must be *batchv1.Job
    // types.
    func (jm *ControllerV2) updateJob(old, cur interface{}) {
    	curJob := cur.(*batchv1.Job)
    	oldJob := old.(*batchv1.Job)
    	if curJob.ResourceVersion == oldJob.ResourceVersion {
    		// Periodic resync will send update events for all known jobs.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
Back to top