Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for PathMatcher (0.17 sec)

  1. pilot/pkg/security/authz/model/permission.go

    func permissionHeader(header *routepb.HeaderMatcher) *rbacpb.Permission {
    	return &rbacpb.Permission{
    		Rule: &rbacpb.Permission_Header{
    			Header: header,
    		},
    	}
    }
    
    func permissionPath(path *matcher.PathMatcher) *rbacpb.Permission {
    	return &rbacpb.Permission{
    		Rule: &rbacpb.Permission_UrlPath{
    			UrlPath: path,
    		},
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. pilot/pkg/security/authz/model/model.go

    	attrEnvoyFilter      = "experimental.envoy.filters." // an experimental attribute for checking Envoy Metadata directly.
    
    	// Internal names used to generate corresponding Envoy matcher.
    	methodHeader = ":method"
    	pathMatcher  = "path-matcher"
    	hostHeader   = ":authority"
    )
    
    type rule struct {
    	key       string
    	values    []string
    	notValues []string
    	g         generator
    	// This generator aggregates value predicates
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. pilot/pkg/security/authz/model/generator.go

    		return nil, fmt.Errorf("%q is HTTP only", key)
    	}
    
    	if security.ContainsPathTemplate(value) {
    		m := matcher.PathTemplateMatcher(value)
    		return permissionPathTemplate(m), nil
    	}
    
    	m := matcher.PathMatcher(value)
    	return permissionPath(m), nil
    }
    
    func (pathGenerator) principal(key, value string, forTCP bool, _ bool) (*rbacpb.Principal, error) {
    	return nil, fmt.Errorf("unimplemented")
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 18:02:42 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.api.internal.file.pattern.PathMatcher> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (PathMatcher.java:0)
    Class <org.gradle.api.internal.file.pattern.PatternMatcher$1> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (PatternMatcher.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top