Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 129 for genrule (0.13 sec)

  1. pilot/pkg/networking/core/cluster_waypoint.go

    				clusters = append(clusters, cb.buildWaypointInboundVIPCluster(proxy, svc, *port, "http").build())
    			}
    			cfg := cb.sidecarScope.DestinationRule(model.TrafficDirectionInbound, proxy, svc.Hostname).GetRule()
    			if cfg != nil {
    				destinationRule := cfg.Spec.(*networking.DestinationRule)
    				for _, ss := range destinationRule.Subsets {
    					if port.Protocol.IsUnsupported() || port.Protocol.IsTCP() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. pilot/pkg/model/destination_rule.go

    	if len(l.from) != len(r.from) {
    		return false
    	}
    	for i, v := range l.from {
    		if v != r.from[i] {
    			return false
    		}
    	}
    	return true
    }
    
    func (l *ConsolidatedDestRule) GetRule() *config.Config {
    	if l == nil {
    		return nil
    	}
    	return l.rule
    }
    
    func (l *ConsolidatedDestRule) GetFrom() []types.NamespacedName {
    	if l == nil {
    		return nil
    	}
    	return l.from
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 07:22:29 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/tls.go

    				sniHosts = append(sniHosts, alt...)
    			}
    		}
    		destinationRule := CastDestinationRule(node.SidecarScope.DestinationRule(
    			model.TrafficDirectionOutbound, node, service.Hostname).GetRule())
    		var destinationCIDRs []string
    		if destinationCIDR != "" {
    			destinationCIDRs = []string{destinationCIDR}
    		}
    		out = append(out, &filterChainOpts{
    			sniHosts:         sniHosts,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  4. maven-plugin-api/src/test/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilderTest.java

            assertEquals("3.0.0", mp.getSince());
    
            ComponentRequirement cr = md.getRequirements().get(0);
    
            assertEquals("org.codehaus.plexus.archiver.Archiver", cr.getRole());
            assertEquals("jar", cr.getRoleHint());
            assertEquals("jarArchiver", cr.getFieldName());
    
            ComponentDependency cd = pd.getDependencies().get(0);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Nov 17 15:51:47 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  5. pkg/apis/rbac/helpers.go

    // out in a literal and allows us to perform some basic checking during construction
    // +k8s:deepcopy-gen=false
    type PolicyRuleBuilder struct {
    	PolicyRule PolicyRule
    }
    
    // NewRule returns new PolicyRule made by input verbs.
    func NewRule(verbs ...string) *PolicyRuleBuilder {
    	return &PolicyRuleBuilder{
    		PolicyRule: PolicyRule{Verbs: sets.NewString(verbs...).List()},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 23 15:11:00 UTC 2020
    - 12.1K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/RoleBasedConfigurationCreationRequest.java

            return String.format("Do not create a configuration with the name %s.", configurationName);
        }
    
        String getConfigurationName();
        ConfigurationRole getRole();
    
        /**
         * Issues a deprecation warning about the creation of a configuration with a reserved name.
         */
        default void warnAboutReservedName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 13:42:17 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  7. pilot/pkg/networking/grpcgen/cds.go

    		return nil
    	}
    
    	// resolve policy from context
    	destinationRule := corexds.CastDestinationRule(b.node.SidecarScope.DestinationRule(
    		model.TrafficDirectionOutbound, b.node, b.svc.Hostname).GetRule())
    	trafficPolicy, _ := util.GetPortLevelTrafficPolicy(destinationRule.GetTrafficPolicy(), b.port)
    
    	// setup default cluster
    	b.applyTrafficPolicy(defaultCluster, trafficPolicy)
    
    	// subset clusters
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultComponentSelectionRules.java

            return new DefaultRuleActionAdapter(ruleActionValidator, "ComponentSelectionRules");
        }
    
        @Override
        public Collection<SpecRuleAction<? super ComponentSelection>> getRules() {
            return rules != null ? rules : Collections.emptySet();
        }
    
        @Override
        public ComponentSelectionRules all(Action<? super ComponentSelection> selectionAction) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/rulegen.go

    		}
    		sw.add(swc)
    	}
    	if len(sw.List) > 0 { // skip if empty
    		fn.add(sw)
    	}
    	fn.add(stmtf("return false"))
    	genFile.add(fn)
    
    	// Remove unused imports and variables.
    	buf := new(bytes.Buffer)
    	fprint(buf, genFile)
    	fset := token.NewFileSet()
    	file, err := parser.ParseFile(fset, "", buf, parser.ParseComments)
    	if err != nil {
    		filename := fmt.Sprintf("%s_broken.go", arch.name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/CustomNamedDomainObjectCollectionTest.groovy

            return null
        }
    
        @Override
        Rule addRule(String description, Action<String> ruleAction) {
            return null
        }
    
        @Override
        List<Rule> getRules() {
            return null
        }
    
        @Override
        <S extends T> NamedDomainObjectCollection<S> withType(Class<S> type) {
            return null
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:21:31 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top