Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for ide (0.24 sec)

  1. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/PerformanceTestPlugin.kt

    import org.gradle.kotlin.dsl.*
    import org.gradle.plugins.ide.eclipse.EclipsePlugin
    import org.gradle.plugins.ide.eclipse.model.EclipseModel
    import org.gradle.plugins.ide.idea.IdeaPlugin
    import org.gradle.plugins.ide.idea.model.IdeaModel
    import org.gradle.process.CommandLineArgumentProvider
    import org.w3c.dom.Document
    import java.io.File
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  2. .github/CODEOWNERS

    .github/workflows/gitstream.yml     @tresat
    
    # IDE Experience team
    platforms/ide/                    @gradle/bt-ide-experience
    # Eventually be moved to the core platform.
    # Currently heavily developed by the bt-ide-experience team.
    platforms/ide/problems/           @gradle/bt-ide-experience
    platforms/ide/ide-native/         @gradle/bt-ide-experience @gradle/bt-native-maintainers
    
    # Documentation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:44:59 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

         */
        ModelSideEffects(true),
    
        /**
         * Contains the model objects sent back to the IDE in response to a TAPI request.
         */
        Model(true),
    
        /**
         * Contains the model objects queried by the IDE provided build action in order to calculate the model to send back.
         */
        IntermediateModels(true),
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/KotlinScript.kt

    import java.io.File
    import java.net.URI
    
    
    /**
     * Base contract for all Gradle Kotlin DSL scripts.
     *
     * This is the Kotlin flavored equivalent of [org.gradle.api.Script].
     *
     * It is not implemented directly by the IDE script templates to overcome ambiguous conflicts and Kotlin language
     * limitations.
     *
     * @since 6.0
     */
    interface KotlinScript {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  5. build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/extension/ExternalModulesExtension.kt

        val googleHttpClientApacheV2 = "com.google.http-client:google-http-client-apache-v2"
        val googleOauthClient = "com.google.oauth-client:google-oauth-client"
        val gradleIdeStarter = "org.gradle.buildtool.internal:gradle-ide-starter:$gradleIdeStarterVersion"
        val gradleProfiler = "org.gradle.profiler:gradle-profiler"
        val develocityTestAnnotation = "com.gradle:develocity-testing-annotations"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. CONTRIBUTING.md

    In order to make changes to Gradle, you'll need:
    
    * A [Java Development Kit](http://jdk.java.net/) (JDK) **version 11**. Fixed version is required to use [remote cache](#remote-build-cache). 
    * A text editor or IDE. We use and recommend [IntelliJ IDEA CE](http://www.jetbrains.com/idea/).  IntelliJ Ultimate will also work. You'll need IntelliJ 2021.2.2 or newer.
    * [git](https://git-scm.com/) and a [GitHub account](https://github.com/join).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/resolver/KotlinBuildScriptDependenciesResolver.kt

        constructor() : this(DefaultResolverEventLogger)
    
        override fun resolve(
            script: ScriptContents,
            environment: Map<String, Any?>?,
            /**
             * Shows a message in the IDE.
             *
             * To report whole file errors (e.g. failure to query for dependencies), one can just pass a
             * null position so the error/warning will be shown in the top panel of the editor
             *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  8. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

     */
    fun Project.supportsPredictiveTestSelection() = !isPerformanceProject() && !setOf("smoke-test", "soak", "kotlin-dsl", "smoke-ide-test").contains(name)
    
    /**
     * Test lifecycle tasks that correspond to CIBuildModel.TestType (see .teamcity/Gradle_Check/model/CIBuildModel.kt).
     */
    fun TaskContainer.registerCITestDistributionLifecycleTasks() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 07:43:28 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  9. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt

    import org.gradle.api.tasks.PathSensitivity
    import org.gradle.api.tasks.SourceSet
    import org.gradle.api.tasks.SourceSetContainer
    import org.gradle.api.tasks.TaskProvider
    import org.gradle.kotlin.dsl.*
    import org.gradle.plugins.ide.idea.IdeaPlugin
    import org.gradle.process.CommandLineArgumentProvider
    
    
    fun Project.addDependenciesAndConfigurations(prefix: String) {
        configurations {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 23:14:25 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top