Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 68 for Cas (0.2 sec)

  1. cmd/kubeadm/app/phases/certs/certs.go

    func CreateCACertAndKeyFiles(certSpec *KubeadmCert, cfg *kubeadmapi.InitConfiguration) error {
    	if certSpec.CAName != "" {
    		return errors.Errorf("this function should only be used for CAs, but cert %s has CA %s", certSpec.Name, certSpec.CAName)
    	}
    	klog.V(1).Infof("creating a new certificate authority for %s", certSpec.Name)
    
    	certConfig, err := certSpec.GetConfig(cfg)
    	if err != nil {
    		return err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 05 10:17:14 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  2. architecture/ambient/ztunnel.md

    Requests for identities not running on the node are rejected.
    This is critical to ensure that a compromised node does not compromise the entire mesh.
    
    This CA enforcement is done by Istio's CA, and is a requirement for any alternative CAs integrating with Ztunnel.
    
    Note: Ztunnel authenticates to the CA with a Kubernetes Service Account JWT token, which encodes the pod information, which is what enables this.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/pkiutil/pki_helpers_test.go

    		desc          string
    		leaf          *x509.Certificate
    		intermediates []*x509.Certificate
    		root          *x509.Certificate
    		expected      bool
    	}{
    		{
    			desc:          "without any intermediate CAs",
    			leaf:          servCert,
    			intermediates: []*x509.Certificate{},
    			root:          rootCACert,
    			expected:      true,
    		},
    		{
    			desc:          "missing intermediate CA",
    			leaf:          leafCert2,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 21:49:21 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/certs.go

    			info.Certificates = append(info.Certificates, outputapiv1alpha3.Certificate{
    				Name:    handler.Name,
    				Missing: true,
    			})
    		}
    	}
    
    	for _, handler := range rm.CAs() {
    		if ok, _ := rm.CAExists(handler.Name); ok {
    			e, err := rm.GetCAExpirationInfo(handler.Name)
    			if err != nil {
    				return nil, err
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    		next := head
    		if next == nil {
    			next = &f.end
    		}
    		debugPrintf("register %s next %p\n", c.Name(), next)
    		if !wroteNext {
    			if !c.next.CompareAndSwap(nil, next) {
    				debugPrintf("register %s cas failed %p\n", c.Name(), c.next.Load())
    				continue
    			}
    			wroteNext = true
    		} else {
    			c.next.Store(next)
    		}
    		if f.counters.CompareAndSwap(head, c) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  6. pilot/pkg/bootstrap/server.go

    // and also sets up watches to them. It also detects and sets the root certificates
    // for replication.
    //
    // This will also detect the root CAs (mesh trust) and set it up for Istiod as well as
    // namespace replication, if the controller is enabled.
    //
    // Will prefer local certificates, and fallback to using the CA to sign a fresh, temporary
    // certificate.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  7. src/runtime/sys_linux_ppc64x.s

    	JMP	runtime·sigtramp(SB)
    
    sigtrampnog:
    	// Signal arrived on a non-Go thread. If this is SIGPROF, get a
    	// stack trace.
    	CMPW	R3, $27 // 27 == SIGPROF
    	BNE	sigtramp
    
    	// Lock sigprofCallersUse (cas from 0 to 1).
    	MOVW	$1, R7
    	MOVD	$runtime·sigprofCallersUse(SB), R8
    	SYNC
    	LWAR    (R8), R6
    	CMPW    $0, R6
    	BNE     sigtramp
    	STWCCC  R7, (R8)
    	BNE     -4(PC)
    	ISYNC
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  8. src/runtime/sema.go

    			// See issue 33747 for discussion.
    			goyield()
    		}
    	}
    }
    
    func cansemacquire(addr *uint32) bool {
    	for {
    		v := atomic.Load(addr)
    		if v == 0 {
    			return false
    		}
    		if atomic.Cas(addr, v, v-1) {
    			return true
    		}
    	}
    }
    
    // queue adds s to the blocked goroutines in semaRoot.
    func (root *semaRoot) queue(addr *uint32, s *sudog, lifo bool) {
    	s.g = getg()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/kubeconfig/kubeconfig.go

    	if currentConfig.Clusters[currentCluster] == nil {
    		return errors.Errorf("failed to find the given CurrentContext Cluster in Clusters of the kubeconfig file %s", kubeConfigFilePath)
    	}
    
    	// Make sure the compared CAs are whitespace-trimmed. The function clientcmd.LoadFromFile() just decodes
    	// the base64 CA and places it raw in the v1.Config object. In case the user has extra whitespace
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 27K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_server.go

    		}
    
    		// An empty list of certificateAuthorities signals to
    		// the client that it may send any certificate in response
    		// to our request. When we know the CAs we trust, then
    		// we can send them down, so that the client can choose
    		// an appropriate certificate to give to us.
    		if c.config.ClientCAs != nil {
    			certReq.certificateAuthorities = c.config.ClientCAs.Subjects()
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 27.6K bytes
    - Viewed (0)
Back to top