Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for MutableSet (0.14 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. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/classanalysis/ClassGraph.kt

        var visited: Boolean = false
        val dependencies: MutableSet<ClassDetails> = linkedSetOf()
        val outputClassFilename
            get() = "$outputClassName.class"
    }
    
    
    class PackagePatterns(givenPrefixes: Set<String>) {
    
        private
        val prefixes: MutableSet<String> = hashSetOf()
    
        private
        val names: MutableSet<String> = hashSetOf()
    
        init {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/io/FaultyFileSystem.kt

    import okio.Path
    import okio.Sink
    
    class FaultyFileSystem constructor(delegate: FileSystem?) : ForwardingFileSystem(delegate!!) {
      private val writeFaults: MutableSet<Path> = LinkedHashSet()
      private val deleteFaults: MutableSet<Path> = LinkedHashSet()
      private val renameFaults: MutableSet<Path> = LinkedHashSet()
    
      fun setFaultyWrite(
        file: Path,
        faulty: Boolean,
      ) {
        if (faulty) {
          writeFaults.add(file)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/KtStaticModuleDependentsProvider.kt

    }
    
    private inline fun buildDependentsMap(
        modules: List<KtModule>,
        getDependencies: (KtModule) -> Sequence<KtModule>,
    ): Map<KtModule, MutableSet<KtModule>> = buildMap<KtModule, MutableSet<KtModule>> {
        for (module in modules) {
            for (dependency in getDependencies(module)) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Mar 18 21:14:36 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/ClientModuleDelegate.kt

        override fun addDependency(dependency: ModuleDependency) =
            delegate.addDependency(dependency)
    
        override fun getName(): String =
            delegate.name
    
        override fun getExcludeRules(): MutableSet<ExcludeRule> =
            delegate.excludeRules
    
        override fun addArtifact(artifact: DependencyArtifact): ModuleDependency =
            delegate.addArtifact(artifact)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/ClassLoaderHierarchy.kt

        )
    
    
    private
    typealias ClassLoaderId = String
    
    
    private
    class ClassLoaderNode(
        val id: ClassLoaderId,
        val label: String,
        val classPath: MutableSet<URL> = LinkedHashSet(),
        val parents: MutableSet<ClassLoaderId> = LinkedHashSet()
    )
    
    
    private
    fun classLoaderHierarchyJsonFor(
        classLoaders: List<ClassLoaderNode>,
        scopes: List<ClassLoaderScope>,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/action/IncubatingApiReportWorkAction.kt

    import java.io.File
    
    
    abstract class IncubatingApiReportWorkAction : WorkAction<IncubatingApiReportParameter> {
    
        override fun execute() {
            try {
                val versionToIncubating = mutableMapOf<Version, MutableSet<IncubatingDescription>>()
                parameters.srcDirs.forEach { srcDir ->
                    if (srcDir.exists()) {
                        val collector = CompositeVersionsToIncubatingCollector(
                            listOf(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jun 25 02:53:14 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top