Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for notARule (0.29 sec)

  1. pilot/pkg/security/authz/builder/testdata/tcp/custom-both-http-tcp-out1.yaml

          istio-ext-authz-ns[foo]-policy[httpbin-deny]-rule[5]:
            permissions:
            - andRules:
                rules:
                - orRules:
                    rules:
                    - destinationPort: 80
                - notRule:
                    orRules:
                      rules:
                      - destinationPort: 8000
            principals:
            - andIds:
                ids:
                - orIds:
                    ids:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 15 22:42:30 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  2. pilot/pkg/security/authz/model/permission.go

    				Rules: permission,
    			},
    		},
    	}
    }
    
    func permissionNot(permission *rbacpb.Permission) *rbacpb.Permission {
    	return &rbacpb.Permission{
    		Rule: &rbacpb.Permission_NotRule{
    			NotRule: permission,
    		},
    	}
    }
    
    func permissionDestinationIP(cidr *core.CidrRange) *rbacpb.Permission {
    	return &rbacpb.Permission{
    		Rule: &rbacpb.Permission_DestinationIp{
    			DestinationIp: cidr,
    		},
    	}
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. pilot/pkg/security/authz/builder/builder.go

    	"istio.io/istio/pkg/maps"
    	"istio.io/istio/pkg/wellknown"
    )
    
    var rbacPolicyMatchNever = &rbacpb.Policy{
    	Permissions: []*rbacpb.Permission{{Rule: &rbacpb.Permission_NotRule{
    		NotRule: &rbacpb.Permission{Rule: &rbacpb.Permission_Any{Any: true}},
    	}}},
    	Principals: []*rbacpb.Principal{{Identifier: &rbacpb.Principal_NotId{
    		NotId: &rbacpb.Principal{Identifier: &rbacpb.Principal_Any{Any: true}},
    	}}},
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 20 22:15:12 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewrite.go

    	return true
    }
    
    // noteRule is an easy way to track if a rule is matched when writing
    // new ones.  Make the rule of interest also conditional on
    //
    //	noteRule("note to self: rule of interest matched")
    //
    // and that message will print when the rule matches.
    func noteRule(s string) bool {
    	fmt.Println(s)
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top