Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 37 for MutableSet (0.34 sec)

  1. 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)
  2. build-logic/packaging/src/main/kotlin/gradlebuild/instrumentation/tasks/InstrumentedSuperTypesMergeTask.kt

                .toSet()
        }
    
        private
        fun mergeSuperTypes(): Map<String, Set<String>> {
            // Merge all super types files into a single map
            val directSuperTypes = mutableMapOf<String, MutableSet<String>>()
            instrumentationMetadataDirs
                .map { it.resolve(DIRECT_SUPER_TYPES_FILE) }
                .filter { it.exists() }
                .forEach { file ->
                    val properties = Properties()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 14:00:26 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10TypeProvider.kt

        )
    
        private data class BoundTypeArgument(val type: KotlinType, val variance: Variance)
        private data class BoundTypeArguments(val upper: MutableSet<KotlinType>, val lower: MutableSet<KotlinType>, val isCompatible: Boolean)
    
        private fun computeLeafClassesOrInterfaces(upperBoundClasses: Set<ClassDescriptor>): Set<ClassDescriptor> {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ProblemReportingCrossProjectModelAccess.kt

            return delegate.getSubprojects(referrer, relativeTo).mapTo(LinkedHashSet()) {
                it.wrap(referrer, CrossProjectModelAccessInstance(SUBPROJECT, relativeTo))
            }
        }
    
        override fun getAllprojects(referrer: ProjectInternal, relativeTo: ProjectInternal): MutableSet<out ProjectInternal> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/schemaBuilder/DataSchemaBuilder.kt

            private
            val propertyOriginalTypes = mutableMapOf<KClass<*>, MutableMap<String, KType>>()
    
            private
            val claimedFunctions = mutableMapOf<KClass<*>, MutableSet<KFunction<*>>>()
    
            fun addType(kClass: KClass<*>) {
                properties.getOrPut(kClass) { mutableMapOf() }
                propertyOriginalTypes.getOrPut(kClass) { mutableMapOf() }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:02 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirPsiTypeProvider.kt

            return coneKotlinType.asKtType()
        }
    }
    
    private fun ConeKotlinType.simplifyType(
        session: FirSession,
        useSitePosition: PsiElement,
        visited: MutableSet<ConeKotlinType> = mutableSetOf(),
    ): ConeKotlinType {
        // E.g., Wrapper<T> : Comparable<Wrapper<T>>
        if (!visited.add(this)) return this
    
        val substitutor = AnonymousTypesSubstitutor(session)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintWriter.kt

        private
        abstract class Sink(
            private val host: Host
        ) {
            val capturedFiles: MutableSet<File> = newConcurrentHashSet()
            val capturedDirectories: MutableSet<File> = newConcurrentHashSet()
            val capturedFileSystemEntries: MutableSet<File> = newConcurrentHashSet()
    
            private
            val undeclaredSystemProperties = newConcurrentHashSet<String>()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  8. analysis/analysis-api-standalone/analysis-api-fir-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneFirDirectInheritorsProvider.kt

            return possibleInheritors.filter { isValidInheritor(it, baseFirClass, scope, includeLocalInheritors) }
        }
    
        private fun calculateAliases(aliasedName: Name, aliases: MutableSet<Name>) {
            standaloneDeclarationProviderFactory.getInheritableTypeAliases(aliasedName).forEach { alias ->
                val aliasName = alias.nameAsSafeName
                val isNewAliasName = aliases.add(aliasName)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/NamedDomainObjectContainerDelegate.kt

            delegate.whenObjectRemoved(action)
    
        override fun whenObjectRemoved(action: Closure<Any>) =
            delegate.whenObjectRemoved(action)
    
        override fun findAll(spec: Closure<Any>): MutableSet<T> =
            delegate.findAll(spec)
    
        override fun addLater(provider: Provider<out T>) =
            delegate.addLater(provider)
    
        override fun containsAll(elements: Collection<T>): Boolean =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:18:33 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/TaskContainerDelegate.kt

            delegate.whenObjectRemoved(action)
    
        override fun whenObjectRemoved(action: Closure<Any>) =
            delegate.whenObjectRemoved(action)
    
        override fun findAll(spec: Closure<Any>): MutableSet<Task> =
            delegate.findAll(spec)
    
        override fun addLater(provider: Provider<out Task>) =
            delegate.addLater(provider)
    
        override fun containsAll(elements: Collection<Task>): Boolean =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:18:33 UTC 2023
    - 8.4K bytes
    - Viewed (0)
Back to top