Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for shortNames (0.11 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirImportOptimizer.kt

                            emptyList()
                        } else {
                            resolvedSymbols.flatMap { toImportableFqNames(it, qualifiedNameAsFqName) }
                        }
                    }
                    importableNames.forEach { importableName ->
                        saveReferencedItem(importableName, importableName.shortName())
                    }
                }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheUnsupportedTypesIntegrationTest.groovy

        }
    
        private static executorServiceTypeOnCurrentJvm() {
            def shortName = Jvm.current().javaVersion.isCompatibleWith(JavaVersion.VERSION_21) ? 'AutoShutdownDelegatedExecutorService' : 'FinalizableDelegatedExecutorService'
            return 'java.util.concurrent.Executors$' + shortName
        }
    
        def "reports when task field is declared with type #baseType"() {
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

            val importDirectivesWithSameImportedFqName = containingFile.collectDescendantsOfType { importedDirective: KtImportDirective ->
                importedDirective.importedFqName?.shortName() == classId.shortClassName
            }
            return importDirectivesWithSameImportedFqName.isNotEmpty() &&
                    importDirectivesWithSameImportedFqName.all { it.importedFqName != classId.asSingleFqName() }
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
Back to top