Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,469 for root1 (0.16 sec)

  1. src/cmd/go/internal/modload/load.go

    			return "", false
    		}
    		var root string
    		var err error
    		if repl := Replacement(m); repl.Path != "" && repl.Version == "" {
    			root = repl.Path
    			if !filepath.IsAbs(root) {
    				root = filepath.Join(replaceRelativeTo(), root)
    			}
    		} else if repl.Path != "" {
    			root, err = modfetch.DownloadDir(ctx, repl)
    		} else {
    			root, err = modfetch.DownloadDir(ctx, m)
    		}
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  2. maven-model-builder/src/test/resources/poms/depmgmt/root-dep-first.xml

    Tamas Cservenak <******@****.***> 1706804704 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Feb 01 16:25:04 UTC 2024
    - 951 bytes
    - Viewed (0)
  3. samples/certs/root-cert-alt.pem

    Greg Hanson <******@****.***> 1702658677 -0500
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 16:44:37 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. security/pkg/pki/testdata/root-verify-fail.pem

    Jianfei Hu <******@****.***> 1520814621 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 12 00:30:21 UTC 2018
    - 1K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/stackcheck.go

    				nodes[lowest] = struct{}{}
    			}
    		}
    	}
    
    	// Sort roots by height. This makes the result deterministic
    	// and also improves the error reporting.
    	var roots []loader.Sym
    	for k := range nodes {
    		roots = append(roots, k)
    	}
    	sort.Slice(roots, func(i, j int) bool {
    		h1, h2 := sc.height[roots[i]], sc.height[roots[j]]
    		if h1 != h2 {
    			return h1 > h2
    		}
    		// Secondary sort by Sym.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 16:49:08 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  6. security/pkg/pki/util/verify_cert.go

    // - building one or more chains from the certificate to a root certificate;
    // - checking fields are set as expected.
    func VerifyCertificate(privPem []byte, certChainPem []byte, rootCertPem []byte, expectedFields *VerifyFields) error {
    	roots := x509.NewCertPool()
    	if rootCertPem != nil {
    		if ok := roots.AppendCertsFromPEM(rootCertPem); !ok {
    			return fmt.Errorf("failed to parse root certificate")
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 05 10:37:29 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  7. src/crypto/x509/name_constraints_test.go

    	},
    
    	// #14: roots can exclude subtrees and that doesn't affect other names.
    	{
    		roots: []constraintsSpec{
    			{
    				bad: []string{"dns:.example.com"},
    			},
    		},
    		intermediates: [][]constraintsSpec{
    			{
    				{},
    			},
    		},
    		leaf: leafSpec{
    			sans: []string{"dns:foo.com"},
    		},
    	},
    
    	// #15: roots exclusions are effective.
    	{
    		roots: []constraintsSpec{
    			{
    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. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/registry/impl/WatchedHierarchiesTest.groovy

            1 * watchable.stream() >> Stream.of(parent, child, grandchild)
        }
    
        private static List<String> rootsOf(FileHierarchySet set) {
            def roots = []
            set.visitRoots((root -> roots.add(root)))
            return roots
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:38:01 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/properties/annotations/AbstractTypeMetadataWalkerTest.groovy

            'nested'            | { MyCycleTask root -> CycleFirstNode.newInitializedRootCycle(root) }                                                            | "'<root>' and 'nested.secondNested.thirdNested.rootNested'"
            'nestedProperty'    | { MyCycleTask root -> TestUtil.propertyFactory().property(CycleFirstNode).value(CycleFirstNode.newInitializedRootCycle(root)) } | "'<root>' and 'nestedProperty.secondNested.thirdNested.rootNested'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  10. security/pkg/pki/testdata/ec-root-key.pem

    Rei Shimizu <******@****.***> 1619331846 +0900
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 25 06:24:06 UTC 2021
    - 227 bytes
    - Viewed (0)
Back to top