Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 73 for Matcher (0.7 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// Note that this is intersected with the policy's matchConstraints, so only requests that are matched by the policy can be selected by this.
    	// If this is unset, all resources matched by the policy are validated by this binding
    	// When resourceRules is unset, it does not constrain resource matching. If a resource is matched by the other fields of this object, it will be validated.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// Note that this is intersected with the policy's matchConstraints, so only requests that are matched by the policy can be selected by this.
    	// If this is unset, all resources matched by the policy are validated by this binding
    	// When resourceRules is unset, it does not constrain resource matching. If a resource is matched by the other fields of this object, it will be validated.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/conversion.go

    		res := conversionResult{}
    		for n, r := range route.Rules {
    			// split the rule to make sure each rule has up to one match
    			matches := slices.Reference(r.Matches)
    			if len(matches) == 0 {
    				matches = append(matches, nil)
    			}
    			for _, m := range matches {
    				if m != nil {
    					r.Matches = []k8s.HTTPRouteMatch{*m}
    				}
    				vs, err := convertHTTPRoute(r, ctx, obj, n, !mesh)
    				// This was a hard error
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  4. src/net/http/request.go

    	// and mutating the contexts held by callers of the same request.
    	ctx context.Context
    
    	// The following fields are for requests matched by ServeMux.
    	pat         *pattern          // the pattern that matched
    	matches     []string          // values for the matching wildcards in pat
    	otherValues map[string]string // for calls to SetPathValue that don't match a wildcard
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  5. pkg/controller/endpoint/endpoints_controller_test.go

    		}},
    	})
    	endpointsHandler.ValidateRequest(t, "/api/v1/namespaces/"+ns+"/endpoints/foo", "PUT", &data)
    }
    
    // TestPodUpdatesBatching verifies that endpoint updates caused by pod updates are batched together.
    // This test uses real time.Sleep, as there is no easy way to mock time in endpoints controller now.
    // TODO(mborsz): Migrate this test to mock clock when possible.
    func TestPodUpdatesBatching(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  6. src/cmd/internal/testdir/testdir_test.go

    	//	"(\w+)" matches "arm64" (architecture name)
    	//	"(/[\w.]+)?" matches "v8.1" (architecture version)
    	//	"(/\w*)?" doesn't match anything here (it's an optional part of the triplet)
    	//	"\s*:\s*" matches " : " (semi-colon)
    	//	"(" starts a capturing group
    	//      first reMatchCheck matches "-`ADD`"
    	//	`(?:" starts a non-capturing group
    	//	"\s*,\s*` matches " , "
    	//	second reMatchCheck matches "`SUB`"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  7. src/cmd/go/go_test.go

    	tg.grepStdoutNot(".", "list should not have matched anything")
    	tg.grepStderr("matched no packages", "list should have reported that pattern matched no packages")
    	tg.grepStderrNot("symlink", "list should not have reported symlink")
    
    	tg.run("list", "example/xx/...")
    	tg.grepStdoutNot(".", "list should not have matched anything")
    	tg.grepStderr("matched no packages", "list should have reported that pattern matched no packages")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  8. pilot/pkg/model/push_context.go

    			Patches: make(map[networking.EnvoyFilter_ApplyTo][]*EnvoyFilterConfigPatchWrapper),
    		}
    		// merge EnvoyFilterWrapper
    		for _, efw := range matchedEnvoyFilters {
    			for applyTo, cps := range efw.Patches {
    				for _, cp := range cps {
    					if proxyMatch(proxy, cp) {
    						out.Patches[applyTo] = append(out.Patches[applyTo], cp)
    					}
    				}
    			}
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  9. cmd/iam.go

    func (sys *IAMSys) periodicRoutines(ctx context.Context, baseInterval time.Duration) {
    	// Watch for IAM config changes for iamStorageWatcher.
    	watcher, isWatcher := sys.store.IAMStorageAPI.(iamStorageWatcher)
    	if isWatcher {
    		go func() {
    			ch := watcher.watch(ctx, iamConfigPrefix)
    			for event := range ch {
    				if err := sys.loadWatchedEvent(ctx, event); err != nil {
    					// we simply log errors
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/Preconditions.java

       * @param errorMessageTemplate a template for the exception message should the check fail. The
       *     message is formed by replacing each {@code %s} placeholder in the template with an
       *     argument. These are matched by position - the first {@code %s} gets {@code
       *     errorMessageArgs[0]}, etc. Unmatched arguments will be appended to the formatted message in
       *     square braces. Unmatched placeholders will be left as-is.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
Back to top