Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 277 for patchtype (0.15 sec)

  1. pkg/apis/networking/v1beta1/defaults_test.go

    		expected *networkingv1beta1.HTTPIngressPath
    	}{
    		"empty pathType should default to ImplementationSpecific": {
    			original: &networkingv1beta1.HTTPIngressPath{},
    			expected: &networkingv1beta1.HTTPIngressPath{PathType: &pathTypeImplementationSpecific},
    		},
    		"ImplementationSpecific pathType should not change": {
    			original: &networkingv1beta1.HTTPIngressPath{PathType: &pathTypeImplementationSpecific},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 03 19:11:16 UTC 2020
    - 3.4K bytes
    - Viewed (0)
  2. samples/bookinfo/platform/kube/bookinfo-ingress.yaml

          paths:
          - path: /productpage
            pathType: Exact
            backend:
              service:
                name: productpage
                port:
                  number: 9080
          - path: /static/
            pathType: Prefix
            backend:
              service:
                name: productpage
                port:
                  number: 9080
          - path: /login
            pathType: Exact
            backend:
              service:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 28 04:24:35 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  3. 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)
  4. pilot/pkg/config/kube/ingress/testdata/simple.yaml

                  number: 4205
          # Subpath without trailing /, Exact match
          - path: /sub/path
            pathType: Exact
            backend:
              service:
                name: service1
                port:
                  number: 4206
            # With a trailing /, Exact match
          - path: /sub/path/
            pathType: Exact
            backend:
              service:
                name: service1
                port:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 10 16:43:09 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. 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)
  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. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/ResolvingFromSingleCustomPluginRepositorySpec.groovy

            IVY      | PathType.ABSOLUTE
            IVY      | PathType.RELATIVE
            MAVEN    | PathType.ABSOLUTE
            MAVEN    | PathType.RELATIVE
        }
    
        def "can access classes from plugin from #repoType repo"() {
            given:
            publishTestPlugin(repoType)
            buildScript """
              plugins {
                  id "org.example.plugin" version "1.0"
              }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:30:55 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. pkg/apis/networking/validation/validation_test.go

    				ing.Spec.Rules[0].IngressRuleValue.HTTP.Paths[0].PathType = &pathTypeFoo
    			},
    			expectErrsOnFields: []string{
    				"spec.rules[0].http.paths[0].pathType",
    			},
    		},
    		"empty path (prefix)": {
    			tweakIngress: func(ing *networking.Ingress) {
    				ing.Spec.Rules[0].IngressRuleValue.HTTP.Paths[0].Path = ""
    				ing.Spec.Rules[0].IngressRuleValue.HTTP.Paths[0].PathType = &pathTypePrefix
    			},
    			expectErrsOnFields: []string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
  9. pkg/apis/networking/v1beta1/defaults.go

    	return RegisterDefaults(scheme)
    }
    
    func SetDefaults_HTTPIngressPath(obj *networkingv1beta1.HTTPIngressPath) {
    	var defaultPathType = networkingv1beta1.PathTypeImplementationSpecific
    	if obj.PathType == nil {
    		obj.PathType = &defaultPathType
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 03 19:11:16 UTC 2020
    - 990 bytes
    - Viewed (0)
  10. pkg/volume/hostpath/host_path.go

    }
    
    // checkType checks whether the given path is the exact pathType
    func checkType(path string, pathType *v1.HostPathType, hu hostutil.HostUtils) error {
    	return checkTypeInternal(newFileTypeChecker(path, hu), pathType)
    }
    
    func checkTypeInternal(ftc hostPathTypeChecker, pathType *v1.HostPathType) error {
    	switch *pathType {
    	case v1.HostPathDirectoryOrCreate:
    		if !ftc.Exists() {
    			return ftc.MakeDir()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top