Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for rootIndex (0.14 sec)

  1. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/SnapshotUtil.java

                index.put(relativePath.toRelativePath(), entrySnapshot);
                return SnapshotVisitResult.CONTINUE;
            });
            return index;
        }
    
        public static Map<String, FileSystemLocationSnapshot> rootIndex(FileSystemSnapshot snapshot) {
            HashMap<String, FileSystemLocationSnapshot> index = new HashMap<>();
            snapshot.accept(entrySnapshot -> {
                index.put(entrySnapshot.getAbsolutePath(), entrySnapshot);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/RemovePreviousOutputsStep.java

                    try {
                        // Previous outputs can be in a different place than the current outputs
                        outputChangeListener.invalidateCachesFor(SnapshotUtil.rootIndex(snapshot).keySet());
                        cleaner.cleanupOutputs(snapshot);
                    } catch (IOException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/SkipEmptyIncrementalWorkStep.java

            for (FileSystemSnapshot outputFileSnapshot : outputFileSnapshots.values()) {
                try {
                    outputChangeListener.invalidateCachesFor(SnapshotUtil.rootIndex(outputFileSnapshot).keySet());
                    outputsCleaner.cleanupOutputs(outputFileSnapshot);
                } catch (IOException e) {
                    throw new UncheckedIOException(e);
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:30 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  4. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/StandaloneProjectFactory.kt

            val corePackageIndex = project.getService(PackageIndex::class.java) as CorePackageIndex
            val rootsIndex = JvmDependenciesDynamicCompoundIndex().apply {
                addIndex(JvmDependenciesIndexImpl(roots))
                indexedRoots.forEach { javaRoot ->
                    if (javaRoot.file.isDirectory) {
    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