Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 332 for denbcd (0.11 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. pkg/controller/certificates/certificate_controller_utils.go

    )
    
    // IsCertificateRequestApproved returns true if a certificate request has the
    // "Approved" condition and no "Denied" conditions; false otherwise.
    func IsCertificateRequestApproved(csr *certificates.CertificateSigningRequest) bool {
    	approved, denied := GetCertApprovalCondition(&csr.Status)
    	return approved && !denied
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 02 07:05:23 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. pkg/controller/certificates/certificate_controller_utils_test.go

    	}{
    		{
    			"Not any conditions exist",
    			nil,
    			false,
    		}, {
    			"Approved not exist and Denied exist",
    			[]certificatesapi.CertificateSigningRequestCondition{
    				{
    					Type: certificatesapi.CertificateDenied,
    				},
    			},
    			false,
    		}, {
    			"Approved exist and Denied not exist",
    			[]certificatesapi.CertificateSigningRequestCondition{
    				{
    					Type: certificatesapi.CertificateApproved,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 05 22:45:34 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  10. 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)
Back to top