Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 66 for Cur (0.03 sec)

  1. pkg/xds/server.go

    	// Envoy can send two DiscoveryRequests with same version and nonce.
    	// when it detects a new resource. We should respond if they change.
    	prev := sets.New(previousResources...)
    	cur := sets.New(request.ResourceNames...)
    	removed := prev.Difference(cur)
    	added := cur.Difference(prev)
    
    	// We should always respond "alwaysRespond" marked requests to let Envoy finish warming
    	// even though Nonce match and it looks like an ACK.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.go

    			result += ", " + r1.String() + r.a.String()
    		} else if r.cnt > 2 {
    			if (uint16(r.cnt) + ((uint16(r.r) - uint16(V0)) & 31)) > 32 {
    				for i := 1; i < int(r.cnt); i++ {
    					cur := V0 + Reg((uint16(r.r)-uint16(V0)+uint16(i))&31)
    					result += ", " + cur.String() + r.a.String()
    				}
    			} else {
    				r1 := V0 + Reg((uint16(r.r)-uint16(V0)+uint16(r.cnt)-1)&31)
    				result += "-" + r1.String() + r.a.String()
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/main/java/jcifs/smb/SmbRandomAccessFile.java

                case -1:
                case '\n':
                    eol = true;
                    break;
                case '\r':
                    eol = true;
                    long cur = this.fp;
                    if ( read() != '\n' ) {
                        this.fp = cur;
                    }
                    break;
                default:
                    input.append((char) c);
                    break;
                }
            }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 08 12:01:33 UTC 2020
    - 18.5K bytes
    - Viewed (1)
  9. 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)
  10. src/main/java/jcifs/ntlmssp/Type3Message.java

                // should provide MIC
                this.micRequired = true;
                this.mic = new byte[16];
                int curFlags = 0;
                AvFlags cur = (AvFlags) AvPairs.get(serverAvPairs, AvPair.MsvAvFlags);
                if ( cur != null ) {
                    curFlags = cur.getFlags();
                }
                curFlags |= 0x2; // MAC present
                AvPairs.replace(serverAvPairs, new AvFlags(curFlags));
            }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 30.6K bytes
    - Viewed (0)
Back to top