Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,036 for allowGet (0.32 sec)

  1. 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)
  2. test/syntax/initvar.go

    package main
    
    func main() {
    	if var x = 0; x < 10 {}    // ERROR "var declaration not allowed in if initializer"
    
    	switch var x = 0; x {}     // ERROR "var declaration not allowed in switch initializer"
    
    	for var x = 0; x < 10; {}  // ERROR "var declaration not allowed in for initializer"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 13 23:15:32 UTC 2017
    - 467 bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. test/fixedbugs/issue18331.go

    // for code that resides in the standard library.
    package issue18331
    
    //go:unknown // ERROR "//go:unknown is not allowed in the standard library"
    func foo()
    
    //go:nowritebarrierc // ERROR "//go:nowritebarrierc is not allowed in the standard library"
    func bar()
    
    //go:noesape // ERROR "//go:noesape is not allowed in the standard library"
    func groot()
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 22:28:17 UTC 2017
    - 685 bytes
    - Viewed (0)
  7. cmd/import-boss/testdata/nested-fwd/aaa/file.go

    package aaa
    
    import (
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/allowed-by-both"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/allowed-by-root"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/allowed-by-sub"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/bbb"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/forbidden-by-both"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/forbidden-by-root"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 626 bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/imagepolicy/v1alpha1/generated.proto

      optional string namespace = 3;
    }
    
    // ImageReviewStatus is the result of the review for the pod creation request.
    message ImageReviewStatus {
      // Allowed indicates that all images were allowed to be run.
      optional bool allowed = 1;
    
      // 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: Thu Mar 28 15:34:11 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/policy/v1beta1/generated.proto

      repeated AllowedCSIDriver allowedCSIDrivers = 23;
    
      // allowedUnsafeSysctls is a list of explicitly allowed unsafe sysctls, defaults to none.
      // Each entry is either a plain sysctl name or ends in "*" in which case it is considered
      // as a prefix of allowed sysctls. Single * means all unsafe sysctls are allowed.
      // Kubelet has to allowlist all allowed unsafe sysctls explicitly to avoid rejection.
      //
      // Examples:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/authorization/v1beta1/types.go

    }
    
    // SubjectAccessReviewStatus
    type SubjectAccessReviewStatus struct {
    	// Allowed is required. True if the action would be allowed, false otherwise.
    	Allowed bool `json:"allowed" protobuf:"varint,1,opt,name=allowed"`
    	// 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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 15.1K bytes
    - Viewed (0)
Back to top