Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ConfigsUpdated (0.18 sec)

  1. pilot/pkg/model/push_context.go

    		Reason: reason,
    	}
    
    	// Do not merge when any one is empty
    	if len(pr.ConfigsUpdated) > 0 && len(other.ConfigsUpdated) > 0 {
    		merged.ConfigsUpdated = make(sets.Set[ConfigKey], len(pr.ConfigsUpdated)+len(other.ConfigsUpdated))
    		merged.ConfigsUpdated.Merge(pr.ConfigsUpdated)
    		merged.ConfigsUpdated.Merge(other.ConfigsUpdated)
    	}
    
    	return merged
    }
    
    func (pr *PushRequest) IsRequest() bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  2. pilot/pkg/model/push_context_test.go

    			&PushRequest{
    				Full:  true,
    				Push:  push0,
    				Start: t0,
    				ConfigsUpdated: sets.Set[ConfigKey]{
    					{Kind: kind.Kind(1), Namespace: "ns1"}: {},
    				},
    				Reason: NewReasonStats(ServiceUpdate, ServiceUpdate),
    			},
    			&PushRequest{
    				Full:  false,
    				Push:  push1,
    				Start: t1,
    				ConfigsUpdated: sets.Set[ConfigKey]{
    					{Kind: kind.Kind(2), Namespace: "ns2"}: {},
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
Back to top