Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 652 for suffix2 (0.15 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/DefaultModuleRegistry.java

            List<String> suffixes = new ArrayList<>();
    
            suffixes.add(("/" + projectDirName + "/out/production/classes").replace('/', File.separatorChar));
            suffixes.add(("/" + projectDirName + "/out/production/resources").replace('/', File.separatorChar));
            suffixes.add(("/" + projectDirName + "/bin").replace('/', File.separatorChar));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  8. src/index/suffixarray/sais.go

    		} else {
    			// If maxID == numLMS, then each LMS-substring
    			// is unique, so the relative ordering of two LMS-suffixes
    			// is determined by just the leading LMS-substring.
    			// That is, the LMS-suffix sort order matches the
    			// (simpler) LMS-substring sort order.
    			// Copy the original LMS-substring order into the
    			// suffix array destination.
    			copy(sa, sa[len(sa)-numLMS:])
    		}
    		expand_8_32(text, freq, bucket, sa, numLMS)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/gover/toolchain.go

    // A toolchain is named "goVERSION".
    // A suffix after the VERSION introduced by a -, space, or tab is removed.
    // Examples:
    //
    //	FromToolchain("go1.2.3") == "1.2.3"
    //	FromToolchain("go1.2.3-bigcorp") == "1.2.3"
    //	FromToolchain("invalid") == ""
    func FromToolchain(name string) string {
    	if strings.ContainsAny(name, "\\/") {
    		// The suffix must not include a path separator, since that would cause
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 23:20:32 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/arm/armasm/plan9x.go

    		op = "MOVW" + op[3:] + suffix
    	case VMRS_EQ, VMSR_EQ:
    		op = "MOVW" + op[4:] + suffix
    	case LDRB_EQ, UXTB_EQ:
    		op = "MOVBU" + op[4:] + suffix
    	case LDRSB_EQ:
    		op = "MOVBS" + op[5:] + suffix
    	case SXTB_EQ:
    		op = "MOVBS" + op[4:] + suffix
    	case LDRH_EQ, UXTH_EQ:
    		op = "MOVHU" + op[4:] + suffix
    	case LDRSH_EQ:
    		op = "MOVHS" + op[5:] + suffix
    	case SXTH_EQ:
    		op = "MOVHS" + op[4:] + suffix
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
Back to top