Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for leaf3 (0.04 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolveConfigurationDependenciesBuildOperationIntegrationTest.groovy

            MavenHttpModule b
            MavenHttpModule leaf1
            MavenHttpModule leaf2
            mavenHttpRepo.with {
                a = module('org', 'a', '1.0').dependsOn('org', 'leaf', '1.0').publish()
                b = module('org', 'b', '1.0').dependsOn('org', 'leaf', '2.0').publish()
                leaf1 = module('org', 'leaf', '1.0').publish()
                leaf2 = module('org', 'leaf', '2.0').publish()
            }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  2. src/crypto/x509/name_constraints_test.go

    }
    
    func makeConstraintsLeafCert(leaf leafSpec, key *ecdsa.PrivateKey, parent *Certificate, parentKey *ecdsa.PrivateKey) (*Certificate, error) {
    	var serialBytes [16]byte
    	rand.Read(serialBytes[:])
    
    	template := &Certificate{
    		SerialNumber: new(big.Int).SetBytes(serialBytes[:]),
    		Subject: pkix.Name{
    			OrganizationalUnit: []string{"Leaf"},
    			CommonName:         leaf.cn,
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  3. src/crypto/tls/boring_test.go

    		return
    	}
    
    	for l := 1; l <= 2; l++ {
    		leaf := L1_I
    		if l == 2 {
    			leaf = L2_I
    		}
    		for i := 0; i < 64; i++ {
    			reachable := map[string]bool{leaf.parentOrg: true}
    			reachableFIPS := map[string]bool{leaf.parentOrg: leaf.fipsOK}
    			list := [][]byte{leaf.der}
    			listName := leaf.name
    			addList := func(cond int, c *boringCertificate) {
    				if cond != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. src/crypto/tls/tls.go

    // files. The files must contain PEM encoded data. The certificate file may
    // contain intermediate certificates following the leaf certificate to form a
    // certificate chain. On successful return, Certificate.Leaf will be populated.
    //
    // Before Go 1.23 Certificate.Leaf was left nil, and the parsed certificate was
    // discarded. This behavior can be re-enabled by setting "x509keypairleaf=0"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/certs/certlist.go

    				for _, leaf := range leaves {
    					cl := certKeyLocation{
    						pkiDir:   ic.CertificatesDir,
    						baseName: leaf.BaseName,
    						uxName:   leaf.Name,
    					}
    					if err := validateSignedCertWithCA(cl, caCert); err != nil {
    						return errors.Wrapf(err, "could not load expected certificate %q or validate the existence of key %q for it", leaf.Name, ca.Name)
    					}
    				}
    				continue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/obj9.go

    			autosize = int32(textstksiz)
    
    			if p.Mark&LEAF != 0 && autosize == 0 {
    				// A leaf function with no locals has no frame.
    				p.From.Sym.Set(obj.AttrNoFrame, true)
    			}
    
    			if !p.From.Sym.NoFrame() {
    				// If there is a stack frame at all, it includes
    				// space to save the LR.
    				autosize += int32(c.ctxt.Arch.FixedFrameSize)
    			}
    
    			if p.Mark&LEAF != 0 && autosize < abi.StackSmall {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  7. src/runtime/lockrank.go

    // Code generated by mklockrank.go; DO NOT EDIT.
    
    package runtime
    
    type lockRank int
    
    // Constants representing the ranks of all non-leaf runtime locks, in rank order.
    // Locks with lower rank must be taken before locks with higher rank,
    // in addition to satisfying the partial order in lockPartialOrder.
    // A few ranks allow self-cycles, which are specified in lockPartialOrder.
    const (
    	lockRankUnknown lockRank = iota
    
    	lockRankSysmon
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  8. src/crypto/x509/verify.go

    	// DNSName, if set, is checked against the leaf certificate with
    	// Certificate.VerifyHostname or the platform verifier.
    	DNSName string
    
    	// Intermediates is an optional pool of certificates that are not trust
    	// anchors, but can be used to form a chain from the leaf certificate to a
    	// root certificate.
    	Intermediates *CertPool
    	// Roots is the set of trusted root certificates the leaf certificate needs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  9. src/runtime/tracestack.go

    			//
    			// (1) We're called on the g0 stack through mcall(fn) or systemstack(fn). To
    			// behave like gcallers above, we start unwinding from sched.bp, which
    			// points to the caller frame of the leaf frame on g's stack. The return
    			// address of the leaf frame is stored in sched.pc, which we manually
    			// capture here.
    			//
    			// (2) We're called against a gp that we're not currently executing on, but that isn't
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. pkg/kubelet/certificate/kubelet.go

    				"serving certificate is invalid or unused, the value will " +
    				"be +INF.",
    			StabilityLevel: compbasemetrics.ALPHA,
    		},
    		func() float64 {
    			if c := m.Current(); c != nil && c.Leaf != nil {
    				return math.Trunc(time.Until(c.Leaf.NotAfter).Seconds())
    			}
    			return math.Inf(1)
    		},
    	))
    	return m, nil
    }
    
    func addressesToHostnamesAndIPs(addresses []v1.NodeAddress) (dnsNames []string, ips []net.IP) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:16 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top