Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 105 for PatchType (0.21 sec)

  1. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/DependencyInsightReportTask.java

                    return new AttributeMatchDetails(MatchType.INCOMPATIBLE, requested, requestedValue);
                }
            }
            return new AttributeMatchDetails(MatchType.NOT_REQUESTED, null, null);
        }
    
        private static final class RootDependencyRenderer implements NodeRenderer {
            private final DependencyInsightReportTask task;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/ingress/conversion.go

    		return &networking.StringMatch{
    			MatchType: &networking.StringMatch_Prefix{Prefix: strings.TrimSuffix(s, ".*")},
    		}
    	}
    	if strings.HasSuffix(s, "/*") {
    		return &networking.StringMatch{
    			MatchType: &networking.StringMatch_Prefix{Prefix: strings.TrimSuffix(s, "/*")},
    		}
    	}
    
    	// Replace e.g. "foo" with a exact match
    	return &networking.StringMatch{
    		MatchType: &networking.StringMatch_Exact{Exact: s},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 25 07:19:43 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/route/route_test.go

    					{
    						Name: "non-catch-all",
    						Uri: &networking.StringMatch{
    							MatchType: &networking.StringMatch_Prefix{
    								Prefix: "/route/v1",
    							},
    						},
    					},
    					{
    						Name: "catch-all",
    						Uri: &networking.StringMatch{
    							MatchType: &networking.StringMatch_Prefix{
    								Prefix: "/",
    							},
    						},
    					},
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/policies.go

    				Groups: []*security.Group{
    					{
    						Rules: []*security.Rules{
    							{
    								Matches: []*security.Match{
    									{
    										NotPrincipals: []*security.StringMatch{
    											{
    												MatchType: &security.StringMatch_Presence{},
    											},
    										},
    									},
    								},
    							},
    						},
    					},
    				},
    			},
    		}
    	}, krt.WithName("DefaultPolicy"))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/conversion.go

    			dest = strings.TrimSuffix(dest, "/")
    		}
    		return &istio.StringMatch{
    			MatchType: &istio.StringMatch_Prefix{Prefix: dest},
    		}, nil
    	case k8s.PathMatchExact:
    		return &istio.StringMatch{
    			MatchType: &istio.StringMatch_Exact{Exact: dest},
    		}, nil
    	case k8s.PathMatchRegularExpression:
    		return &istio.StringMatch{
    			MatchType: &istio.StringMatch_Regex{Regex: dest},
    		}, nil
    	default:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  6. istioctl/pkg/describe/describe_test.go

    						Gateways: []string{"fake-gw"},
    						Http: []*v1alpha32.HTTPRoute{
    							{
    								Match: []*v1alpha32.HTTPMatchRequest{
    									{
    										Uri: &v1alpha32.StringMatch{
    											MatchType: &v1alpha32.StringMatch_Prefix{
    												Prefix: "/prefix",
    											},
    										},
    									},
    								},
    								Route: []*v1alpha32.HTTPRouteDestination{
    									{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:54:01 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  7. pkg/config/validation/validation_test.go

    			MaxAge:        &durationpb.Duration{Seconds: 2, Nanos: 42},
    		}, valid: false},
    		{name: "empty matchType AllowOrigins", in: &networking.CorsPolicy{
    			AllowOrigins: []*networking.StringMatch{
    				{MatchType: &networking.StringMatch_Exact{Exact: ""}},
    				{MatchType: &networking.StringMatch_Prefix{Prefix: ""}},
    				{MatchType: &networking.StringMatch_Regex{Regex: ""}},
    			},
    			AllowMethods:  []string{"GET", "POST"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    						t.Fatalf("Delete failed: %v", err)
    					}
    				}
    				if watchTest.expectEvent {
    					expectObj := out
    					if watchTest.watchType == watch.Deleted {
    						expectObj = prevObj
    						expectObj.ResourceVersion = out.ResourceVersion
    					}
    					testCheckResult(t, w, watch.Event{Type: watchTest.watchType, Object: expectObj})
    				}
    				prevObj = out
    			}
    			w.Stop()
    			testCheckStop(t, w)
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  9. pkg/workloadapi/security/authorization.pb.go

    	state         protoimpl.MessageState
    	sizeCache     protoimpl.SizeCache
    	unknownFields protoimpl.UnknownFields
    
    	// Types that are assignable to MatchType:
    	//
    	//	*StringMatch_Exact
    	//	*StringMatch_Prefix
    	//	*StringMatch_Suffix
    	//	*StringMatch_Presence
    	MatchType isStringMatch_MatchType `protobuf_oneof:"match_type"`
    }
    
    func (x *StringMatch) Reset() {
    	*x = StringMatch{}
    	if protoimpl.UnsafeEnabled {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/types.go

    		}
    
    		if len(terms) == 0 {
    			// No restrictions on the underlying of typ. Type parameters implementing
    			// error, fmt.Formatter, or fmt.Stringer were handled above, and %v and
    			// %T was handled in matchType. We're about to check restrictions the
    			// underlying; if the underlying type is unrestricted there must be an
    			// element of the type set that violates one of the arg type checks
    			// below, so we can safely return false here.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top