Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 250 for LEAF (0.04 sec)

  1. test/abi/leaf.go

    Dmitri Shuralyov <******@****.***> 1697569678 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 641 bytes
    - Viewed (0)
  2. samples/certs/leaf-workload-bar-cert.pem

    Jackie Elliott <******@****.***> 1675814255 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 07 23:57:35 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. samples/certs/leaf-workload-foo-cert.pem

    Jackie Elliott <******@****.***> 1675814255 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 07 23:57:35 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. src/crypto/x509/verify_test.go

    					},
    					{
    						Issuer:  "inter b",
    						Subject: "leaf",
    						Type:    leafCertificate,
    					},
    				},
    			},
    			expectedChains: []string{
    				"CN=leaf -> CN=inter b -> CN=inter a -> CN=inter c -> CN=root",
    				"CN=leaf -> CN=inter b -> CN=inter a -> CN=root",
    				"CN=leaf -> CN=inter b -> CN=inter c -> CN=inter a -> CN=root",
    				"CN=leaf -> CN=inter b -> CN=inter c -> CN=root",
    			},
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  5. pilot/pkg/model/virtualservice.go

    	if exact := root.GetExact(); exact != "" {
    		// leaf is prefix match, conflict
    		if leaf.GetPrefix() != "" {
    			return true
    		}
    		// both exact, but not equal
    		if leaf.GetExact() != exact {
    			return true
    		}
    		return false
    	}
    	// root is prefix match
    	if prefix := root.GetPrefix(); prefix != "" {
    		// leaf is prefix match
    		if leaf.GetPrefix() != "" {
    			// leaf(`/a`) is not subset of root(`/a/b`)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 11:17:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. subprojects/core/src/test/groovy/org/gradle/execution/plan/ValuedVfsHierarchyTest.groovy

            "some/location/intermediate/child/sub1/leaf2"   | ['intermediate/child/sub1/leaf2': [1], 'sub1/leaf2': [4, 3]]
            "some/location/intermediate/child/sub3/leaf"    | ['sub3/leaf': [4, 3], 'intermediate/child/sub3/leaf': [1]]
            "some/location/intermediate/child/non-existing" | ['intermediate/child/non-existing': [1], 'non-existing': [4, 3]]
        }
    
        def "can query child values"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 28 17:21:57 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

            given:
            mavenRepo.module("org", "leaf", "1.0").publish()
            mavenRepo.module("org", "leaf", "2.0").publish()
            mavenRepo.module("org", "leaf", "1.5").publish()
    
            mavenRepo.module("org", "foo", "1.0").dependsOn('org', 'leaf', '1.0').publish()
            mavenRepo.module("org", "bar", "1.0").dependsOn('org', 'leaf', '2.0').publish()
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  10. 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)
Back to top