Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for MutableSet (0.12 sec)

  1. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneDeclarationIndex.kt

        internal val facadeFileMap: MutableMap<FqName, MutableSet<KtFile>> = mutableMapOf()
        internal val multiFileClassPartMap: MutableMap<FqName, MutableSet<KtFile>> = mutableMapOf()
        internal val scriptMap: MutableMap<FqName, MutableSet<KtScript>> = mutableMapOf()
        internal val classMap: MutableMap<FqName, MutableSet<KtClassOrObject>> = mutableMapOf()
        internal val typeAliasMap: MutableMap<FqName, MutableSet<KtTypeAlias>> = mutableMapOf()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/FileCollectionCodec.kt

                "Unexpected file tree '$fileTree' of type '${fileTree.javaClass}' found while serializing a file collection."
            )
    }
    
    
    private
    class CollectingVisitor : AbstractVisitor() {
        val elements: MutableSet<Any> = mutableSetOf()
    
        override fun startVisit(source: FileCollectionInternal.Source, fileCollection: FileCollectionInternal): Boolean =
            when (fileCollection) {
                is SubtractingFileCollection -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/InlineFunctionAnalyzer.kt

    class InlineFunctionAnalyzer(
        private val analysisContext: Fe10AnalysisContext,
        private val analyzeOnlyReifiedInlineFunctions: Boolean,
    ) {
        private val analyzedElements: MutableSet<KtElement> = mutableSetOf()
        private val inlineFunctionsWithBody: MutableSet<KtDeclarationWithBody> = mutableSetOf()
    
        /**
         * Collects all inline function calls in an [element] (usually a file) and follows each transitively.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/providers/services/kotlin/build.gradle.kts

        private val platformCategories: Set<String> = setOf("platform", "enforced-platform")
    
        private val visitedDependencies: MutableSet<ModuleComponentIdentifier> = mutableSetOf()
        private val visitedProjects: MutableSet<ModuleVersionIdentifier> = mutableSetOf()
    
        private val logger = Logging.getLogger(OrtModelBuilder::class.java)
        private val errors: MutableList<String> = mutableListOf()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:14:15 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/ProjectDelegate.kt

            delegate.depthCompare(otherProject)
    
        override fun getGradle(): Gradle =
            delegate.gradle
    
        override fun getAllTasks(recursive: Boolean): MutableMap<Project, MutableSet<Task>> =
            delegate.getAllTasks(recursive)
    
        override fun uri(path: Any): URI =
            delegate.uri(path)
    
        override fun copySpec(closure: Closure<*>): CopySpec =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:16:16 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/RelevantProjectsRegistry.kt

                    collect(project, result)
                }
            }
            return result
        }
    
        private
        fun collect(project: ProjectState, projects: MutableSet<ProjectState>) {
            if (!projects.add(project)) {
                return
            }
            val parent = project.parent
            if (parent != null) {
                collect(parent, projects)
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectConfigurationReportingTaskExecutionGraph.kt

            return result
        }
    
        override fun getDependencies(task: Task): MutableSet<Task> {
            checkCrossProjectTaskAccess(task)
            val result = delegate.getDependencies(task)
            observingTasksMaybeFromOtherProjects(result)
            return result
        }
    
        override
        fun getFilteredTasks(): MutableSet<Task> {
            val result = delegate.filteredTasks
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/packages/KotlinStandalonePackageProvider.kt

        private val kotlinPackageToSubPackages: Map<FqName, Set<Name>> = run {
            val filesInScope = files.filter { scope.contains(it.virtualFile) }
            val packages: MutableMap<FqName, MutableSet<Name>> = mutableMapOf() // the explicit type is here to workaround KTIJ-21172
            filesInScope.forEach { file ->
                var currentPackage = FqName.ROOT
                for (subPackage in file.packageFqName.pathSegments()) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/InlineDelegatedPropertyAccessorsAnalyzer.kt

    import org.jetbrains.kotlin.psi.KtFile
    import org.jetbrains.kotlin.psi.KtProperty
    import org.jetbrains.kotlin.psi.KtTreeVisitorVoid
    import org.jetbrains.kotlin.resolve.BindingContext
    
    @OptIn(KaAnalysisNonPublicApi::class)
    fun MutableSet<KtFile>.collectReachableInlineDelegatedPropertyAccessors() {
        if (isEmpty()) return
    
        // One of the compiler lowerings, namely `PropertyReferenceLowering`,
        // optimizes usages of property references in some cases,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DynamicCallProblemReporting.kt

    }
    
    
    class DefaultDynamicCallProblemReporting : DynamicCallProblemReporting {
        private
        class CallEntry(val entryPoint: Any) {
            val problemsReportedInCurrentCall: MutableSet<Any> = HashSet(1)
        }
    
        private
        class State {
            val callStack = Stack<CallEntry>()
        }
    
        private
        val threadLocalState = ThreadLocal.withInitial { State() }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top