Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 127 for Project (0.28 sec)

  1. .idea/codeStyles/Project.xml

    <component name="ProjectCodeStyleConfiguration">
      <code_scheme name="Project" version="173">
        <option name="LINE_SEPARATOR" value="&#10;" />
        <option name="RIGHT_MARGIN" value="140" />
        <JavaCodeStyleSettings>
          <option name="PREFER_LONGER_NAMES" value="false" />
          <option name="PACKAGES_TO_USE_IMPORT_ON_DEMAND">
            <value>
              <package name="java.awt" withSubpackages="false" static="false" />
    XML
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Tue May 02 13:36:56 GMT 2023
    - 4.1K bytes
    - Viewed (3)
  2. analysis/analysis-api-fir/analysis-api-fir-generator/build.gradle.kts

        application
    }
    
    dependencies {
        implementation(project(":generators"))
        implementation(project(":compiler:resolution.common"))
        implementation(project(":compiler:fir:tree"))
        implementation(project(":compiler:fir:tree:tree-generator"))
        implementation(project(":compiler:fir:checkers:checkers-component-generator"))
        implementation(project(":analysis:analysis-api"))
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Oct 18 18:42:40 GMT 2023
    - 1K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/FirSyntheticFunctionInterfaceSourceProvider.kt

            val project = ktModule.project
            val correctedClassId = classIdMapping[classId] ?: return null
            require(ktModule is KtBuiltinsModule) {
                "Expected builtin module but found $ktModule"
            }
            return project.createDeclarationProvider(ProjectScope.getLibrariesScope(project), ktModule)
                .getAllClassesByClassId(correctedClassId)
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Jun 02 14:27:26 GMT 2023
    - 2.5K bytes
    - Viewed (0)
  4. ReadMe.md

    ## <a name="working-in-idea"></a> Working with the project in IntelliJ IDEA
    
    It is recommended to use the latest released version of Intellij IDEA (Community or Ultimate Edition). You can download IntelliJ IDEA [here](https://www.jetbrains.com/idea/download).
    
    After cloning the project, import the project in IntelliJ by choosing the project directory in the Open project dialog.
    
    For handy work with compiler tests it's recommended to use [
    Plain Text
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Thu Apr 11 14:28:46 GMT 2024
    - 8.7K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10SymbolContainingDeclarationProvider.kt

                override val platform: TargetPlatform
                    get() = descriptor.platform!!
                override val analyzerServices: PlatformDependentAnalyzerServices
                    get() = JvmPlatformAnalyzerServices
                override val project: Project
                    get() = analysisSession.analysisContext.resolveSession.project
    
            }
        }
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Dec 21 15:34:34 GMT 2023
    - 9.3K bytes
    - Viewed (0)
  6. .idea/upsource.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <project version="4">
      <component name="UpsourceSharedProjectSettings">
        <option name="upsourceUrl" value="https://upsource.jetbrains.com/" />
      </component>
    XML
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Wed Nov 21 11:36:20 GMT 2018
    - 211 bytes
    - Viewed (0)
  7. .idea/runConfigurations/Generate_MPP_Tests.xml

        <ExternalSystemSettings>
          <option name="executionName" />
          <option name="externalProjectPath" value="$PROJECT_DIR$/libraries/tools/kotlin-project-model-tests-generator" />
          <option name="externalSystemIdString" value="GRADLE" />
          <option name="scriptParameters" value="" />
          <option name="taskDescriptions">
            <list />
          </option>
    XML
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Fri Aug 12 10:34:14 GMT 2022
    - 1001 bytes
    - Viewed (0)
  8. .fleet/settings.json

    {
        "backend.maxHeapSizeMb": 2602,
    
        // https://youtrack.jetbrains.com/issue/FL-22276
        // Fleet cannot handle nested maven projects until FL-22276
        "ignored.project.globs": [
            "**/pom.xml"
        ]
    Json
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Mon Oct 16 13:48:21 GMT 2023
    - 214 bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/DeclarationsInPackageProvider.kt

                when {
                    analysisSession.targetPlatform.isJvm() -> {
                        val psiPackage = PsiPackageImpl(PsiManager.getInstance(analysisSession.project), packageFqName.asString())
                        forEachNonKotlinPsiElementFinder(analysisSession.project) { finder ->
                            finder.getClassNames(psiPackage, analysisSession.useSiteAnalysisScope)
                                .mapNotNullTo(this, Name::identifier)
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Tue Apr 23 10:55:55 GMT 2024
    - 5.4K bytes
    - Viewed (0)
  10. analysis/analysis-api-fe10/tests-gen/org/jetbrains/kotlin/analysis/api/fe10/test/cases/generated/cases/symbols/Fe10IdeNormalAnalysisSourceModuleSingleSymbolByPsiTestGenerated.java

    @SuppressWarnings("all")
    @TestMetadata("analysis/analysis-api/testData/symbols/singleSymbolByPsi")
    @TestDataPath("$PROJECT_ROOT")
    public class Fe10IdeNormalAnalysisSourceModuleSingleSymbolByPsiTestGenerated extends AbstractSingleSymbolByPsiTest {
      @NotNull
      @Override
      public AnalysisApiTestConfigurator getConfigurator() {
    Java
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 19 17:23:15 GMT 2024
    - 16.4K bytes
    - Viewed (0)
Back to top