Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for withServices (0.52 sec)

  1. pkg/kubelet/cm/devicemanager/manager_test.go

    type containerAllocateResponseBuilderOption func(*containerAllocateResponseBuilder)
    
    // withDevices sets the devices for the containerAllocateResponseBuilder
    func withDevices(devices map[string]string) containerAllocateResponseBuilderOption {
    	return func(b *containerAllocateResponseBuilder) {
    		b.devices = devices
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  2. pilot/pkg/model/policyattachment.go

    	return WorkloadPolicyMatcher{
    		Namespace:      proxy.ConfigNamespace,
    		WorkloadLabels: proxy.Labels,
    		IsWaypoint:     proxy.IsWaypointProxy(),
    	}
    }
    
    func (p WorkloadPolicyMatcher) WithService(service *Service) WorkloadPolicyMatcher {
    	if service == nil {
    		return p
    	}
    	if service.Attributes.Namespace != p.Namespace {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. pilot/pkg/model/telemetry.go

    		}
    	}
    
    	ct := &computedTelemetries{
    		telemetryKey: key,
    		Metrics:      ms,
    		Logging:      ls,
    		Tracing:      ts,
    	}
    
    	matcher := PolicyMatcherForProxy(proxy).WithService(svc)
    	for _, telemetry := range t.NamespaceToTelemetries[namespace] {
    		spec := telemetry.Spec
    		// TODO in many other places, empty selector matches all policy
    		if len(spec.GetSelector().GetMatchLabels()) == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  4. pilot/pkg/model/push_context.go

    		lookupInNamespaces = []string{proxy.ConfigNamespace, ps.Mesh.RootNamespace}
    	} else {
    		lookupInNamespaces = []string{proxy.ConfigNamespace}
    	}
    
    	selectionOpts := PolicyMatcherForProxy(proxy).WithService(info.Service)
    	for _, ns := range lookupInNamespaces {
    		if wasmPlugins, ok := ps.wasmPluginsByNamespace[ns]; ok {
    			for _, plugin := range wasmPlugins {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
Back to top