Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for leaf3 (0.05 sec)

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

            mavenRepo.module("org", "leaf", "1.5").publish()
    
            mavenRepo.module("org", "a", "1.0").dependsOn("org", "leaf", "(,1.0)").publish()
            mavenRepo.module("org", "b", "1.0").dependsOn("org", "leaf", "1.0").publish()
            mavenRepo.module("org", "c", "1.0").dependsOn("org", "leaf", "[1.5,1.9]").publish()
            mavenRepo.module("org", "d", "1.0").dependsOn("org", "leaf", "2.0+").publish()
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  2. pilot/pkg/model/virtualservice_test.go

    		name     string
    		root     *networking.HTTPMatchRequest
    		leaf     *networking.HTTPMatchRequest
    		expected bool
    	}{
    		{
    			name: "regex uri",
    			root: &networking.HTTPMatchRequest{
    				Uri: &networking.StringMatch{
    					MatchType: &networking.StringMatch_Regex{Regex: "^/productpage"},
    				},
    			},
    			leaf: &networking.HTTPMatchRequest{
    				Uri: &networking.StringMatch{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  3. src/crypto/tls/common.go

    	SignedCertificateTimestamps [][]byte
    	// Leaf is the parsed form of the leaf certificate, which may be initialized
    	// using x509.ParseCertificate to reduce per-handshake processing. If nil,
    	// the leaf certificate will be parsed as needed.
    	Leaf *x509.Certificate
    }
    
    // leaf returns the parsed leaf certificate, either from c.Leaf or by parsing
    // the corresponding c.Certificate[0].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            def root2 = conf("root2")
            def middle2 = conf("middle2").extendsFrom(root2)
            def leaf = conf("leaf1").extendsFrom(middle1, middle2)
    
            when:
            def hierarchy = leaf.hierarchy
    
            then:
            hierarchy.size() == 5
            hierarchy.iterator().next() == leaf
            assertBothExistsAndOneIsBeforeOther(hierarchy, middle1, root1);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  5. src/crypto/tls/tls_test.go

    		if err != nil {
    			t.Fatal(err)
    		}
    		if cert.Leaf != nil {
    			t.Fatal("Leaf should not be populated")
    		}
    	})
    	t.Run("x509keypairleaf=1", func(t *testing.T) {
    		t.Setenv("GODEBUG", "x509keypairleaf=1")
    		cert, err := X509KeyPair(certPEM, keyPEM)
    		if err != nil {
    			t.Fatal(err)
    		}
    		if cert.Leaf == nil {
    			t.Fatal("Leaf should be populated")
    		}
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_messages.go

    			b.AddUint24LengthPrefixed(func(b *cryptobyte.Builder) {
    				b.AddBytes(cert)
    			})
    			b.AddUint16LengthPrefixed(func(b *cryptobyte.Builder) {
    				if i > 0 {
    					// This library only supports OCSP and SCT for leaf certificates.
    					return
    				}
    				if certificate.OCSPStaple != nil {
    					b.AddUint16(extensionStatusRequest)
    					b.AddUint16LengthPrefixed(func(b *cryptobyte.Builder) {
    						b.AddUint8(statusTypeOCSP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. cmd/kubelet/app/server.go

    					"If client certificate is invalid or unused, the value will be +INF.",
    				StabilityLevel: metrics.ALPHA,
    			},
    			func() float64 {
    				if c := clientCertificateManager.Current(); c != nil && c.Leaf != nil {
    					return math.Trunc(time.Until(c.Leaf.NotAfter).Seconds())
    				}
    				return math.Inf(1)
    			},
    		))
    
    		// the rotating transport will use the cert from the cert manager instead of these files
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  8. src/runtime/traceback.go

    )
    
    // The code in this file implements stack trace walking for all architectures.
    // The most important fact about a given architecture is whether it uses a link register.
    // On systems with link registers, the prologue for a non-leaf function stores the
    // incoming value of LR at the bottom of the newly allocated stack frame.
    // On systems without link registers (x86), the architecture pushes a return PC during
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. src/runtime/mprof.go

    		// traces somewhat consistent whether or not static lock ranking is
    		// enabled, we'd like to skip those. But it's hard to tell how long
    		// we've been on the system stack so accept an extra frame in that case,
    		// with a leaf of "runtime.unlockWithRank runtime.unlock" instead of
    		// "runtime.unlock".
    		skip += 1 // runtime.unlockWithRank.func1
    	}
    	prof.pending = 0
    
    	prof.stack[0] = logicalStackSentinel
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. src/runtime/mgc.go

    	// the time we start the world and begin
    	// scanning.
    	//
    	// Write barriers must be enabled before assists are
    	// enabled because they must be enabled before
    	// any non-leaf heap objects are marked. Since
    	// allocations are blocked until assists can
    	// happen, we want to enable assists as early as
    	// possible.
    	setGCPhase(_GCmark)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
Back to top