Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 931 for suffix1 (0.17 sec)

  1. pkg/bootstrap/testdata/stats_inclusion_golden.json

              },
              {
              "suffix": "suffix1"
              },
              {
              "suffix": "suffix2"
              },
              {
              "suffix": "upstream_rq_1xx"
              },
              {
              "suffix": "upstream_rq_2xx"
              },
              {
              "suffix": "upstream_rq_3xx"
              },
              {
              "suffix": "upstream_rq_4xx"
              },
              {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. pilot/pkg/security/authz/matcher/string_test.go

    				},
    			},
    		},
    		{
    			name:   "suffix-empty-prefix",
    			v:      "*-suffix",
    			prefix: "",
    			want: &matcher.StringMatcher{
    				MatchPattern: &matcher.StringMatcher_Suffix{
    					Suffix: "-suffix",
    				},
    			},
    		},
    		{
    			name:   "suffix",
    			v:      "*-suffix",
    			prefix: "abc",
    			want:   StringMatcherRegex("abc.*-suffix"),
    		},
    		{
    			name:   "exact",
    			v:      "-exact",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 17 22:42:11 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. pkg/bootstrap/instance_test.go

    			},
    			stats: stats{
    				prefixes: "prefix1,prefix2,http.10.3.3.3_,http.10.4.4.4_,http.10.5.5.5_,http.10.6.6.6_",
    				suffixes: "suffix1,suffix2," + upstreamStatsSuffixes + "," + downstreamStatsSuffixes,
    				regexps:  "http.[0-9]*\\.[0-9]*\\.[0-9]*\\.[0-9]*_8080.downstream_rq_time",
    			},
    		},
    		{
    			base: "tracing_tls",
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  4. src/regexp/syntax/parse.go

    			// Construct factored form: prefix(suffix1|suffix2|...)
    			prefix := first
    			for j := start; j < i; j++ {
    				reuse := j != start // prefix came from sub[start]
    				sub[j] = p.removeLeadingRegexp(sub[j], reuse)
    				p.checkLimits(sub[j])
    			}
    			suffix := p.collapse(sub[start:i], OpAlternate) // recurse
    
    			re := p.newRegexp(OpConcat)
    			re.Sub = append(re.Sub[:0], prefix, suffix)
    			out = append(out, re)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/api/resource/suffix.go

    	return nil, false
    }
    
    func (sh *suffixHandler) interpret(suffix suffix) (base, exponent int32, fmt Format, ok bool) {
    	// Try lookup tables first
    	if b, e, ok := sh.decSuffixes.lookup(suffix); ok {
    		return b, e, DecimalSI, true
    	}
    	if b, e, ok := sh.binSuffixes.lookup(suffix); ok {
    		return b, e, BinarySI, true
    	}
    
    	if len(suffix) > 1 && (suffix[0] == 'E' || suffix[0] == 'e') {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 27 03:17:50 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    	// the suffix to the longest suffix shared by all the current match IDs
    	// before adding 0 or 1.
    	suffix := commonSuffix(r.MatchIDs)
    	if !strings.HasSuffix(suffix, r.Suffix) {
    		b.Fatalf("internal error: invalid common suffix") // bug in commonSuffix
    	}
    
    	// Run 0suffix and 1suffix. If one fails, chase down the failure in that half.
    	r0 := b.Run("0" + suffix)
    	if !r0.Success {
    		return b.search(r0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-asm/src/main/java/org/gradle/model/internal/asm/ClassGeneratorSuffixRegistry.java

            Throwable previous = SUFFIXES.putIfAbsent(suffix, markerForSuffix(suffix));
            if (previous != null) {
                throw new IllegalStateException("A class generator with suffix '" + suffix + "' is already registered.", previous);
            }
            return suffix;
        }
    
        /**
         * Assigns a suffix to use for generated class names.
         */
        public static String assign(String suffix) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:25 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/x86/evex.go

    			hasRoundSae = true
    		default:
    			if !unknownSet[suffix] {
    				msg = append(msg, fmt.Sprintf("unknown suffix %q", suffix))
    			}
    			unknownSet[suffix] = true
    		}
    
    		if suffixSet[suffix] {
    			msg = append(msg, fmt.Sprintf("duplicate suffix %q", suffix))
    		}
    		suffixSet[suffix] = true
    	}
    
    	if hasBcst && hasRoundSae {
    		msg = append(msg, "can't combine rounding/SAE and broadcast")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/net/InternetDomainName.java

       *
       * <p>Public suffixes are a proper superset of {@linkplain #isRegistrySuffix() registry suffixes}.
       * The list of public suffixes additionally contains privately owned domain names under which
       * Internet users can register subdomains. An example of a public suffix that is not a registry
       * suffix is {@code blogspot.com}. Note that it is true that all public suffixes <i>have</i>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  10. guava/src/com/google/common/net/InternetDomainName.java

       *
       * <p>Public suffixes are a proper superset of {@linkplain #isRegistrySuffix() registry suffixes}.
       * The list of public suffixes additionally contains privately owned domain names under which
       * Internet users can register subdomains. An example of a public suffix that is not a registry
       * suffix is {@code blogspot.com}. Note that it is true that all public suffixes <i>have</i>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
Back to top