Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 35 of 35 for getSelectors (0.21 sec)

  1. pilot/pkg/model/telemetry.go

    	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 {
    			continue
    		}
    		if matcher.ShouldAttachPolicy(gvk.Telemetry, telemetry.NamespacedName(), spec) {
    			ct = appendApplicableTelemetries(ct, telemetry, spec)
    		} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/ExternalResourceResolver.java

        }
    
        private void doListModuleVersions(ModuleDependencyMetadata dependency, BuildableModuleVersionListingResolveResult result) {
            ModuleIdentifier module = dependency.getSelector().getModuleIdentifier();
    
            tryListingViaRule(module, result);
    
            if (result.hasResult() && result.isAuthoritative()) {
                return;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/authorization.go

    	polTargetRef := model.GetTargetRefs(pol)
    	if len(polTargetRef) > 0 {
    		// TargetRef is not intended for ztunnel
    		return nil
    	}
    
    	scope := security.Scope_WORKLOAD_SELECTOR
    	if pol.GetSelector() == nil {
    		scope = security.Scope_NAMESPACE
    		// TODO: TDA
    		if rootns == obj.Namespace {
    			scope = security.Scope_GLOBAL // TODO: global workload?
    		}
    	}
    	action := security.Action_ALLOW
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 16:23:36 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  4. istioctl/pkg/describe/describe.go

    	if len(matchedPA) != 0 {
    		printConfigs(writer, matchedPA)
    	}
    
    	return nil
    }
    
    // Workloader is used for matching all configs
    type Workloader interface {
    	GetSelector() *typev1beta1.WorkloadSelector
    }
    
    // findMatchedConfigs should filter out unrelated configs that are not matched given podsLabels.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  5. pilot/pkg/model/push_context.go

    			}
    		} else if gw.GetSelector() == nil {
    			// no selector. Applies to all workloads asking for the gateway
    			gatewayInstances = append(gatewayInstances, gatewayWithInstances{cfg, true, proxy.ServiceTargets})
    		} else {
    			gatewaySelector := labels.Instance(gw.GetSelector())
    			if gatewaySelector.SubsetOf(proxy.Labels) {
    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