Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,036 for allowGet (0.22 sec)

  1. common-protos/k8s.io/api/authorization/v1beta1/generated.proto

    message SubjectAccessReviewStatus {
      // Allowed is required. True if the action would be allowed, false otherwise.
      optional bool allowed = 1;
    
      // Denied is optional. True if the action would be denied, otherwise
      // false. If both allowed is false and denied is false, then the
      // authorizer has no opinion on whether to authorize the action. Denied
      // may not be true if Allowed is true.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/authorization/v1/generated.proto

    message SubjectAccessReviewStatus {
      // Allowed is required. True if the action would be allowed, false otherwise.
      optional bool allowed = 1;
    
      // Denied is optional. True if the action would be denied, otherwise
      // false. If both allowed is false and denied is false, then the
      // authorizer has no opinion on whether to authorize the action. Denied
      // may not be true if Allowed is true.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/authorization/v1/generated.proto

    message SubjectAccessReviewStatus {
      // Allowed is required. True if the action would be allowed, false otherwise.
      optional bool allowed = 1;
    
      // Denied is optional. True if the action would be denied, otherwise
      // false. If both allowed is false and denied is false, then the
      // authorizer has no opinion on whether to authorize the action. Denied
      // may not be true if Allowed is true.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/authorization/v1beta1/generated.proto

    message SubjectAccessReviewStatus {
      // Allowed is required. True if the action would be allowed, false otherwise.
      optional bool allowed = 1;
    
      // Denied is optional. True if the action would be denied, otherwise
      // false. If both allowed is false and denied is false, then the
      // authorizer has no opinion on whether to authorize the action. Denied
      // may not be true if Allowed is true.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. tests/integration/security/testdata/authz/allow-principal.yaml.tmpl

          from:
            - source:
                principals: [ "{{ .Allowed.ServiceAccountName }}" ]
        - to:
            - operation: # GRPC
                ports: [ "{{ (.To.PortForName `grpc`).WorkloadPort }}" ]
                paths: [ "/proto.EchoTestService/Echo" ]
                methods: [ "POST" ]
          from:
            - source:
                principals: [ "{{ .Allowed.ServiceAccountName }}" ]
        - to:
            - operation: # TCP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 998 bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/AbstractFileSystemAccessTest.groovy

            private void checkIfAllowed() {
                if (!hashingAllowed) {
                    throw new UnsupportedOperationException("Hashing is currently not allowed")
                }
            }
    
            void allowHashing(boolean allowed) {
                this.hashingAllowed = allowed
            }
        }
    
        static class AllowingStat implements Stat {
    
            private final Stat delegate
            private boolean statAllowed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:55 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. pkg/controller/certificates/approver/sarapprove_test.go

    		t.Run(fmt.Sprintf("recognized:%v,allowed: %v,err: %v", c.recognized, c.allowed, c.err), func(t *testing.T) {
    			client := &fake.Clientset{}
    			client.AddReactor("create", "subjectaccessreviews", func(action testclient.Action) (handled bool, ret runtime.Object, err error) {
    				return true, &authorization.SubjectAccessReview{
    					Status: authorization.SubjectAccessReviewStatus{
    						Allowed: c.allowed,
    					},
    				}, nil
    			})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 02 21:12:04 UTC 2022
    - 7.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/imagepolicy/v1alpha1/types.go

    }
    
    // ImageReviewStatus is the result of the review for the pod creation request.
    type ImageReviewStatus struct {
    	// Allowed indicates that all images were allowed to be run.
    	Allowed bool `json:"allowed" protobuf:"varint,1,opt,name=allowed"`
    	// Reason should be empty unless Allowed is false in which case it
    	// may contain a short description of what is wrong.  Kubernetes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. plugin/pkg/auth/authorizer/node/node_authorizer_test.go

    		expect   authorizer.Decision
    		features featuregate.FeatureGate
    	}{
    		{
    			name:   "allowed configmap",
    			attrs:  authorizer.AttributesRecord{User: node0, ResourceRequest: true, Verb: "get", Resource: "configmaps", Name: "configmap0-pod0-node0", Namespace: "ns0"},
    			expect: authorizer.DecisionAllow,
    		},
    		{
    			name:   "allowed secret via pod",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  10. test/fixedbugs/issue14999.go

    package p
    
    func f(x int) func(int) int {
    	return func(y int) int { return x + y } // ERROR "heap-allocated closure f\.func1, not allowed in runtime"
    }
    
    func g(x int) func(int) int { // ERROR "x escapes to heap, not allowed in runtime"
    	return func(y int) int { // ERROR "heap-allocated closure g\.func1, not allowed in runtime"
    		x += y
    		return x + y
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 04 17:00:19 UTC 2021
    - 535 bytes
    - Viewed (0)
Back to top