Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for LastPushTime (0.11 sec)

  1. pilot/pkg/xds/ads.go

    		Reason: model.NewReasonStats(model.ProxyRequest),
    
    		// The usage of LastPushTime (rather than time.Now()), is critical here for correctness; This time
    		// is used by the XDS cache to determine if a entry is stale. If we use Now() with an old push context,
    		// we may end up overriding active cache entries with stale ones.
    		Start: con.proxy.LastPushTime,
    		Delta: delta,
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  2. pilot/pkg/xds/delta.go

    		Reason: model.NewReasonStats(model.ProxyRequest),
    
    		// The usage of LastPushTime (rather than time.Now()), is critical here for correctness; This time
    		// is used by the XDS cache to determine if a entry is stale. If we use Now() with an old push context,
    		// we may end up overriding active cache entries with stale ones.
    		Start: con.proxy.LastPushTime,
    		Delta: model.ResourceDelta{
    			// Record sub/unsub, but drop synthetic wildcard info
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  3. pilot/pkg/model/context.go

    	// required, as the computed sidecar scope version would not monotonically increase.
    	LastPushContext *PushContext
    	// LastPushTime records the time of the last push. This is used in conjunction with
    	// LastPushContext; the XDS cache depends on knowing the time of the PushContext to determine if a
    	// key is stale or not.
    	LastPushTime time.Time
    }
    
    type WatchedResource = xds.WatchedResource
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (1)
Back to top