Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for findClasses (0.3 sec)

  1. testing/internal-testing/src/main/groovy/org/gradle/integtests/fixtures/JUnitXmlTestExecutionResult.groovy

            Map<String, File> classes = findClasses()
            assertThat(classes.keySet(), equalTo(testClasses as Set))
            return this
        }
    
        TestExecutionResult assertTestClassesNotExecuted(String... testClasses) {
            if (testResultsDir.exists()) {
                Map<String, File> classes = findClasses()
                assertThat(classes.keySet(), not(hasItems(testClasses)))
                this
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/util/JdkClassFinder.java

     We cannot reuse them directly as not all those methods are parts of intellij-core which is used in Analysis API
    */
    class JdkClassFinder {
        // copy of 'com.intellij.openapi.projectRoots.impl.JavaSdkImpl.findClasses'
        static @NotNull List<String> findClasses(@NotNull Path jdkHome, boolean isJre) {
            List<String> result = new ArrayList<>();
    
            if (isExplodedModularRuntime(jdkHome)) {
                try {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Sep 06 07:36:11 UTC 2023
    - 9K bytes
    - Viewed (0)
  3. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/util/LibraryUtils.kt

                    }
                    true
                }
            )
            return files
        }
    
        fun findClassesFromJdkHome(jdkHome: Path, isJre: Boolean): List<Path> {
            return JdkClassFinder.findClasses(jdkHome, isJre).map { rawPath ->
                val path = URLUtil.extractPath(rawPath).removeSuffix("/").removeSuffix("!")
                Paths.get(path)
            }
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Sep 06 07:36:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. .space/CODEOWNERS

    /compiler/serialization/ "Kotlin Compiler Core" Simon.Ogorodnik
    /compiler/test-infrastructure/ "Kotlin Compiler Core"
    /compiler/test-infrastructure-utils/ "Kotlin Compiler Core"
    
    /compiler/testData/asJava/findClasses/ "Kotlin Compiler Core"
    /compiler/testData/asJava/lightClasses/ "Kotlin IDE Analysis Core"
    /compiler/testData/builtin-classes/ "Kotlin Libraries"
    /compiler/testData/capturedTypeApproximation/ "Kotlin Compiler Core"
    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