Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Cur (0.02 sec)

  1. pkg/controller/daemon/daemon_controller.go

    // When a pod is updated, figure out what sets manage it and wake them
    // up. If the labels of the pod have changed we need to awaken both the old
    // and new set. old and cur must be *v1.Pod types.
    func (dsc *DaemonSetsController) 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
    - 51.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFile.java

                cr.setShareAccess(shareAccess);
    
                ServerMessageBlock2Request<?> cur = cr;
    
                if ( first != null ) {
                    cr.chain(first);
                    cur = first;
    
                    for ( ServerMessageBlock2Request<?> req : others ) {
                        cur.chain(req);
                        cur = req;
                    }
                }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  3. pkg/controller/job/job_controller.go

    // When a pod is updated, figure out what job/s manage it and wake them up.
    // If the labels of the pod have changed we need to awaken both the old
    // and new job. old and cur must be *v1.Pod types.
    func (jm *Controller) updatePod(logger klog.Logger, old, cur interface{}) {
    	curPod := cur.(*v1.Pod)
    	oldPod := old.(*v1.Pod)
    	recordFinishedPodWithTrackingFinalizer(oldPod, curPod)
    	if curPod.ResourceVersion == oldPod.ResourceVersion {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener.go

    	// resolution type, since we collapse all HTTP listeners into a
    	// single 0.0.0.0:port listener and use vhosts to distinguish
    	// individual http services in that port
    	if cur, exists := listenerMap[listenerMapKey]; exists {
    		currentListenerEntry = cur
    		// NOTE: This is not a conflict. This is simply filtering the
    		// services for a given listener explicitly.
    		// When the user declares their own ports in Sidecar.egress
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. pkg/controller/podautoscaler/horizontal.go

    	}
    
    	<-ctx.Done()
    }
    
    // obj could be an *v1.HorizontalPodAutoscaler, or a DeletionFinalStateUnknown marker item.
    func (a *HorizontalController) updateHPA(old, cur interface{}) {
    	a.enqueueHPA(cur)
    }
    
    // obj could be an *v1.HorizontalPodAutoscaler, or a DeletionFinalStateUnknown marker item.
    func (a *HorizontalController) enqueueHPA(obj interface{}) {
    	key, err := controller.KeyFunc(obj)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  6. src/runtime/mheap.go

    // unlinkAndNext removes the current special from the list and moves
    // the iterator to the next special. It returns the unlinked special.
    func (i *specialsIter) unlinkAndNext() *special {
    	cur := i.s
    	i.s = cur.next
    	*i.pprev = i.s
    	return cur
    }
    
    // freeSpecial performs any cleanup on special s and deallocates it.
    // s must already be unlinked from the specials list.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
Back to top