Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for approval (0.15 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    	// if the approval state hasn't changed, never fail on approval validation
    	// this is allowed so that a v1 client that is simply updating spec and not mutating this value doesn't get rejected.  Imagine a controller controlling a CRD spec.
    	if oldApprovalState != nil && *oldApprovalState == newApprovalState {
    		return nil
    	}
    
    	// in v1, we require valid approval strings
    	switch newApprovalState {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  2. api/discovery/aggregated_v2.json

                      "responseKind": {
                        "group": "",
                        "kind": "CertificateSigningRequest",
                        "version": ""
                      },
                      "subresource": "approval",
                      "verbs": [
                        "get",
                        "patch",
                        "update"
                      ]
                    },
                    {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:29:14 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. api/discovery/aggregated_v2beta1.json

                      "responseKind": {
                        "group": "",
                        "kind": "CertificateSigningRequest",
                        "version": ""
                      },
                      "subresource": "approval",
                      "verbs": [
                        "get",
                        "patch",
                        "update"
                      ]
                    },
                    {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. pkg/apis/certificates/validation/validation_test.go

    		}},
    		oldCSR: &capi.CertificateSigningRequest{ObjectMeta: validUpdateMetaWithFinalizers, Spec: validSpec},
    		errs: []string{
    			`status.conditions: Forbidden: updates may not add a condition of type "Approved"`,
    		},
    	}, {
    		name:   "remove Approved condition",
    		newCSR: &capi.CertificateSigningRequest{ObjectMeta: validUpdateMeta, Spec: validSpec},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  5. cluster/gce/windows/k8s-node-setup.psm1

    #  - Always use single-quoted strings unless actually interpolating variables
    #    or using escape characters.
    #  - Use "approved verbs":
    #    https://docs.microsoft.com/en-us/powershell/developer/cmdlet/approved-verbs-for-windows-powershell-commands
    #  - Document functions using proper syntax:
    #    https://technet.microsoft.com/en-us/library/hh847834(v=wps.620).aspx
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/values_types.proto

      //
      // Deprecated: replaced by the affinity k8s settings which allows architecture nodeAffinity configuration of this behavior.
      ArchConfig arch = 1 [deprecated = true];
    
      // List of certSigners to allow "approve" action in the ClusterRole
      repeated string certSigners = 68;
    
      // TODO: remove this?
      // No longer used.
      string configRootNamespace = 50;
    
      // Controls whether the server-side validation is enabled.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  7. src/net/http/transport.go

    	// writing the request headers if the request has an
    	// "Expect: 100-continue" header. Zero means no timeout and
    	// causes the body to be sent immediately, without
    	// waiting for the server to approve.
    	// This time does not include the time to send the request header.
    	ExpectContinueTimeout time.Duration
    
    	// TLSNextProto specifies how the Transport switches to an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top