Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 467 for Matcher (0.19 sec)

  1. pilot/pkg/networking/core/route/route_internal_test.go

    		ForwardNotMatchingPreflights: wrapperspb.Bool(false),
    		AllowOriginStringMatch: []*matcher.StringMatcher{
    			{MatchPattern: &matcher.StringMatcher_Exact{Exact: "exact"}},
    			{MatchPattern: &matcher.StringMatcher_Prefix{Prefix: "prefix"}},
    			{
    				MatchPattern: &matcher.StringMatcher_SafeRegex{
    					SafeRegex: &matcher.RegexMatcher{
    						Regex: "regex",
    					},
    				},
    			},
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 11 02:47:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/envoy/configdump/listener.go

    		port := retrieveListenerPort(l)
    		if filter.Verbose {
    
    			matches := retrieveListenerMatches(l)
    			sort.Slice(matches, func(i, j int) bool {
    				return matches[i].destination > matches[j].destination
    			})
    			for _, match := range matches {
    				if includeConfigType {
    					name := fmt.Sprintf("listener/%s", l.Name)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 12:37:14 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/SourceMetaDataVisitor.java

            findAnnotations(methodDeclaration, methodMetaData);
            extractParameters(methodDeclaration, methodMetaData);
    
            Matcher matcher = GETTER_METHOD_NAME.matcher(name);
            if (matcher.matches()) {
                int startName = matcher.start(2);
                String propName = name.substring(startName, startName + 1).toLowerCase() + name.substring(startName + 1);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 21 13:27:02 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  4. platforms/jvm/testing-junit-platform/src/main/java/org/gradle/api/internal/tasks/testing/junitplatform/JUnitPlatformTestClassProcessor.java

        }
    
        private static class ClassMethodNameFilter implements PostDiscoveryFilter {
            private final TestSelectionMatcher matcher;
    
            private ClassMethodNameFilter(TestSelectionMatcher matcher) {
                this.matcher = matcher;
            }
    
            @Override
            public FilterResult apply(TestDescriptor descriptor) {
                if (classMatch(descriptor)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. 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)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/InProcessGradleExecuter.java

                java.util.regex.Matcher matcher = LOCATION_PATTERN.matcher(failureMessage);
                if (matcher.find()) {
                    fileNames.add(matcher.group(1));
                    lineNumbers.add(matcher.group(3));
                    failures.add(new FailureDetails(failure, failureMessage.substring(matcher.end()).trim(), causes));
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/form/FormScheme.java

            final Matcher matcher = Pattern.compile(tokenPattern).matcher(content);
            if (matcher.find()) {
                if (logger.isDebugEnabled()) {
                    logger.debug("Matched: {}", matcher.group());
                }
                if (matcher.groupCount() > 0) {
                    return matcher.group(1);
                }
            }
            return null;
        }
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/cc/config_test.cc

      // user-provided specs are appended.
      //
      // It should look like:
      //
      // specs {matcher {function_name {regex: ".*"}} method {static_range_ptq {}}}
      // specs {
      //   matcher {function_name {regex: "composite_conv.*"}}
      //   method {static_range_ptq {...}}}
      // }
      // specs {
      //   matcher {function_name {regex: "composite_dot_general_fn_1"}}
      //   method {no_quantization {}}
      // }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 06:59:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/AttributeMatchingArtifactVariantSelector.java

                return matches.get(0).getArtifacts();
            } else if (matches.size() > 1) {
                // Request is ambiguous. Rerun matching again, except capture an explanation this time for reporting.
                TraceDiscardedVariants newExpBuilder = new TraceDiscardedVariants();
                matches = matcher.matches(variants, componentRequested, newExpBuilder);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 30 13:33:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/internal/bisect/bisect.go

    // New creates and returns a new Matcher implementing the given pattern.
    // The pattern syntax is defined in the package doc comment.
    //
    // In addition to the pattern syntax syntax, New("") returns nil, nil.
    // The nil *Matcher is valid for use: it returns true from ShouldEnable
    // and false from ShouldReport for all changes. Callers can avoid calling
    // [Hash], [Matcher.ShouldEnable], and [Matcher.ShouldPrint] entirely
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 15.4K bytes
    - Viewed (0)
Back to top