Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for maine (0.03 sec)

  1. analysis/analysis-api-standalone/build.gradle.kts

        testApi(platform(libs.junit.bom))
        testImplementation(libs.junit.jupiter.api)
        testRuntimeOnly(libs.junit.jupiter.engine)
    }
    
    kotlin {
        explicitApi()
    }
    
    sourceSets {
        "main" { projectDefault() }
        "test" {
            projectDefault()
            generatedTestDir()
        }
    }
    
    projectTest(jUnitMode = JUnitMode.JUnit5) {
        dependsOn(":dist")
        workingDir = rootDir
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/impl/KtModuleUtils.kt

                    addAll(collectSourceFilePaths(path))
                    if (includeDirectoryRoot) {
                        add(path)
                    }
                } else {
                    // E.g., project/app/src/some/pkg/main.kt
                    add(path)
                }
            }
        }
    }
    
    /**
     * Collect source file path from the given [root]
     *
     * E.g., for `project/app/src` as a [root], this will walk the file tree and
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. analysis/analysis-api-standalone/analysis-api-fir-standalone-base/build.gradle.kts

        implementation(project(":analysis:analysis-api-standalone:analysis-api-standalone-base"))
        implementation(project(":analysis:analysis-internal-utils"))
    }
    
    
    sourceSets {
        "main" { projectDefault() }
        "test" { none() }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Mar 26 20:47:37 UTC 2024
    - 706 bytes
    - Viewed (0)
  4. analysis/analysis-api/build.gradle.kts

        api(intellijCore())
        api(commonDependency("org.jetbrains.intellij.deps:asm-all"))
        api(libs.guava)
    }
    
    kotlin {
        explicitApi()
    }
    
    sourceSets {
        "main" { projectDefault() }
        "test" { projectDefault() }
    }
    
    tasks.withType<KotlinJvmCompile>().configureEach {
        compilerOptions.freeCompilerArgs.add("-Xcontext-receivers")
    }
    
    testsJar()
    
    projectTest {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCompilerFacility.kt

                val dependencyFiles = buildSet {
                    addAll(compilationPeerData.files)
                    addAll(codeFragmentMappings?.capturedFiles.orEmpty())
    
                    // The main file needs to be the last so caches for the context declarations are populated in FIR-to-IR.
                    remove(file)
                }
    
                addAll(dependencyFiles)
                add(file)
            }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 08:42:45 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  6. ChangeLog.md

    - [`KT-53447`](https://youtrack.jetbrains.com/issue/KT-53447) Leaking/unrefined types from main source set when main/test use different library versions
    - [`KT-35981`](https://youtrack.jetbrains.com/issue/KT-35981) No smart cast and UNSAFE_CALL error when using not() function instead of inverse operator
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  7. analysis/analysis-api-impl-base/build.gradle.kts

        testImplementation(commonDependency("org.jetbrains.kotlin:kotlin-reflect")) { isTransitive = false }
        testCompileOnly(toolsJarApi())
        testRuntimeOnly(toolsJar())
    }
    
    sourceSets {
        "main" { projectDefault() }
        "test" { projectDefault() }
    }
    
    tasks.withType<KotlinJvmCompile>().configureEach {
        compilerOptions.freeCompilerArgs.add("-Xcontext-receivers")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. analysis/analysis-api-standalone/tests/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/session/builder/StandaloneSessionBuilderTest.kt

                        buildKtSourceModule {
                            addSourceRoot(testDataPath(root).resolve("main"))
                            addRegularDependency(main)
                            platform = JvmPlatforms.defaultJvmPlatform
                            moduleName = "main"
                        }
                    )
                }
            }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  9. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinDeclarationProviderFactory.kt

        }
    }
    
    /**
     * While the main declaration provider created via [createDeclarationProvider] is scope-based, there are other declaration providers which
     * are not, such as file-based declaration providers. Not all declarations provided by such declaration providers can be provided by the
     * main declaration provider, even if the correct scope is provided (such as a file-based scope). For example, the main declaration provider
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. .space/CODEOWNERS

    /libraries/tools/kotlin-gradle-plugin-tcs-android/ "Kotlin Build Tools"
    /libraries/tools/kotlin-gradle-statistics/ "Kotlin Build Tools"
    /libraries/tools/kotlin-lombok/ "Kotlin Build Tools"
    /libraries/tools/kotlin-main-kts/ "Kotlin Compiler Core"
    /libraries/tools/kotlin-main-kts-test/ "Kotlin Compiler Core"
    /libraries/tools/kotlin-maven-allopen/ "Kotlin Build Tools"
    /libraries/tools/kotlin-maven-lombok/ "Kotlin Build Tools"
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:55:49 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top