Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 78 for Roots (0.13 sec)

  1. 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)
  2. src/cmd/go/internal/modload/buildlist.go

    	drop := make(map[string]bool)
    	for _, m := range replace {
    		drop[m.Path] = true
    	}
    	var roots []module.Version
    	for _, m := range rs.rootModules {
    		if !drop[m.Path] {
    			roots = append(roots, m)
    		}
    	}
    	roots = append(roots, replace...)
    	gover.ModSort(roots)
    	return newRequirements(rs.pruning, roots, rs.direct)
    }
    
    // A ConstraintError describes inconsistent constraints in EditBuildList
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. platforms/jvm/jvm-services/src/main/java/org/gradle/jvm/toolchain/internal/LinuxInstallationSupplier.java

        @VisibleForTesting
        final File[] roots;
        private final OperatingSystem os;
    
        @Inject
        public LinuxInstallationSupplier() {
            this(OperatingSystem.current(), new File("/usr/lib/jvm"), new File("/usr/lib64/jvm"), new File("/usr/java"), new File("/usr/local/java"), new File("/opt/java"));
        }
    
        @VisibleForTesting
        LinuxInstallationSupplier(OperatingSystem os, File... roots) {
            this.roots = roots;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  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. 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)
  8. 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)
  9. 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)
  10. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/StandaloneProjectFactory.kt

                addIndex(JvmDependenciesIndexImpl(roots))
                indexedRoots.forEach { javaRoot ->
                    if (javaRoot.file.isDirectory) {
                        if (javaRoot.type == JavaRoot.RootType.SOURCE) {
                            // NB: [JavaCoreProjectEnvironment#addSourcesToClasspath] calls:
                            //   1) [CoreJavaFileManager#addToClasspath], which is used to look up Java roots;
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 22.4K bytes
    - Viewed (0)
Back to top