Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for IDEs (0.49 sec)

  1. platforms/core-configuration/declarative-dsl-tooling-builders/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.implementation-kotlin")
    }
    
    description = "Declarative DSL Tooling Builders for IDEs"
    
    dependencies {
        api(projects.serviceProvider)
        api(project(":core"))
        api(project(":core-api"))
    
        api(libs.kotlinStdlib)
    
        implementation(projects.stdlibJavaExtensions)
        implementation(project(":declarative-dsl-evaluator"))
        implementation(project(":declarative-dsl-provider"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 572 bytes
    - Viewed (0)
  2. platforms/ide/ide-native/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Plugins for integration with native projects in XCode and Visual Studio IDEs"
    
    sourceSets {
        main {
            // Incremental Groovy joint-compilation doesn't work with the Error Prone annotation processor
            errorprone.enabled = false
        }
    }
    
    dependencies {
        api(libs.groovy)
        api(libs.guava)
        api(libs.inject)
        api(libs.jsr305)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-tooling-builders/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.implementation-kotlin")
    }
    
    description = "Kotlin DSL Tooling Builders for IDEs"
    
    dependencies {
        api(project(":core-api"))
        api(project(":core"))
        api(libs.kotlinStdlib)
    
        implementation(projects.stdlibJavaExtensions)
        implementation(projects.time)
        implementation(project(":kotlin-dsl"))
        implementation(project(":base-services"))
        implementation(project(":resources"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. gradle.properties

    org.gradle.kotlin.dsl.allWarningsAsErrors=true
    # Kotlin settings
    kotlin.incremental.useClasspathSnapshot=true
    kotlin.stdlib.default.dependency=false
    kotlin.js.ir.output.granularity=whole-program
    # Temporarily force IDEs to produce build scans
    systemProp.org.gradle.internal.ide.scan=true
    # If you're experimenting with changes and don't want to update the verification file right away, please change the mode to "lenient" (not "off")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 16:35:19 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/build.gradle.kts

     * limitations under the License.
     */
    
    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Plugins that add support for generating IDE project files used for importing Gradle projects into IDEs"
    
    errorprone {
        disabledChecks.addAll(
            "MixedMutabilityReturnType", // 2 occurrences
        )
    }
    
    dependencies {
        api(projects.stdlibJavaExtensions)
        api(projects.serviceProvider)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. platforms/ide/ide/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Plugins and model builders for integration with Eclipse and IntelliJ IDEs"
    
    errorprone {
        disabledChecks.addAll(
            "EmptyBlockTag", // 1 occurrences
            "LoopOverCharArray", // 1 occurrences
            "ObjectEqualsForPrimitives", // 3 occurrences
            "StringCaseLocaleUsage", // 2 occurrences
        )
    }
    
    dependencies {
        api(project(":base-services"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    NOTE: Currently, the _daemon JVM discovery_ does not support auto-provisioning of new JVM installations.
    This will be added in a future release.
    
    [[sec:tools_and_ides]]
    == Tools & IDEs
    
    The <<third_party_integration.adoc#embedding,Gradle Tooling API>> used by IDEs and other tools to integrate with Gradle _always_ uses the Gradle Daemon to execute builds.
    If you execute Gradle builds from within your IDE, you already use the Gradle Daemon.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. JavadocStyleGuide.md

    ```java
    public Image getImage(URL url, String name) {}
    ```
    
    ## 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
     ```
    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. Makefile.core.mk

    # Optional file including user-specific settings (HUB, TAG, etc)
    -include .istiorc.mk
    
    # Environment for tests, the directory containing istio and deps binaries.
    # Typically same as GOPATH/bin, so tests work seamlessly with IDEs.
    
    export ISTIO_BIN=$(GOBIN)
    
    # If we are running in the Linux build container on non Linux hosts, we add the
    # linux binaries to the build dependencies, BUILD_DEPS, which can be added to other targets
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
Back to top