Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 246 for idea (0.34 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r68/CompositeBuildModuleCycleCrossVersionSpec.groovy

     * limitations under the License.
     */
    
    package org.gradle.plugins.ide.tooling.r68
    
    import org.gradle.integtests.tooling.fixture.TargetGradleVersion
    import org.gradle.integtests.tooling.fixture.ToolingApiSpecification
    import org.gradle.plugins.ide.tooling.r31.IdeaProjectUtil
    import org.gradle.plugins.ide.tooling.r33.FetchEclipseProjects
    import org.gradle.tooling.model.eclipse.HierarchicalEclipseProject
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtReferenceResolveProvider.kt

     * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
     */
    
    package org.jetbrains.kotlin.analysis.api.components
    
    import org.jetbrains.kotlin.idea.references.KtReference
    
    public abstract class KaReferenceResolveProvider {
        public abstract fun isImplicitReferenceToCompanion(reference: KtReference): Boolean
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 23 08:30:49 UTC 2024
    - 535 bytes
    - Viewed (0)
  3. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.plugins.ide.idea.model.Dependency.getScope()> does not have raw return type assignable to org.gradle.api.provider.Property in (Dependency.java:0)
    Method <org.gradle.plugins.ide.idea.model.IdeaLanguageLevel.getLevel()> does not have raw return type assignable to org.gradle.api.provider.Property in (IdeaLanguageLevel.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaSymbolBasedReference.kt

    import org.jetbrains.kotlin.analysis.api.KaAnalysisApiInternals
    import org.jetbrains.kotlin.analysis.api.KaSession
    import org.jetbrains.kotlin.analysis.api.symbols.KaSymbol
    import org.jetbrains.kotlin.idea.references.KtReference
    
    @KaAnalysisApiInternals
    public interface KaSymbolBasedReference : KtReference {
        public fun KaSession.resolveToSymbols(): Collection<KaSymbol>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 642 bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtReferenceShortener.kt

         *
         * N.B. This API is not implemented for the FE10 implementation!
         * For a K1- and K2-compatible API, use [org.jetbrains.kotlin.idea.base.codeInsight.ShortenReferencesFacility].
         *
         * Also see [org.jetbrains.kotlin.idea.base.analysis.api.utils.shortenReferences] and functions around it.
         */
        public fun collectPossibleReferenceShortenings(
            file: KtFile,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. .gitignore

    **/*.swp
    cover.out
    *~
    minio
    !*/
    site/
    **/*.test
    **/*.sublime-workspace
    /.idea/
    /Minio.iml
    **/access.log
    vendor/
    .DS_Store
    *.syso
    coverage.txt
    .vscode/
    *.tar.bz2
    parts/
    prime/
    stage/
    .sia_temp/
    config.json
    node_modules/
    mc.*
    s3-check-md5*
    xl-meta*
    healing-*
    inspect*.zip
    200M*
    hash-set
    minio.RELEASE*
    mc
    nancy
    inspects/*
    .bin/
    *.gz
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 802 bytes
    - Viewed (0)
  7. build-logic-commons/build-platform/build.gradle.kts

            api("com.gradle:develocity-gradle-plugin:3.17.4") // Sync with `settings.gradle.kts`
            api("com.gradle.publish:plugin-publish-plugin:1.2.1")
            api("gradle.plugin.org.jetbrains.gradle.plugin.idea-ext:gradle-idea-ext:1.0.1")
            api("me.champeau.gradle:japicmp-gradle-plugin:0.4.1")
            api("me.champeau.jmh:jmh-gradle-plugin:0.7.2")
            api("org.asciidoctor:asciidoctor-gradle-jvm:4.0.2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/TestProjectGeneratorConfiguration.groovy

            config.language = this.language
            config.dsl = this.dsl
            config.buildSrc = this.buildSrc
    
            config.plugins = this.language == Language.GROOVY ? ['groovy', 'java', 'eclipse', 'idea'] : ['java', 'eclipse', 'idea']
            config.repositories = [mavenCentralRepositoryDefinition(this.dsl)]
            config.externalApiDependencies = this.externalApiDependencies
            config.externalImplementationDependencies = [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 13:08:21 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part4_gradle_plugins.adoc

    plugins {
        // Apply the application plugin to add support for building a CLI application in Java.
        id 'application'
        id 'maven-publish'
    }
    ----
    =====
    
    Don't forget to sync Gradle if you are using IntelliJ IDEA.
    
    Let's make sure the plugin has been applied by looking at the new tasks that are available.
    
    Run `./gradlew :app:tasks` in your command line:
    
    [source,text]
    ----
    $ ./gradlew :app:tasks
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 13 11:29:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r68/CompositeBuildModuleNamesCrossVersionSpec.groovy

     * limitations under the License.
     */
    
    package org.gradle.plugins.ide.tooling.r68
    
    import org.gradle.integtests.tooling.fixture.TargetGradleVersion
    import org.gradle.integtests.tooling.fixture.ToolingApiSpecification
    import org.gradle.plugins.ide.tooling.r31.IdeaProjectUtil
    import org.gradle.plugins.ide.tooling.r33.FetchEclipseProjects
    
    @TargetGradleVersion(">=6.8")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top