Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 401 for rootfs (0.42 sec)

  1. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/StandaloneProjectFactory.kt

            }
        }
    
        private fun getVirtualFileUrlsForLibraryRootsRecursively(
            roots: Collection<Path>,
            environment: KotlinCoreProjectEnvironment,
        ): Set<String> =
            buildSet {
                for (root in getVirtualFilesForLibraryRoots(roots, environment)) {
                    LibraryUtils.getAllVirtualFilesFromRoot(root, includeRoot = true)
                        .mapTo(this) { it.url }
                }
            }
    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/cmd/compile/internal/ssa/poset.go

    	// If this is the first constant, put it as a new root, as
    	// we can't record an existing connection so we don't have
    	// 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)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 17:23:05 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/registry/impl/WatchedHierarchiesTest.groovy

            1 * watchable.stream() >> Stream.of(parent, child, grandchild)
        }
    
        private static List<String> rootsOf(FileHierarchySet set) {
            def roots = []
            set.visitRoots((root -> roots.add(root)))
            return roots
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:38:01 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/DefaultUcrtLocatorTest.groovy

        def "uses ucrt found in registry"() {
            def dir1 = ucrtDir("ucrt", "10.0.10150.0")
    
            given:
            windowsRegistry.getStringValue(WindowsRegistry.Key.HKEY_LOCAL_MACHINE, /SOFTWARE\Microsoft\Windows Kits\Installed Roots/, "KitsRoot10") >> dir1.absolutePath
    
            when:
            def result = ucrtLocator.locateComponent(null)
    
            then:
            result.available
            result.component.name == "Universal C Runtime 10"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top