Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for rootIndex (0.09 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. 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