Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 245 for Roots (0.33 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/crypto/x509/example_test.go

    	// 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 {
    		panic("failed to parse certificate PEM")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 29 16:52:01 UTC 2019
    - 5.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/poset.go

    	// a specific DAG to add it to. Notice that we want all
    	// constants to be in root #0, so make sure the new root
    	// goes there.
    	if len(po.constants) == 0 {
    		idx := len(po.roots)
    		po.roots = append(po.roots, i)
    		po.roots[0], po.roots[idx] = po.roots[idx], po.roots[0]
    		po.upush(undoNewRoot, i, 0)
    		po.constants[val] = i
    		po.upushconst(i, 0)
    		return
    	}
    
    	// Find the lower and upper bound among existing constants. That is,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 17:23:05 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/builder/KtBinaryModuleBuilder.kt

            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)
        }
    
        protected fun getBinaryRoots(): List<Path> = binaryRoots.distinct()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Nov 16 13:31:53 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. 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)
  10. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/WindowsKitWindowsSdkLocatorTest.groovy

            windowsRegistryLocal.getStringValue(WindowsRegistry.Key.HKEY_LOCAL_MACHINE, /SOFTWARE\Microsoft\Windows Kits\Installed Roots/, "KitsRoot10") >> dir1.absolutePath
    
            when:
            def result = windowsSdkLocatorLocal.locateComponent(null)
    
            then:
            result.available
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.3K bytes
    - Viewed (0)
Back to top