Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 411 for idea (0.05 sec)

  1. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/symbolDeclarationRenderer/AbstractSymbolRenderingByReferenceTest.kt

    import org.jetbrains.kotlin.analysis.test.framework.services.expressionMarkerProvider
    import org.jetbrains.kotlin.analysis.test.framework.utils.executeOnPooledThreadInReadAction
    import org.jetbrains.kotlin.idea.references.mainReference
    import org.jetbrains.kotlin.psi.KtFile
    import org.jetbrains.kotlin.psi.KtReferenceExpression
    import org.jetbrains.kotlin.test.services.TestServices
    import org.jetbrains.kotlin.test.services.assertions
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/FetchAllIdeaProjects.java

     */
    package org.gradle.internal.cc.impl.isolated;
    
    import org.gradle.tooling.BuildAction;
    import org.gradle.tooling.BuildController;
    import org.gradle.tooling.model.gradle.GradleBuild;
    import org.gradle.tooling.model.idea.IdeaProject;
    
    import java.io.Serializable;
    import java.util.ArrayList;
    import java.util.LinkedHashMap;
    import java.util.List;
    import java.util.Map;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. settings.gradle.kts

     *   at org.jetbrains.kotlin.builtins.jvm.JavaToKotlinClassMapper.mapJavaToKotlin(JavaToKotlinClassMapper.kt:41)
     * 	...
     * ```
     */
    fun isKnownBrokenIntelliJ(): Boolean {
      val ideaVersionString = System.getProperty("idea.version") ?: return false
    
      return try {
        val (major, minor, _) = ideaVersionString.split(".", limit = 3)
        KotlinVersion(major.toInt(), minor.toInt()) < KotlinVersion(2023, 2)
      } catch (e: Exception) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Apr 14 14:24:05 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/PublicApi.kt

     *
     * A type is part of the Gradle public API if and only if its FQCN matches {@link #includes} and does not match {@link #excludes}.
     */
    // NOTE: If you update this, please also change .idea/scopes/Gradle_public_API.xml
    // and also change `avoiding_gradle_internal_apis` section in `src/docs/userguide/authoring-builds/authoring_maintainable_build_scripts.adoc`
    object PublicApi {
        val includes = listOf(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:53 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r213/ModelsWithGradleProjectCrossVersionSpec.groovy

    import org.gradle.tooling.model.eclipse.EclipseProject
    import org.gradle.tooling.model.eclipse.HierarchicalEclipseProject
    import org.gradle.tooling.model.gradle.GradleBuild
    import org.gradle.tooling.model.idea.BasicIdeaProject
    import org.gradle.tooling.model.idea.IdeaProject
    
    class ModelsWithGradleProjectCrossVersionSpec extends ToolingApiSpecification {
        static projectScopedModels = [GradleProject, EclipseProject, HierarchicalEclipseProject]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. build-logic/settings.gradle.kts

    include("build-update-utils")
    
    // Collection of plugins for the root build to configure lifecycle, reporting and IDE integration
    include("root-build")
    
    // Shared information about external modules
    include("dependency-modules")
    
    // Special purpose build logic for root project - please preserve alphabetical order
    include("cleanup")
    include("idea")
    include("lifecycle")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:29:44 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. Development.md

    That meant possible solutions for Problems could be scattered all over the console output.
    To improve the user experience, we introduced a new way to provide suggestions.
    The idea is to provide a list of suggestions for a problem in the console output.
    The suggestions are displayed in the separate "Try"- section of the console output.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 22:54:40 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. JavadocStyleGuide.md

    ```
    
    ## 1.5 A note on IDEs
    
    ### 1.5.1 IntelliJ IDEA
    
    IntelliJ IDEA will display `<p>` or an empty `*` as a new line:
    
    ```java
    /**
     * A
     *
     * B
     ```
    
    ```java
    /**
     * A
     * <p>
     * B
     ```
    
    Render as:
    
    ```text
    A
    B
    ```
    
    If you want to stop IntelliJ IDEA from auto closing HTML tags:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. build-logic/root-build/src/main/kotlin/gradlebuild.internal.cc-experiment.gradle.kts

            task.name in listOf(
                "components",
                "dependantComponents",
                "model",
            ) -> true
            task.name.startsWithAnyOf(
                "publish",
                "idea",
            ) -> true
            task is GradleBuild -> true
    
            // gradle/gradle build tasks
            task.name in listOf(
                "updateInitPluginTemplateVersionFile",
                "resolveAllDependencies",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 17:29:09 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KaFirCollectionLiteralReference.kt

    import org.jetbrains.kotlin.fir.expressions.FirArrayLiteral
    import org.jetbrains.kotlin.fir.types.ConeClassLikeType
    import org.jetbrains.kotlin.fir.types.resolvedType
    import org.jetbrains.kotlin.idea.references.KtCollectionLiteralReference
    
    import org.jetbrains.kotlin.psi.KtCollectionLiteralExpression
    import org.jetbrains.kotlin.psi.KtImportAlias
    
    internal class KaFirCollectionLiteralReference(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top