Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for mutableSetOf (0.2 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/InlineDelegatedPropertyAccessorsAnalyzer.kt

            }
        }
    }
    
    @OptIn(KtAnalysisNonPublicApi::class)
    fun List<KtFile>.collectReachableInlineDelegatedPropertyAccessors(): List<KtFile> {
        if (isEmpty()) return this
    
        val allFiles = mutableSetOf<KtFile>()
        allFiles.addAll(this)
        allFiles.collectReachableInlineDelegatedPropertyAccessors()
        return allFiles.toList()
    }
    
    internal class InlineDelegatedPropertyAccessorsAnalyzer(
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Tue Aug 29 23:55:31 GMT 2023
    - 3.6K bytes
    - Viewed (0)
  2. build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/action/IncubatingApiReportAggregationWorkAction.kt

                    byCategory.getOrPut(toCategory(version, file.nameWithoutExtension)) {
                        mutableMapOf()
                    }.getOrPut(file.nameWithoutExtension) {
                        mutableSetOf()
                    }.add(problem)
                }
            }
            generateReport(byCategory)
        }
    
        private
        fun toCategory(version: String, gradleModule: String) = when {
    HTML
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Jan 18 06:55:55 GMT 2021
    - 3.4K bytes
    - Viewed (0)
  3. okhttp-testing-support/src/main/kotlin/okhttp3/RecordingConnectionListener.kt

       */
      private val enforceOrder: Boolean = true,
    ) : ConnectionListener() {
      val eventSequence: Deque<ConnectionEvent> = ConcurrentLinkedDeque()
    
      private val forbiddenLocks = mutableSetOf<Any>()
    
      /** The timestamp of the last taken event, used to measure elapsed time between events. */
      private var lastTimestampNs: Long? = null
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 5.6K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10CompilerFacility.kt

            val inlineObjectDeclarations = inlineAnalyzer.inlineObjectDeclarations()
            val inlineObjectDeclarationFiles = inlineObjectDeclarations.mapTo(mutableSetOf()) { it.containingKtFile }
    
            class GenerateClassFilter : GenerationState.GenerateClassFilter() {
                override fun shouldGeneratePackagePart(ktFile: KtFile): Boolean {
    Plain Text
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Fri Dec 01 13:22:55 GMT 2023
    - 9.6K bytes
    - Viewed (0)
Back to top