Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,879 for allowGet (0.13 sec)

  1. src/cmd/go/testdata/script/mod_internal.txt

    go get ./baddep
    ! go build ./baddep
    stderr golang.org[/\\]notx[/\\]useinternal
    stderr 'use of internal package golang.org/x/.* not allowed'
    
    # Internal packages in the standard library should not leak into modules.
    go get ./fromstd
    ! go build ./fromstd
    stderr 'use of internal package internal/testenv not allowed'
    
    # Dependencies should be able to use their own internal modules...
    go mod edit -module=golang.org/notx
    go get ./throughdep
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  2. cmd/import-boss/testdata/transitive/allowed/file.go

    package allowed
    
    import (
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/transitive/allowed/a2"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/transitive/forbidden/f2"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/transitive/neither/n2"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 259 bytes
    - Viewed (0)
  3. cmd/import-boss/testdata/simple-fwd/allowed/file.go

    package allowed
    
    import (
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/simple-fwd/allowed/a2"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/simple-fwd/forbidden/f2"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/simple-fwd/neither/n2"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 259 bytes
    - Viewed (0)
  4. pkg/registry/authorization/subjectaccessreview/rest_test.go

    			decision: authorizer.DecisionAllow,
    			reason:   "allowed",
    			err:      nil,
    			expectedAttrs: authorizer.AttributesRecord{
    				User:            &user.DefaultInfo{Name: "bob"},
    				Verb:            "get",
    				Path:            "/mypath",
    				ResourceRequest: false,
    			},
    			expectedStatus: authorizationapi.SubjectAccessReviewStatus{
    				Allowed:         true,
    				Reason:          "allowed",
    				EvaluationError: "",
    			},
    		},
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 25 16:06:18 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  5. plugin/pkg/admission/certificates/ctbattest/admission_test.go

    			p.InspectFeatureGates(feature.DefaultFeatureGate)
    
    			err := p.Validate(context.Background(), tc.attributes, nil)
    			if err == nil && !tc.allowed {
    				t.Errorf("Expected authorization policy to reject ClusterTrustBundle but it was allowed")
    			}
    			if err != nil && tc.allowed {
    				t.Errorf("Expected authorization policy to accept ClusterTrustBundle but it was rejected: %v", err)
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. tests/integration/security/testdata/authz/allow-namespace.yaml.tmpl

          from:
            - source:
                namespaces: [ "{{ .Allowed.NamespaceName }}" ]
        - to:
            - operation: # GRPC
                ports: [ "{{ (.To.PortForName `grpc`).WorkloadPort }}" ]
                paths: [ "/proto.EchoTestService/Echo" ]
                methods: [ "POST" ]
          from:
            - source:
                namespaces: [ "{{ .Allowed.NamespaceName }}" ]
        - to:
            - operation: # TCP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 983 bytes
    - Viewed (0)
  7. cmd/import-boss/testdata/inverse/allowed/file.go

    package allowed
    
    import (
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/inverse/allowed/a2"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/inverse/forbidden/f2"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/inverse/neither/n2"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 250 bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/authorization/v1/types_swagger_doc_generated.go

    	"":                "SubjectAccessReviewStatus",
    	"allowed":         "Allowed is required. True if the action would be allowed, false otherwise.",
    	"denied":          "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.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/imagepolicy/v1alpha1/types_swagger_doc_generated.go

    }
    
    var map_ImageReviewStatus = map[string]string{
    	"":                 "ImageReviewStatus is the result of the review for the pod creation request.",
    	"allowed":          "Allowed indicates that all images were allowed to be run.",
    	"reason":           "Reason should be empty unless Allowed is false in which case it may contain a short description of what is wrong.  Kubernetes may truncate excessively long errors when displaying to the user.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/testdata/reference-policy-tcp.yaml.golden

          protocol: TCP
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      annotations:
        internal.istio.io/parents: TCPRoute/allowed-my-svc.istio-system
        internal.istio.io/route-semantics: gateway
      creationTimestamp: null
      name: allowed-my-svc-tcp-0-istio-autogenerated-k8s-gateway
      namespace: istio-system
    spec:
      gateways:
      - istio-system/gateway-istio-autogenerated-k8s-gateway-my-svc
      hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 18:54:10 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top