Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 190 for subset16 (0.31 sec)

  1. pilot/pkg/model/service_test.go

    func TestIsValidSubsetKey(t *testing.T) {
    	cases := []struct {
    		subsetkey string
    		expectErr bool
    	}{
    		{
    			subsetkey: "outbound|80|subset|hostname",
    			expectErr: false,
    		},
    		{
    			subsetkey: "outbound|80||hostname",
    			expectErr: false,
    		},
    		{
    			subsetkey: "outbound|80|subset||hostname",
    			expectErr: true,
    		},
    		{
    			subsetkey: "",
    			expectErr: true,
    		},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. operator/cmd/mesh/test-util_test.go

    			return v
    		}
    	}
    	return nil
    }
    
    // kind returns a subset of o where kind matches the given value.
    func (o *ObjectSet) kind(kind string) *ObjectSet {
    	ret := &ObjectSet{}
    	for k, v := range o.objMap {
    		objKind, _, _ := object.FromHash(k)
    		if objKind == kind {
    			ret.append(v)
    		}
    	}
    	return ret
    }
    
    // labels returns a subset of o where the object's labels match all the given labels.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/google/SetGenerators.java

             * greater than tooHigh.
             */
            return ContiguousSet.create(Range.openClosed(0, 1), DiscreteDomain.integers()).subSet(0, 1);
          }
          int tooHigh = set.last() + 1;
          int tooLow = set.first() - 1;
          set.add(tooHigh);
          set.add(tooLow);
          return checkedCreate(set).subSet(tooLow + 1, tooHigh);
        }
      }
    
      @GwtIncompatible // NavigableSet
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/envoyfilter/cluster_patch_test.go

    						Cluster: &networking.EnvoyFilter_ClusterMatch{Name: "scooby"},
    					},
    				},
    				cluster: &cluster.Cluster{Name: "scrappy"},
    			},
    			want: false,
    		},
    		{
    			name: "subset mismatch",
    			args: args{
    				proxy:     &model.Proxy{Type: model.SidecarProxy},
    				operation: networking.EnvoyFilter_Patch_MERGE,
    				matchCondition: &networking.EnvoyFilter_EnvoyConfigObjectMatch{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  5. guava-testlib/src/com/google/common/collect/testing/google/SetGenerators.java

             * greater than tooHigh.
             */
            return ContiguousSet.create(Range.openClosed(0, 1), DiscreteDomain.integers()).subSet(0, 1);
          }
          int tooHigh = set.last() + 1;
          int tooLow = set.first() - 1;
          set.add(tooHigh);
          set.add(tooLow);
          return checkedCreate(set).subSet(tooLow + 1, tooHigh);
        }
      }
    
      @GwtIncompatible // NavigableSet
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/echotest/filters_test.go

    	// naked pod (uninjected)
    	naked1 = &fakeInstance{Cluster: cls1, Namespace: echo1NS, Service: "naked", Subsets: []echo.SubsetConfig{{
    		Annotations: map[string]string{annotation.SidecarInject.Name: "false"},
    	}}}
    	naked2 = &fakeInstance{Cluster: cls2, Namespace: echo1NS, Service: "naked", Subsets: []echo.SubsetConfig{{
    		Annotations: map[string]string{annotation.SidecarInject.Name: "false"},
    	}}}
    	// external svc
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. pilot/pkg/model/service.go

    	// Since we do not want every callsite to implement the logic to differentiate between the two forms
    	// we add an alternate parser here.
    	if strings.HasPrefix(s, trafficDirectionOutboundSrvPrefix) ||
    		strings.HasPrefix(s, trafficDirectionInboundSrvPrefix) {
    		sep = "_."
    	}
    
    	// Format: dir|port|subset|hostname
    	dir, s, ok := strings.Cut(s, sep)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/ImmutableSortedSet.java

      }
    
      /**
       * {@inheritDoc}
       *
       * <p>This method returns a serializable {@code ImmutableSortedSet}.
       *
       * <p>The {@link SortedSet#subSet} documentation states that a subset of a subset throws an {@link
       * IllegalArgumentException} if passed a {@code fromElement} smaller than an earlier {@code
       * fromElement}. However, this method doesn't throw an exception in that situation, but instead
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/native/swift_testing.adoc

    See link:{groovyDslPath}/org.gradle.nativeplatform.test.xctest.tasks.XCTest.html[XCTest] for details on all the available configuration options.
    
    [[sec:swift_test_filtering]]
    == Test filtering
    It’s a common requirement to run subsets of a test suite, such as when you’re fixing a bug or developing a new test case.
    Gradle provides filtering to do this.
    You can select tests to run based on:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  10. pilot/pkg/model/sidecar.go

    		// In this scenario it should be determined by exact lookup.
    		if !hIsWildCarded && !importedHost.IsWildCarded() {
    			continue
    		}
    		// Check if the hostnames match per usual hostname matching rules
    		if h.SubsetOf(importedHost) {
    			return true
    		}
    	}
    	return false
    }
    
    // VSMatches checks if the hostClassification(sidecar egress hosts) matches the VirtualService's host
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
Back to top