Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 37 for approval (0.17 sec)

  1. src/cmd/vendor/golang.org/x/mod/module/module.go

    //
    // This file also defines the set of valid module path and version combinations,
    // another topic with many subtle considerations.
    //
    // Changes to the semantics in this file require approval from rsc.
    
    import (
    	"errors"
    	"fmt"
    	"path"
    	"sort"
    	"strings"
    	"unicode"
    	"unicode/utf8"
    
    	"golang.org/x/mod/semver"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  2. cmd/kubelet/app/options/options.go

    	tlsCipherPreferredValues := cliflag.PreferredTLSCipherNames()
    	tlsCipherInsecureValues := cliflag.InsecureTLSCipherNames()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  3. 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)
  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. 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)
  6. 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)
  7. 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)
  8. 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)
  9. cmd/kubeadm/app/phases/upgrade/postupgrade.go

    	}
    
    	// Create/update RBAC rules that makes the bootstrap tokens able to get their CSRs approved automatically
    	if err := nodebootstraptoken.AutoApproveNodeBootstrapTokens(client); err != nil {
    		errs = append(errs, err)
    	}
    
    	// Create/update RBAC rules that makes the nodes to rotate certificates and get their CSRs approved automatically
    	if err := nodebootstraptoken.AutoApproveNodeCertificateRotation(client); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/telemetry/start.go

    	// Do not make other calls to that function within your application.
    	// ReportCrashes is a non-functional unless the program is built with go1.23+.
    	ReportCrashes bool
    
    	// Upload causes this program to periodically upload approved counters
    	// from the local telemetry database to telemetry.go.dev.
    	//
    	// This option has no effect unless the user has given consent
    	// to enable data collection, for example by running
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top