Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ValidateEndpointSlices (0.52 sec)

  1. pkg/proxy/config/config_test.go

    	handler.ValidateEndpointSlices(t, endpoints)
    	handler2.ValidateEndpointSlices(t, endpoints)
    
    	// Remove "bar" endpoints
    	fakeWatch.Delete(endpoints2)
    	endpoints = []*discoveryv1.EndpointSlice{endpoints1v2, endpoints3}
    	handler.ValidateEndpointSlices(t, endpoints)
    	handler2.ValidateEndpointSlices(t, endpoints)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. pkg/proxy/config/api_test.go

    	// Add the first endpoints
    	fakeWatch.Add(endpoints1v1)
    	handler.ValidateEndpointSlices(t, []*discoveryv1.EndpointSlice{endpoints1v1})
    
    	// Add another endpoints
    	fakeWatch.Add(endpoints2)
    	handler.ValidateEndpointSlices(t, []*discoveryv1.EndpointSlice{endpoints1v1, endpoints2})
    
    	// Modify endpoints1
    	fakeWatch.Modify(endpoints1v2)
    	handler.ValidateEndpointSlices(t, []*discoveryv1.EndpointSlice{endpoints1v2, endpoints2})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top