Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 328 for Matcher (0.3 sec)

  1. pilot/pkg/networking/core/listener_waypoint.go

    			xdsfilters.HTTPInspector,
    		},
    		TrafficDirection: core.TrafficDirection_INBOUND,
    		FilterChains:     chains,
    		FilterChainMatcher: &matcher.Matcher{
    			MatcherType: &matcher.Matcher_MatcherTree_{
    				MatcherTree: &matcher.Matcher_MatcherTree{
    					Input: match.DestinationIP,
    					TreeType: &matcher.Matcher_MatcherTree_CustomMatch{
    						CustomMatch: &xds.TypedExtensionConfig{
    							Name:        "ip",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

                return null;
            }
            StringBuilder builder = new StringBuilder();
            Matcher matcher = WORD_SEPARATOR.matcher(string);
            int pos = 0;
            boolean first = true;
            while (matcher.find()) {
                String chunk = string.subSequence(pos, matcher.start()).toString();
                pos = matcher.end();
                if (chunk.isEmpty()) {
                    continue;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java

        protected String parseCharset(final String content) {
            final Pattern pattern = Pattern.compile("; *charset *= *([a-zA-Z0-9\\-_]+)", Pattern.CASE_INSENSITIVE);
            final Matcher matcher = pattern.matcher(content);
            if (matcher.find()) {
                return matcher.group(1);
            }
            return null;
        }
    
        protected RequestData getDuplicateUrl(final RequestData requestData) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/validator_test.go

    		},
    	}
    	for _, tc := range cases {
    		t.Run(tc.name, func(t *testing.T) {
    			var matcher matchconditions.Matcher
    			if tc.matcher == nil {
    				matcher = &fakeCELMatcher{matches: true}
    			} else {
    				matcher = tc.matcher
    			}
    			v := validator{
    				failPolicy: tc.failPolicy,
    				celMatcher: matcher,
    				validationFilter: &fakeCelFilter{
    					evaluations: tc.evaluations,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/matching/matching_test.go

    	interfaces := &admission.RuntimeObjectInterfaces{EquivalentResourceMapper: mapper}
    	matcher := &Matcher{namespaceMatcher: &namespace.Matcher{NamespaceLister: namespaceLister}, objectMatcher: &object.Matcher{}}
    
    	for i := 0; i < b.N; i++ {
    		matcher.Matches(attrs, interfaces, criteria)
    	}
    }
    
    func BenchmarkShouldCallHookWithComplexRule(b *testing.B) {
    	allScopes := v1.AllScopes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/DefaultRepositoryContentDescriptor.java

            private boolean anyMatch(ImmutableList<SpecMatcher> matchers, ArtifactResolutionDetails details) {
                for (SpecMatcher matcher : matchers) {
                    boolean matches;
                    if (details.isVersionListing()) {
                        matches = matcher.matches(details.getModuleId());
                    } else {
                        matches = matcher.matches(details.getComponentId());
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  7. manifests/addons/dashboards/istio-mesh-dashboard.json

                ]
              },
              {
                "matcher": {
                  "id": "byName",
                  "options": "Time"
                },
                "properties": [
                  {
                    "id": "custom.hidden",
                    "value": true
                  }
                ]
              },
              {
                "matcher": {
                  "id": "byName",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 02:28:01 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_dispatcher.go

    		matches, matchGVR, matchGVK, err := d.matcher.DefinitionMatches(a, o, policyAccessor)
    		if err != nil {
    			// There was an error evaluating if this policy matches anything.
    			utilruntime.HandleError(err)
    			relevantHooks = append(relevantHooks, PolicyInvocation[P, B, E]{
    				Policy: hook.Policy,
    				Error:  err,
    			})
    			continue
    		} else if !matches {
    			continue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/metadata/GccMetadataProvider.java

                    Matcher matcher = DEFINE_PATTERN.matcher(line);
                    if (!matcher.matches()) {
                        throw new BrokenResultException(String.format("Could not determine %s metadata: %s produced unexpected output.", compilerType.getDescription(), gccBinary.getName()));
                    }
                    defines.put(matcher.group(1), matcher.group(2));
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 15 06:39:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/language/match.go

    // There doesn't seem to be too much need for multiple types.
    // Making it a concrete type allows MatchStrings to be a method, which will
    // improve its discoverability.
    
    // MatchStrings parses and matches the given strings until one of them matches
    // the language in the Matcher. A string may be an Accept-Language header as
    // handled by ParseAcceptLanguage. The default language is returned if no
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
Back to top