Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for matchAnyAndOne (0.13 sec)

  1. pilot/pkg/security/authz/matcher/template_test.go

    			},
    		},
    		{
    			name: "matchAnyOnly",
    			path: "/foo/{**}/bar",
    			want: &uri_template.UriTemplateMatchConfig{
    				PathTemplate: "/foo/**/bar",
    			},
    		},
    		{
    			name: "matchAnyAndOne",
    			path: "/{*}/foo/{**}/bar",
    			want: &uri_template.UriTemplateMatchConfig{
    				PathTemplate: "/*/foo/**/bar",
    			},
    		},
    		{
    			name: "matchAnyAndMultipleOnes",
    			path: "/{*}/{*}/foo/{**}/bar",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. pkg/config/security/security_test.go

    			path:           "foo/bar/{*}",
    			isPathTemplate: true,
    		},
    		{
    			name:           "matchAnyOnly",
    			path:           "foo/{**}/bar",
    			isPathTemplate: true,
    		},
    		{
    			name:           "matchAnyAndOne",
    			path:           "{*}/bar/{**}",
    			isPathTemplate: true,
    		},
    		{
    			name:           "stringMatch",
    			path:           "foo/bar/*",
    			isPathTemplate: false,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top