Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for GetMatches (0.61 sec)

  1. tests/integration/telemetry/tracing/tracing.go

    		return func(i echo.Instance) bool {
    			return strings.HasPrefix(i.Config().Service, prefix)
    		}
    	}
    	client = servicePrefix("client").GetMatches(echos)
    	server = match.ServiceName(echo.NamespacedName{Name: "server", Namespace: appNsInst}).GetMatches(echos)
    	ingInst = ist.IngressFor(ctx.Clusters().Default())
    	addrs, _ := ingInst.HTTPAddresses()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 19:05:09 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/DefaultMultipleCandidateResult.java

            this.consumerValue = consumerValue;
        }
    
        @Override
        public boolean hasResult() {
            return singleMatch != null || multipleMatches!=null;
        }
    
        @Override
        public Set<T> getMatches() {
            assert hasResult();
            if (singleMatch != null) {
                return Collections.singleton(singleMatch);
            }
            return multipleMatches;
        }
    
        @Nullable
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/envoy/configdump/listener.go

    	for _, filterChain := range fChains {
    		fc := filterchain{
    			destination: getFilterType(filterChain.GetFilters()),
    			match:       getMatches(filterChain.FilterChainMatch),
    		}
    		resp = append(resp, fc)
    	}
    	return resp
    }
    
    func getMatches(f *listener.FilterChainMatch) string {
    	match := f
    	if match == nil {
    		match = &listener.FilterChainMatch{}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 12:37:14 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  4. tests/integration/telemetry/api/setup_test.go

    	if err != nil {
    		return err
    	}
    	for _, c := range ctx.Clusters() {
    		ingr = append(ingr, ist.IngressFor(c))
    	}
    	mockProm = match.ServiceName(echo.NamespacedName{Name: "mock-prom", Namespace: apps.Namespace}).GetMatches(apps.Echos().All.Instances())
    	promInst, err = prometheus.New(ctx, prometheus.Config{})
    	if err != nil {
    		return
    	}
    
    	args := map[string]any{
    		"DockerConfigJson": base64.StdEncoding.EncodeToString(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/attributes/DefaultAttributesSchema.java

                    result = new DefaultMultipleCandidateResult<>(requested, candidates);
                    rules.execute(result);
                    if (result.hasResult()) {
                        return result.getMatches();
                    }
                }
    
                rules = producerSchema.disambiguationRules(attribute);
                if (rules.doesSomething()) {
                    if (result == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 16:59:54 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  6. tests/integration/pilot/mcs/autoexport/autoexport_test.go

    			ctx.NewSubTest("exported").RunParallel(
    				func(ctx framework.TestContext) {
    					serviceB := match.ServiceName(echo.NamespacedName{Name: common.ServiceB, Namespace: echos.Namespace})
    					for _, cluster := range serviceB.GetMatches(echos.Instances).Clusters() {
    						cluster := cluster
    						ctx.NewSubTest(cluster.StableName()).RunParallel(func(ctx framework.TestContext) {
    							// Verify that the ServiceExport was created.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/util/NameMatcher.java

        }
    
        /**
         * Returns all matches, when there were more than 1.
         *
         * @return The matches. Returns an empty set when there are no matches.
         */
        public Set<String> getMatches() {
            return matches;
        }
    
        /**
         * Returns the potential matches, if any.
         *
         * @return The matches. Returns an empty set when there are no potential matches.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:48:18 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/DefaultAttributeMatcher.java

                if (value == null || !explanationBuilder.canSkipExplanation()) {
                    int[] matches = new MultipleCandidateMatcher<>(schema, candidateList, requestedAttributes, explanationBuilder).getMatches();
                    LOGGER.debug("Selected matches {} from candidates {} for {}", Ints.asList(matches), candidateList, requested);
                    return matches;
                }
                return value;
            });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  9. tests/integration/pilot/mcs/discoverability/discoverability_test.go

    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			t.Skip("https://github.com/istio/istio/issues/34051")
    			// Get all the clusters where service B resides.
    			bClusters := serviceB.GetMatches(echos.Instances).Clusters()
    
    			// Test exporting service B exclusively in each cluster.
    			for _, exportCluster := range bClusters {
    				exportCluster := exportCluster
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  10. pilot/pkg/model/telemetry.go

    						key := metricProviderModeKey(provider, mode)
    						disabledAllMetricsProviders.Insert(key)
    					}
    
    					continue
    				}
    
    				metricsNames := getMatches(o.GetMatch())
    				// If client or server is set explicitly, only apply there. Otherwise, we will apply to both.
    				// Note: client and server keys may end up the same, which is fine
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
Back to top