Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 84 for Dadd (0.33 sec)

  1. src/mdo/reader.vm

                case "${entry.key}":
      #end
                    break;
                default:
                    if (!parsed.add(tagName)) {
                        throw new XMLStreamException("Duplicated tag: '" + tagName + "'", parser.getLocation(), null);
                    }
            }
    #else
            if (!parsed.add(tagName)) {
                throw new XMLStreamException("Duplicated tag: '" + tagName + "'", parser.getLocation(), null);
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirResolveExtensionInfoProvider.kt

                val seenTopLevelPackages = mutableSetOf<Name>()
                for (tool in tools) {
                    for (packageName in tool.packageFilter.getAllSubPackages(FqName.ROOT)) {
                        if (seenTopLevelPackages.add(packageName) && nameFilter(packageName)) {
                            yield(analysisSession.firSymbolBuilder.createPackageSymbol(FqName.ROOT.child(packageName)))
                        }
                    }
                }
            }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. analysis/analysis-api-standalone/analysis-api-fir-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneFirDirectInheritorsProvider.kt

            standaloneDeclarationProviderFactory.getInheritableTypeAliases(aliasedName).forEach { alias ->
                val aliasName = alias.nameAsSafeName
                val isNewAliasName = aliases.add(aliasName)
                if (isNewAliasName) {
                    calculateAliases(aliasName, aliases)
                }
            }
        }
    
        private fun isValidInheritor(
            candidate: KtClassOrObject,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

    8. If the distribution and/or use of the Program is restricted in
    certain countries either by patents or by copyrighted interfaces, the
    original copyright holder who places the Program under this License may
    add an explicit geographical distribution limitation excluding those
    countries, so that distribution is permitted only in or among countries
    not thus excluded. In such case, this License incorporates the
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/firScopeUtils.kt

        callableNames.forEach { name ->
            yieldList {
                processFunctionsByName(name) { firSymbol ->
                    add(builder.functionLikeBuilder.buildFunctionSymbol(firSymbol))
                }
            }
            yieldList {
                processPropertiesByName(name) { firSymbol ->
                    add(builder.callableBuilder.buildCallableSymbol(firSymbol))
                }
            }
        }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/builder/KtModuleBuilder.kt

        public fun addRegularDependency(module: KtModule) {
            directRegularDependencies.add(module)
        }
    
        public fun addDependsOnDependency(module: KtModule) {
            directDependsOnDependencies.add(module)
        }
    
        public fun addFriendDependency(module: KtModule) {
            directFriendDependencies.add(module)
        }
    
        public lateinit var platform: TargetPlatform
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Sep 06 07:36:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/KtFirAnalysisSession.kt

                buildSet {
                    // Add an empty scope to the shadowed set to give GlobalSearchScope.union something
                    // to work with if there are no extension tools.
                    // If there are extension tools, any empty scopes, whether from shadowedSearchScope
                    // on the extension tools or from this add() call, will be ignored.
                    add(GlobalSearchScope.EMPTY_SCOPE)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  8. apache-maven/src/assembly/maven/lib/jansi-native/README.txt

    This directory contains Jansi native libraries extracted from Jansi JAR.
    
    You can add your own build for platforms not natively supported by Jansi.
    See here [1] on how to compile for your platform and here [2] how libraries
    follow Jansi's directory and filename conventions.
    
    [1] https://github.com/fusesource/jansi/tree/master/src/main/native
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jul 18 17:22:19 UTC 2022
    - 486 bytes
    - Viewed (0)
  9. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/util/LibraryUtils.kt

            val files = mutableSetOf<VirtualFile>()
            if (includeRoot) {
                files.add(root)
            }
            VfsUtilCore.iterateChildrenRecursively(
                root,
                /*filter=*/{ true },
                /*iterator=*/{ virtualFile ->
                    if (!virtualFile.isDirectory) {
                        files.add(virtualFile)
                    }
                    true
                }
            )
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Sep 06 07:36:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. analysis/analysis-api-standalone/tests/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/session/builder/sessionBuilderTestUtils.kt

        val testKlib = KtTestUtil.tmpDir("testLibrary").resolve("library.klib").toPath()
    
        val arguments = buildList {
            ktFiles.mapTo(this) { it.absolutePathString() }
            add("-d")
            add(testKlib.absolutePathString())
        }
        MockLibraryUtil.runMetadataCompiler(arguments)
    
        return testKlib
    }
    
    internal fun createDumbVirtualFile(
        project: Project,
        fileName: String,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top