Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 68 for approval (0.23 sec)

  1. hack/verify-licenses.sh

    echo '[INFO] Installing go-licenses...'
    go install github.com/google/go-licenses@latest
    
    # Fetching CNCF Approved List Of Licenses
    # Refer: https://github.com/cncf/foundation/blob/main/allowed-third-party-license-policy.md
    curl -s 'https://spdx.org/licenses/licenses.json' -o "${ARTIFACTS}"/licenses.json
    
    echo '[INFO] Fetching current list of CNCF approved licenses...'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. src/crypto/internal/boring/fipstls/tls.go

    // Package fipstls allows control over whether crypto/tls requires FIPS-approved settings.
    // This package only exists with GOEXPERIMENT=boringcrypto, but the effects are independent
    // of the use of BoringCrypto.
    package fipstls
    
    import (
    	"internal/stringslite"
    	"sync/atomic"
    )
    
    var required atomic.Bool
    
    // Force forces crypto/tls to restrict TLS configurations to FIPS-approved settings.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 14:00:54 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.8.md

    * kubectl logs with label selector supports specifying a container name ([#44282](https://github.com/kubernetes/kubernetes/pull/44282), [@derekwaynecarr](https://github.com/derekwaynecarr))
    * Adds an approval work flow to the certificate approver that will approve certificate signing requests from kubelets that meet all the criteria of kubelet server certificates. ([#46884](https://github.com/kubernetes/kubernetes/pull/46884), [@jcbsmpsn](https://github.com/jcbsmpsn))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  4. pkg/registry/certificates/certificates/strategy_test.go

    					Username: "alice",
    					UID:      "234",
    					Groups:   nil,
    				},
    				Status: certapi.CertificateSigningRequestStatus{Conditions: []certapi.CertificateSigningRequestCondition{}},
    			},
    		},
    		"pre-approved status": {
    			ctx: genericapirequest.NewContext(),
    			obj: &certapi.CertificateSigningRequest{
    				Status: certapi.CertificateSigningRequestStatus{
    					Conditions: []certapi.CertificateSigningRequestCondition{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. CONTRIBUTING.md

    -   If all looks good, the reviewer will approve the PR.
    -   If a change is needed, the contributor is requested to make the suggested
        change.
    -   You make the change and submit it for the review again.
    -   This cycle repeats itself until the PR gets approved.
    -   Note: As a friendly reminder, we may reach out to you if the PR is awaiting
        your response for more than 2 weeks.
    
    **4. Approved**
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 11:45:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  6. security/pkg/k8s/chiron/utils_test.go

    					log.Debugf("test signer sign %v: %v", csr.Name, err)
    				} else {
    					log.Debugf("test signer skip, not approved: %v", csr.Name)
    				}
    			}
    		}
    	}()
    	return client
    }
    
    func approved(csr *cert.CertificateSigningRequest) bool {
    	return GetCondition(csr.Status.Conditions, cert.CertificateApproved).Status == corev1.ConditionTrue
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 03:58:11 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. docs/distributed/CONFIG.md

    MinIO server configuration file allows users to provide topology that allows for heterogeneous hostnames, allowing MinIO to deployed in pre-existing environments without any further OS level configurations.
    
    ### Usage
    
    ```
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 03 15:54:03 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/README.md

      command is used for managing telemetry data and configuration.
    - The [x/telemetry/config](https://pkg.go.dev/pkg/golang.org/x/telemetry/config)
      package defines the subset of telemetry data that has been approved for
      uploading by the telemetry proposal process.
    - The [x/telemetry/godev](https://pkg.go.dev/pkg/golang.org/x/telemetry/godev) directory defines
      the services running at [telemetry.go.dev](https://telemetry.go.dev).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/constants/constants.go

    	// Starting from v1.8, CSRAutoApprovalClusterRoleName is automatically created by the API server on startup
    	CSRAutoApprovalClusterRoleName = "system:certificates.k8s.io:certificatesigningrequests:nodeclient"
    	// NodeSelfCSRAutoApprovalClusterRoleName is a role defined in default 1.8 RBAC policies for automatic CSR approvals for automatically rotated node certificates
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  10. docs/en/docs/help-fastapi.md

    * Then **comment** saying that you did that, that's how I will know you really checked it.
    
    !!! info
        Unfortunately, I can't simply trust PRs that just have several approvals.
    
        Several times it has happened that there are PRs with 3, 5 or more approvals, probably because the description is appealing, but when I check the PRs, they are actually broken, have a bug, or don't solve the problem they claim to solve. 😅
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 13.7K bytes
    - Viewed (0)
Back to top