Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 99 for unmatched (0.33 sec)

  1. pilot/pkg/simulation/traffic.go

    var (
    	ErrNoListener          = errors.New("no listener matched")
    	ErrNoFilterChain       = errors.New("no filter chains matched")
    	ErrNoRoute             = errors.New("no route matched")
    	ErrTLSRedirect         = errors.New("tls required, sending 301")
    	ErrNoVirtualHost       = errors.New("no virtual host matched")
    	ErrMultipleFilterChain = errors.New("multiple filter chains matched")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. pilot/pkg/model/extensions_test.go

    			listenerInfo: WasmPluginListenerInfo{
    				Port:  1234,
    				Class: networking.ListenerClassSidecarInbound,
    			},
    			want: false,
    		},
    		{
    			desc: "traffic selector is matched, but workload selector is not matched",
    			wasmPlugin: &WasmPluginWrapper{WasmPlugin: &extensions.WasmPlugin{
    				Selector: &v1beta1.WorkloadSelector{
    					MatchLabels: map[string]string{"e": "f"},
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  3. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/android/RealLifeAndroidBuildPerformanceTest.groovy

                Matcher matcher = text =~ /(mavenCentral\(\))/
                boolean matched = false
                matcher.find() // skip first match in pluginManagement {}
                if (matcher.find()) {
                    matched = true // matched dependencyResolutionManagement {}
                    def result = matcher.toMatchResult()
                    text.replace(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:57 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. pilot/pkg/xds/ads.go

    }
    
    // reportEventsForUnWatched is to report events for unwatched types after push.
    // e.g. there is no rds if no route configured for gateway.
    // nolint
    func reportEventsForUnWatched(con *Connection, statusReporter DistributionStatusCache, nonce string) {
    	if statusReporter == nil {
    		return
    	}
    
    	// if typeUrl is not empty, report all events that are not being watched
    	unWatched := sets.NewWithLength[EventType](len(AllTrackingEventTypes))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ivy/IvyDependencyDescriptor.java

            boolean matched = false;
            String fromConfigName = fromConfiguration.getName();
            for (String config : fromConfiguration.getHierarchy()) {
                if (confs.containsKey(config)) {
                    Set<String> targetPatterns = confs.get(config);
                    if (!targetPatterns.isEmpty()) {
                        matched = true;
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  6. pkg/volume/plugins.go

    			matchedPluginNames = append(matchedPluginNames, plugin.GetPluginName())
    		}
    	}
    
    	if len(matchedPluginNames) == 0 {
    		return nil, fmt.Errorf("no volume plugin matched")
    	}
    	if len(matchedPluginNames) > 1 {
    		return nil, fmt.Errorf("multiple volume plugins matched: %s", strings.Join(matchedPluginNames, ","))
    	}
    
    	return match, nil
    }
    
    // FindPluginByName fetches a plugin by name. If no plugin is found, returns error.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/FileHierarchySet.java

                        List<Node> merged = new ArrayList<Node>(children.size() + 1);
                        boolean matched = false;
                        for (Node child : children) {
                            if (!matched) {
                                int childCommonPrefix = child.sizeOfCommonPrefix(path, startNextSegment);
                                if (childCommonPrefix > 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. cmd/import-boss/main.go

    		matched := false
    		decided := false
    		for i, file := range restrictionFiles {
    			klog.V(4).Infof("rules file %s", file.path)
    			for j, rule := range file.Rules {
    				if !rule.Transitive && !isDirect[imp] {
    					continue
    				}
    				matching := selectors[i][j].MatchString(imp)
    				if !matching {
    					continue
    				}
    				matched = true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 12:36:49 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  9. src/testing/fuzz.go

    	}
    	var fuzzTest *InternalFuzzTarget
    	var testName string
    	var matched []string
    	for i := range fuzzTests {
    		name, ok, _ := tctx.match.fullName(nil, fuzzTests[i].Name)
    		if !ok {
    			continue
    		}
    		matched = append(matched, name)
    		fuzzTest = &fuzzTests[i]
    		testName = name
    	}
    	if len(matched) == 0 {
    		fmt.Fprintln(os.Stderr, "testing: warning: no fuzz tests to fuzz")
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  10. pkg/apis/core/v1/helper/helpers_test.go

    						}},
    					},
    				},
    				labels: map[string]string{"label_1": "label_1_val-failed"},
    			},
    			want: false,
    		},
    		{
    			name: "multi-values in one requirement, one matched",
    			args: args{
    				topologySelectorTerms: []v1.TopologySelectorTerm{
    					{
    						MatchLabelExpressions: []v1.TopologySelectorLabelRequirement{{
    							Key:    "label_1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 23:03:54 UTC 2024
    - 16.9K bytes
    - Viewed (0)
Back to top