Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 298 for denbcd (0.1 sec)

  1. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    	DDEDPDQCC:      "ddedpdq.",
    	DDIV:           "ddiv",
    	DDIVCC:         "ddiv.",
    	DDIVQ:          "ddivq",
    	DDIVQCC:        "ddivq.",
    	DENBCD:         "denbcd",
    	DENBCDCC:       "denbcd.",
    	DENBCDQ:        "denbcdq",
    	DENBCDQCC:      "denbcdq.",
    	DIEX:           "diex",
    	DIEXCC:         "diex.",
    	DIEXQCC:        "diexq.",
    	DIEXQ:          "diexq",
    	DMUL:           "dmul",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
  2. tests/integration/security/testdata/authz/deny-namespace.yaml.tmpl

          from:
            - source:
                namespaces: [ "{{ .Denied.NamespaceName }}" ]
        - to:
            - operation: # GRPC
                ports: [ "{{ (.To.PortForName `grpc`).WorkloadPort }}" ]
                paths: [ "/proto.EchoTestService/Echo" ]
                methods: [ "POST" ]
          from:
            - source:
                namespaces: [ "{{ .Denied.NamespaceName }}" ]
        - to:
            - operation: # TCP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 1017 bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/certificates/v1/types_swagger_doc_generated.go

    	"type":               "type of the condition. Known conditions are \"Approved\", \"Denied\", and \"Failed\".\n\nAn \"Approved\" condition is added via the /approval subresource, indicating the request was approved and should be issued by the signer.\n\nA \"Denied\" condition is added via the /approval subresource, indicating the request was denied and should not be issued by the signer.\n\nA \"Failed\" condition is added via the /status subresource, indicating the...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  4. releasenotes/notes/46968.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: security
    issue:
    - 46951
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 15 04:13:49 UTC 2023
    - 304 bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/certificates/v1/types.go

    const (
    	// Approved indicates the request was approved and should be issued by the signer.
    	CertificateApproved RequestConditionType = "Approved"
    	// Denied indicates the request was denied and should not be issued by the signer.
    	CertificateDenied RequestConditionType = "Denied"
    	// Failed indicates the signer failed to issue the certificate.
    	CertificateFailed RequestConditionType = "Failed"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/certificates/v1/generated.proto

      // type of the condition. Known conditions are "Approved", "Denied", and "Failed".
      //
      // An "Approved" condition is added via the /approval subresource,
      // indicating the request was approved and should be issued by the signer.
      //
      // A "Denied" condition is added via the /approval subresource,
      // indicating the request was denied and should not be issued by the signer.
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/certificates/v1/generated.proto

      // type of the condition. Known conditions are "Approved", "Denied", and "Failed".
      //
      // An "Approved" condition is added via the /approval subresource,
      // indicating the request was approved and should be issued by the signer.
      //
      // A "Denied" condition is added via the /approval subresource,
      // indicating the request was denied and should not be issued by the signer.
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. tests/integration/security/authz_test.go

    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			allowed := apps.Ns1.A
    			denied := apps.Ns2.A
    
    			newTrafficTest(t, apps.Ns1.All.Instances().Append(denied)).
    				Config(config.File("testdata/authz/plaintext.yaml.tmpl").WithParams(param.Params{
    					"Denied": denied,
    					// The namespaces for each resource are specified in the file. Use "" as the ns to apply to.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  9. tests/integration/security/testdata/authz/deny-principal.yaml.tmpl

          from:
            - source:
                principals: [ "{{ .Denied.ServiceAccountName }}" ]
        - to:
            - operation: # GRPC
                ports: [ "{{ (.To.PortForName `grpc`).WorkloadPort }}" ]
                paths: [ "/proto.EchoTestService/Echo" ]
                methods: [ "POST" ]
          from:
            - source:
                principals: [ "{{ .Denied.ServiceAccountName }}" ]
        - to:
            - operation: # TCP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 1K bytes
    - Viewed (0)
  10. src/internal/testenv/testenv_unix.go

    			// User lacks permission: either the call requires root permission and the
    			// user is not root, or the call is denied by a container security policy.
    			return true
    		case syscall.EINVAL:
    			// Some containers return EINVAL instead of EPERM if a system call is
    			// denied by security policy.
    			return true
    		}
    	}
    
    	if errors.Is(err, fs.ErrPermission) || errors.Is(err, errors.ErrUnsupported) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 17:44:01 UTC 2023
    - 994 bytes
    - Viewed (0)
Back to top