Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 288 for watcher (0.16 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/generic/webhook.go

    	matches, matchObjErr := a.objectMatcher.MatchObjectSelector(h, attr)
    	if !matches && matchObjErr == nil {
    		return nil, nil
    	}
    
    	var invocation *WebhookInvocation
    	for _, r := range h.GetRules() {
    		m := rules.Matcher{Rule: r, Attr: attr}
    		if m.Matches() {
    			invocation = &WebhookInvocation{
    				Webhook:     h,
    				Resource:    attr.GetResource(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster.go

    			if patched := cp.patch(nil, defaultCluster.build()); patched != nil {
    				resources = append(resources, patched)
    				if features.EnableCDSCaching {
    					cb.cache.Add(&clusterKey, cb.req, patched)
    				}
    			}
    			for _, ss := range subsetClusters {
    				if patched := cp.patch(nil, ss); patched != nil {
    					resources = append(resources, patched)
    					if features.EnableCDSCaching {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  3. 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)
  4. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactory.java

                mutable.applicationModulepath.removeIf(module -> module.getJarFilePattern().matcher(name).matches());
                mutable.implementationClasspath.removeIf(module -> module.getJarFilePattern().matcher(name).matches());
                mutable.implementationModulepath.removeIf(module -> module.getJarFilePattern().matcher(name).matches());
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. manifests/addons/dashboards/pilot-dashboard.gen.json

                      "matcher": {
                         "id": "byName",
                         "options": "lds"
                      },
                      "properties": [
                         {
                            "id": "displayName",
                            "value": "Listeners"
                         }
                      ]
                   },
                   {
                      "matcher": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/route/route.go

    		out.Headers = append(out.Headers, matcher)
    	}
    
    	if in.Scheme != nil {
    		matcher := translateHeaderMatch(HeaderScheme, in.Scheme)
    		out.Headers = append(out.Headers, matcher)
    	}
    
    	for name, stringMatch := range in.QueryParams {
    		matcher := translateQueryParamMatch(name, stringMatch)
    		out.QueryParameters = append(out.QueryParameters, matcher)
    	}
    
    	return out
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  7. pilot/pkg/networking/util/util.go

    	case *networking.StringMatch_Prefix:
    		return &matcher.StringMatcher{MatchPattern: &matcher.StringMatcher_Prefix{Prefix: m.Prefix}}
    	case *networking.StringMatch_Regex:
    		return &matcher.StringMatcher{
    			MatchPattern: &matcher.StringMatcher_SafeRegex{
    				SafeRegex: &matcher.RegexMatcher{
    					Regex: m.Regex,
    				},
    			},
    		}
    	}
    	return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  8. docs/metrics/prometheus/grafana/minio-dashboard.json

                    }
                  },
                  "type": "special"
                }
              ],
              "unit": "bytes"
            },
            "overrides": [
              {
                "matcher": {
                  "id": "byName",
                  "options": "Free"
                },
                "properties": [
                  {
                    "id": "color",
                    "value": {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 15 10:03:01 UTC 2024
    - 93K bytes
    - Viewed (0)
  9. guava-gwt/src-super/com/google/common/base/super/com/google/common/base/Platform.java

    final class Platform {
      static CharMatcher precomputeCharMatcher(CharMatcher matcher) {
        // CharMatcher.precomputed() produces CharMatchers that are maybe a little
        // faster (and that's debatable), but definitely more memory-hungry. We're
        // choosing to turn .precomputed() into a no-op in GWT, because it doesn't
        // seem to be a worthwhile tradeoff in a browser.
        return matcher;
      }
    
      static String formatCompact4Digits(double value) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon May 27 13:56:56 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/accessors.go

    	// GetRESTClient gets the webhook client
    	GetRESTClient(clientManager *webhookutil.ClientManager) (*rest.RESTClient, error)
    
    	// GetCompiledMatcher gets the compiled matcher object
    	GetCompiledMatcher(compiler cel.FilterCompiler) matchconditions.Matcher
    
    	// GetName gets the webhook Name field. Note that the name is scoped to the webhook
    	// configuration and does not provide a globally unique identity, if a unique identity is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 12.4K bytes
    - Viewed (0)
Back to top