Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 105 for PatchType (0.39 sec)

  1. CHANGELOG/CHANGELOG-1.16.md

      - `response.patch` and `response.patchType` are not permitted from validating admission webhooks
      - `apiVersion: "admission.k8s.io/v1"` is required
      - `kind: "AdmissionReview"` is required
      - `response.uid: "<value of request.uid>"` is required
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 11 10:00:57 UTC 2021
    - 345.2K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/conversion_test.go

    						{
    							Uri: &istio.StringMatch{
    								MatchType: &istio.StringMatch_Exact{
    									Exact: "/foo",
    								},
    							},
    						},
    					},
    				},
    			},
    			[]*istio.HTTPRoute{
    				{
    					Match: []*istio.HTTPMatchRequest{
    						{
    							Uri: &istio.StringMatch{
    								MatchType: &istio.StringMatch_Exact{
    									Exact: "/foo",
    								},
    							},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 34.9K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/route/route_internal_test.go

    			Major: 1,
    			Minor: 23,
    			Patch: 0,
    		},
    	}
    	corsPolicy := &networking.CorsPolicy{
    		AllowOrigins: []*networking.StringMatch{
    			{MatchType: &networking.StringMatch_Exact{Exact: "exact"}},
    			{MatchType: &networking.StringMatch_Prefix{Prefix: "prefix"}},
    			{MatchType: &networking.StringMatch_Regex{Regex: "regex"}},
    		},
    		UnmatchedPreflights: networking.CorsPolicy_IGNORE,
    	}
    	expectedCorsPolicy := &cors.CorsPolicy{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 11 02:47:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. pkg/config/validation/virtualservice_test.go

    						MatchType: &networking.StringMatch_Regex{Regex: "test"},
    					},
    				},
    			}},
    		}, valid: true},
    		{name: "regex without headers match ?", route: &networking.HTTPRoute{
    			Redirect: &networking.HTTPRedirect{
    				Uri:       "/",
    				Authority: "foo.biz",
    			},
    			Match: []*networking.HTTPMatchRequest{{
    				WithoutHeaders: map[string]*networking.StringMatch{
    					"header": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 15:33:55 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/dependencies/AttributeMatchDetails.java

    public class AttributeMatchDetails {
        private final MatchType matchType;
        @Nullable
        private final Attribute<?> requested;
        @Nullable
        private final Object requestedValue;
    
        public AttributeMatchDetails(MatchType matchType, @Nullable Attribute<?> requested, @Nullable Object requestedValue) {
            this.matchType = matchType;
            this.requested = requested;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 10 22:44:31 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  6. pilot/pkg/model/virtualservice_test.go

    							Uri: &networking.StringMatch{
    								MatchType: &networking.StringMatch_Prefix{Prefix: "/productpage/v2"},
    							},
    							Headers: map[string]*networking.StringMatch{
    								"version": {
    									MatchType: &networking.StringMatch_Exact{Exact: "v2"},
    								},
    							},
    							Port: 8080,
    						},
    						{
    							Uri: &networking.StringMatch{
    								MatchType: &networking.StringMatch_Prefix{Prefix: "/productpage"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  7. src/compress/flate/token.go

    	return token(matchType + xlength<<lengthShift + xoffset)
    }
    
    // Returns the literal of a literal token.
    func (t token) literal() uint32 { return uint32(t - literalType) }
    
    // Returns the extra offset of a match token.
    func (t token) offset() uint32 { return uint32(t) & offsetMask }
    
    func (t token) length() uint32 { return uint32((t - matchType) >> lengthShift) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/decorated_watcher_test.go

    			t.Fatalf("pod.Annotations[\"decorated\"], want=%s, get=%s", "true", pod.Labels["decorated"])
    		}
    		if e.Type != watchType {
    			t.Fatalf("expected type %s, got %s", watchType, e.Type)
    		}
    	case <-time.After(wait.ForeverTestTimeout):
    		t.Fatalf("timeout after %v", wait.ForeverTestTimeout)
    	}
    }
    
    func expectErrorEvent(t *testing.T, dw *decoratedWatcher) {
    	select {
    	case e := <-dw.ResultChan():
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 02 19:25:31 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/ambient/authorization.go

    		switch {
    		case v == "*":
    			sm = &security.StringMatch{MatchType: &security.StringMatch_Presence{}}
    		case strings.HasPrefix(v, "*"):
    			sm = &security.StringMatch{MatchType: &security.StringMatch_Suffix{
    				Suffix: strings.TrimPrefix(v, "*"),
    			}}
    		case strings.HasSuffix(v, "*"):
    			sm = &security.StringMatch{MatchType: &security.StringMatch_Prefix{
    				Prefix: strings.TrimSuffix(v, "*"),
    			}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 16:23:36 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  10. cmd/postpolicyform.go

    					}
    				}
    				operator, matchType, value := toLowerString(condt[0]), toLowerString(condt[1]), toString(condt[2])
    				if !strings.HasPrefix(matchType, "$") {
    					return parsedPolicy, fmt.Errorf("Invalid according to Policy: Policy Condition failed: [%s, %s, %s]", operator, matchType, value)
    				}
    				parsedPolicy.Conditions.Policies = append(parsedPolicy.Conditions.Policies, struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 10:52:41 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top