Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 245 for Roots (0.08 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/fingerprint/impl/DefaultFileCollectionSnapshotter.java

            private final List<FileSystemSnapshot> roots = new ArrayList<>();
            private boolean containsArchiveTrees;
    
            @Override
            public void visitCollection(FileCollectionInternal.Source source, Iterable<File> contents) {
                for (File file : contents) {
                    roots.add(fileSystemAccess.read(file.getAbsolutePath()));
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 29 16:58:45 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  2. src/crypto/x509/verify_test.go

    			}
    			root, err := ParseCertificate(rootDER)
    			if err != nil {
    				t.Fatalf("failed to parse certificate: %s", err)
    			}
    			roots := NewCertPool()
    			roots.AddCert(root)
    
    			_, err = root.Verify(VerifyOptions{Roots: roots, KeyUsages: tc.verifyEKUs})
    			if err == nil && !tc.succeed {
    				t.Error("verification succeed")
    			} else if err != nil && tc.succeed {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/proxy/dial_test.go

    		},
    		"secure, no roots": {
    			TLSConfig:   &tls.Config{InsecureSkipVerify: false},
    			ExpectError: "unknown authority|not trusted",
    		},
    		"secure with roots": {
    			TLSConfig: &tls.Config{InsecureSkipVerify: false, RootCAs: roots},
    		},
    		"secure with mismatched server": {
    			TLSConfig:   &tls.Config{InsecureSkipVerify: false, RootCAs: roots, ServerName: "bogus.com"},
    			ExpectError: "not bogus.com",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  4. src/crypto/x509/root.go

    var x509usefallbackroots = godebug.New("x509usefallbackroots")
    
    // SetFallbackRoots sets the roots to use during certificate verification, if no
    // custom roots are specified and a platform verifier or a system certificate
    // pool is not available (for instance in a container which does not have a root
    // certificate bundle). SetFallbackRoots will panic if roots is nil.
    //
    // SetFallbackRoots may only be called once, if called multiple times it will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/edit.go

    				roots = append(roots, module.Version{Path: p, Version: v})
    			}
    		}
    		gover.ModSort(roots)
    
    		// First, we extend the graph so that it includes the selected version
    		// of every root. The upgraded roots are in addition to the original
    		// roots, so we will have enough information to trace a path to each
    		// conflict we discover from one or more of the original roots.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/SnapshotTaskInputsOperationIntegrationTest.groovy

                hash != null
                roots.size() == 1
                with(roots[0]) {
                    path == file("a/build/libs/a.jar").absolutePath
                    !containsKey("children")
                }
            }
            with(bCompileJava.stableSources) {
                hash != null
                roots.size() == 2
                with(roots[0]) {
                    path == file("b/src/main/java").absolutePath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  7. 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)
  8. subprojects/core/src/main/java/org/gradle/internal/operations/trace/BuildOperationTrace.java

                        logOutputStream.close();
                    }
    
                    if (outputTree) {
                        List<BuildOperationRecord> roots = readLogToTreeRoots(logFile(basePath), false);
                        writeDetailTree(roots);
                        writeSummaryTree(roots);
                    }
                } catch (IOException e) {
                    throw UncheckedException.throwAsUncheckedException(e);
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/FileTreeCodec.kt

        fun rootSpecOf(value: FileTreeInternal): List<FileTreeSpec> {
            val visitor = FileTreeVisitor()
            value.visitStructure(visitor)
            return visitor.roots
        }
    
        private
        inner class FileTreeVisitor : FileCollectionStructureVisitor {
            var roots = mutableListOf<FileTreeSpec>()
    
            override fun startVisit(source: FileCollectionInternal.Source, fileCollection: FileCollectionInternal): Boolean = when {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/BuildOperationTreeFixture.groovy

        List<BuildOperationRecord> getRoots() {
            operations.roots
        }
    
        @Override
        @SuppressWarnings("GrUnnecessaryPublicModifier")
        public <T extends BuildOperationType<?, ?>> BuildOperationRecord root(Class<T> type, Spec<? super BuildOperationRecord> predicate = Specs.satisfyAll()) {
            def detailsType = BuildOperationTypes.detailsType(type)
            def roots = operations.roots.findAll {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top