Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 268 for roots (0.05 sec)

  1. 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)
  2. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/FileTreeCodec.kt

                throw UnsupportedOperationException()
    
            override fun visitFileTree(root: File, patterns: PatternSet, fileTree: FileTreeInternal) {
                roots.add(DirectoryTreeSpec(root, patterns))
            }
    
            override fun visitFileTreeBackedByFile(file: File, fileTree: FileTreeInternal, sourceTree: FileSystemMirroringFileTree) {
                roots.add(toSpec(sourceTree))
            }
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. 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)
  4. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/FileSystemSnapshot.java

                return SnapshotVisitResult.CONTINUE;
            }
        };
    
        /**
         * Returns a stream of roots.
         */
        Stream<FileSystemLocationSnapshot> roots();
    
        /**
         * Walks the whole hierarchy represented by this snapshot.
         *
         * The walk is depth first.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/FingerprintingStrategy.java

        String COMPILE_CLASSPATH_IDENTIFIER = "COMPILE_CLASSPATH";
    
        /**
         * Converts the roots into the {@link FileSystemLocationFingerprint}s used by the {@link FileCollectionFingerprint}.
         */
        Map<String, FileSystemLocationFingerprint> collectFingerprints(FileSystemSnapshot roots);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. src/crypto/x509/example_test.go

    -----END CERTIFICATE-----`
    
    	// First, create the set of root certificates. For this example we only
    	// have one. It's also possible to omit this in order to use the
    	// default root set of the current operating system.
    	roots := x509.NewCertPool()
    	ok := roots.AppendCertsFromPEM([]byte(rootPEM))
    	if !ok {
    		panic("failed to parse root certificate")
    	}
    
    	block, _ := pem.Decode([]byte(certPEM))
    	if block == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 29 16:52:01 UTC 2019
    - 5.3K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/dependents/DefaultDependentBinariesResolver.java

            List<DependentBinariesResolvedResult> roots = new ArrayList<>();
            for (DependentBinariesResolutionStrategy strategy : strategies.values()) {
                DependentBinariesResolutionResult result = strategy.resolve(target);
                roots.add(result.getRoot());
            }
            return new DefaultDependentBinariesResolutionResult(mergeResults(roots));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/SnapshotUtil.java

        }
    
        public static ImmutableListMultimap<String, HashCode> getRootHashes(FileSystemSnapshot roots) {
            if (roots == FileSystemSnapshot.EMPTY) {
                return ImmutableListMultimap.of();
            }
            ImmutableListMultimap.Builder<String, HashCode> builder = ImmutableListMultimap.builder();
            roots.accept(snapshot -> {
                builder.put(snapshot.getAbsolutePath(), snapshot.getHash());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/builder/KtBinaryModuleBuilder.kt

         */
        public fun addBinaryRoot(root: Path) {
            binaryRoots.add(root)
        }
    
        /**
         * Adds a collection of [roots] to the current library.
         *
         * See [addBinaryRoot] for details
         *
         * @see addBinaryRoot for details
         */
        public fun addBinaryRoots(roots: Collection<Path>) {
            binaryRoots.addAll(roots)
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Nov 16 13:31:53 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. src/crypto/x509/root_unix_test.go

    			}
    
    			certFiles, certDirectories = tc.files, tc.dirs
    
    			r, err := loadSystemRoots()
    			if err != nil {
    				t.Fatal("unexpected failure:", err)
    			}
    
    			if r == nil {
    				t.Fatal("nil roots")
    			}
    
    			// Verify that the returned certs match, otherwise report where the mismatch is.
    			for i, cn := range tc.cns {
    				if i >= r.len() {
    					t.Errorf("missing cert %v @ %v", cn, i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 00:36:38 UTC 2023
    - 6.1K bytes
    - Viewed (0)
Back to top