Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for range_matchers (0.25 sec)

  1. istioctl/pkg/proxyconfig/testdata/config_dump.json

                      "custom_match": {
                        "name": "ip",
                        "typed_config": {
                          "@type": "type.googleapis.com/xds.type.matcher.v3.IPMatcher",
                          "range_matchers": [
                            {
                              "ranges": [
                                {
                                  "address_prefix": "10.104.171.68",
                                  "prefix_len": 32
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 23:08:06 UTC 2024
    - 54.8K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/compare/testdata/configdump.json

                      "custom_match": {
                        "name": "ip",
                        "typed_config": {
                          "@type": "type.googleapis.com/xds.type.matcher.v3.IPMatcher",
                          "range_matchers": [
                            {
                              "ranges": [
                                {
                                  "address_prefix": "10.111.182.109",
                                  "prefix_len": 32
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 52K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/compare/testdata/configdump_diff.json

                      "custom_match": {
                        "name": "ip",
                        "typed_config": {
                          "@type": "type.googleapis.com/xds.type.matcher.v3.IPMatcher",
                          "range_matchers": [
                            {
                              "ranges": [
                                {
                                  "address_prefix": "10.111.182.109",
                                  "prefix_len": 32
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener_waypoint.go

    			cidr := util.ConvertAddressToCidr(svc.GetAddressForProxy(lb.node))
    			rangeMatcher := &matcher.IPMatcher_IPRangeMatcher{
    				Ranges: []*xds.CidrRange{{
    					AddressPrefix: cidr.AddressPrefix,
    					PrefixLen:     cidr.PrefixLen,
    				}},
    				OnMatch: match.ToMatcher(portMapper.Matcher),
    			}
    			ipMatcher.RangeMatchers = append(ipMatcher.RangeMatchers, rangeMatcher)
    		}
    	}
    
    	{
    		// Direct pod access chain.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/base/CharMatcher.java

        }
      }
    
      /** Implementation that matches characters that fall within multiple ranges. */
      private static class RangesMatcher extends CharMatcher {
    
        private final String description;
        private final char[] rangeStarts;
        private final char[] rangeEnds;
    
        RangesMatcher(String description, char[] rangeStarts, char[] rangeEnds) {
          this.description = description;
          this.rangeStarts = rangeStarts;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  6. guava/src/com/google/common/base/CharMatcher.java

        }
      }
    
      /** Implementation that matches characters that fall within multiple ranges. */
      private static class RangesMatcher extends CharMatcher {
    
        private final String description;
        private final char[] rangeStarts;
        private final char[] rangeEnds;
    
        RangesMatcher(String description, char[] rangeStarts, char[] rangeEnds) {
          this.description = description;
          this.rangeStarts = rangeStarts;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
Back to top