Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 104 of 104 for Roots (0.15 sec)

  1. subprojects/core/src/test/groovy/org/gradle/execution/plan/ExecutionNodeAccessHierarchyTest.groovy

            expect:
            nodesRelatedTo(root, "some/sub/dir") == ([childNode] as Set)
            nodesRelatedTo(root, "some/sub/other") == ([] as Set)
        }
    
        def "can record filtered roots"() {
            def root = temporaryFolder.file("root")
            def node1 = Mock(Node)
            root.file("sub/included").createDir()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 11 15:00:43 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/dynamic_cafile_content.go

    	if len(caBundle) == 0 {
    		return nil, fmt.Errorf("missing content for CA bundle %q", name)
    	}
    
    	// Wrap with an x509 verifier
    	var err error
    	verifyOptions := defaultVerifyOptions()
    	verifyOptions.Roots, err = cert.NewPoolFromBytes(caBundle)
    	if err != nil {
    		return nil, fmt.Errorf("error loading CA bundle for %q: %v", name, err)
    	}
    
    	return &caBundleAndVerifier{
    		caBundle:      caBundle,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. pkg/ledger/smt_test.go

    	ch = make(chan result, 1)
    	smt2.update(smt2.root, keys[1:], values[1:], nil, 0, smt.trieHeight, false, true, ch)
    	res = <-ch
    	cleanRoot := res.update
    	if !bytes.Equal(newRoot, cleanRoot) {
    		t.Fatal("roots mismatch")
    	}
    
    	// Empty the trie
    	var newValues [][]byte
    	for i := 0; i < 10; i++ {
    		newValues = append(newValues, defaultLeaf)
    	}
    	ch = make(chan result, 1)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_tidy_convergence_loop.txt

    # dropping x.1's requirement on z. x.1 was added as a root in the previous step,
    # so the upgraded x.2-pre is retained as a root.
    #
    # On the third iteration, it adds z.1 as a root, which upgrades x and y.
    # x and y were already roots (from the previous steps), so their upgraded versions
    # are retained (not dropped) and the iteration stops.
    #
    # At that point, we have z.1 as a root providing package z,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 9.2K bytes
    - Viewed (0)
Back to top