Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for approval (0.33 sec)

  1. staging/README.md

    1. Send an email to the SIG Architecture [mailing
       list](https://groups.google.com/forum/#!forum/kubernetes-sig-architecture)
       and the mailing list of the SIG which would own the repo requesting approval
       for creating the staging repository.
    
    2. Once approval has been granted, create the new staging repository.
    
    3. Update
       [`import-restrictions.yaml`](/staging/publishing/import-restrictions.yaml)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 11:23:09 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. api/openapi-spec/swagger.json

              "type": "string"
            },
            "type": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers.go

    	return []metav1.TableRow{row}, nil
    }
    
    func extractCSRStatus(csr *certificates.CertificateSigningRequest) string {
    	var approved, denied, failed bool
    	for _, c := range csr.Status.Conditions {
    		switch c.Type {
    		case certificates.CertificateApproved:
    			approved = true
    		case certificates.CertificateDenied:
    			denied = true
    		case certificates.CertificateFailed:
    			failed = true
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  4. pkg/printers/internalversion/printers_test.go

    			// Columns: Name, Age, SignerName, Requestor, RequestedDuration, Condition
    			expected: []metav1.TableRow{{Cells: []interface{}{"csr2", "0s", "example.com/test-signer", "CSR Requestor", "7d1h", "Approved"}}},
    		},
    		// Basic CSR with Spec and Status=Approved; certificate issued.
    		{
    			csr: certificates.CertificateSigningRequest{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "csr2",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  5. pkg/generated/openapi/zz_generated.openapi.go

    					"type": {
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  6. 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)
  7. docs/en/docs/release-notes.md

    * 👷 Set GitHub Action Label Approved to run daily, not every minute. PR [#2163](https://github.com/tiangolo/fastapi/pull/2163) by [@tiangolo](https://github.com/tiangolo).
    * 🔥 Remove pr-approvals GitHub Action as it's not compatible with forks. Use the new one. PR [#2162](https://github.com/tiangolo/fastapi/pull/2162) by [@tiangolo](https://github.com/tiangolo).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  8. 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)
  9. cluster/gce/gci/configure-helper.sh

      fi
      iptables -w -t mangle -I OUTPUT -s 169.254.169.254 -j DROP
    
      # Log all metadata access not from approved processes.
      case "${METADATA_SERVER_FIREWALL_MODE:-off}" in
        log)
          echo "Installing metadata firewall logging rules"
          gce-metadata-fw-helper -I LOG "MetadataServerFirewallReject" !
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
Back to top