Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 736 for idea (0.06 sec)

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

    import org.jetbrains.kotlin.analysis.low.level.api.fir.api.getOrBuildFirSafe
    import org.jetbrains.kotlin.fir.expressions.FirResolvedQualifier
    import org.jetbrains.kotlin.idea.references.KtReference
    import org.jetbrains.kotlin.idea.references.KtSimpleNameReference
    
    internal class KaFirReferenceResolveProvider(
        override val analysisSession: KaFirSession,
    ) : KaReferenceResolveProvider(), KaFirSessionComponent {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 23 08:30:49 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/IdeaExtSmokeTest.groovy

     */
    
    package org.gradle.smoketests
    
    class IdeaExtSmokeTest extends AbstractSmokeTest {
        def "can use org.jetbrains.gradle.plugin.idea-ext"() {
            buildFile << """
                plugins {
                    id "org.jetbrains.gradle.plugin.idea-ext" version "${TestedVersions.ideaExt}"
                    id "java"
                }
            """
            expect:
            runner("help").build()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1006 bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/idea/IdeaSingleEntryLibraryDependency.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.model.idea;
    
    import org.gradle.tooling.model.ExternalDependency;
    
    import javax.annotation.Nullable;
    import java.io.File;
    
    /**
     * "Single-Entry Module Library" as IDEA calls it. For example a single Jar file with sources Jar.
     *
     * @since 1.0-milestone-5
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/idea/model/internal/ModuleDependencyBuilderTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.plugins.ide.idea.model.internal
    
    import org.gradle.plugins.ide.idea.internal.IdeaModuleMetadata
    import org.gradle.plugins.ide.internal.IdeArtifactRegistry
    import spock.lang.Specification
    
    import static org.gradle.internal.component.local.model.TestComponentIdentifiers.newProjectId
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/idea/IdeaJavaLanguageSettings.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.model.idea;
    
    import org.gradle.api.JavaVersion;
    import org.gradle.tooling.model.UnsupportedMethodException;
    import org.gradle.tooling.model.java.InstalledJdk;
    
    /**
     * Describes Java language settings for an IDEA module.
     *
     * @since 2.11
     */
    public interface IdeaJavaLanguageSettings {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/reference/third_party_integration.adoc

    [[third_party_integration]]
    = Gradle & Third-party Tools
    
    Gradle can be integrated with many different third-party tools such as IDEs and continuous integration platforms. Here we look at some of the more common ones as well as how to integrate your own tool with Gradle.
    
    [[ides]]
    == IDEs
    
    Android Studio::
    As a variant of IntelliJ IDEA, https://developer.android.com/studio/[Android Studio] has built-in support for importing and building Gradle projects.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/IntegrationTestBuildContext.java

            String path = System.getProperty(propertyName);
            // MODULE_WORKING_DIR doesn't seem to work correctly and MODULE_DIR seems to be in `.idea/modules/<path-to-subproject>`
            // See https://youtrack.jetbrains.com/issue/IDEA-194910
            return path != null ? new TestFile(new File(path.replace(".idea/modules/", ""))) : null;
        }
    
        private static TestFile testFile(String path) {
            File file = new File(path);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KaFirReferenceResolver.kt

    import org.jetbrains.kotlin.analysis.api.permissions.allowAnalysisFromWriteAction
    import org.jetbrains.kotlin.analysis.api.permissions.allowAnalysisOnEdt
    import org.jetbrains.kotlin.idea.references.AbstractKtReference
    import org.jetbrains.kotlin.idea.references.KtReference
    import org.jetbrains.kotlin.utils.exceptions.errorWithAttachment
    import org.jetbrains.kotlin.utils.exceptions.shouldIjPlatformExceptionBeRethrown
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/doc/c4/C4_2_Container.puml

        Rel(gradle, provider, "Uses", "Script compilation")
        Rel(gradle, plugin, "Uses", "e.g. in `buildSrc`")
    }
    
    System_Boundary(ide, "IntelliJ IDE") {
    
        System_Ext(editor, ".gradle.kts script editor", "In IntelliJ IDEA or Android Studio")
        System_Ext(ideKotlin, "IntelliJ Kotlin Plugin", "for IDEA or Android Studio")
    
        Rel_Neighbor(editor, ideKotlin, "Uses")
    }
    
    
    System_Boundary(kotlinTools, "Kotlin Toolchain") {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 17:46:30 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/idea/DefaultIdeaLanguageLevel.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.plugins.ide.internal.tooling.idea;
    
    import com.google.common.base.Objects;
    import org.gradle.tooling.model.idea.IdeaLanguageLevel;
    
    import java.io.Serializable;
    
    public class DefaultIdeaLanguageLevel implements IdeaLanguageLevel, Serializable {
    
        private final String level;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top