Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 135 for IDEs (0.46 sec)

  1. platforms/documentation/docs/src/samples/readme-templates/native-library-body.adoc.template

    To learn more about this subject, have a look at the https://github.com/gradle/native-samples/tree/master/cpp/simple-library[simple library sample] for a demonstration.
    
    NOTE: Gradle integrates with several IDEs: link:{userManualPath}/visual_studio_plugin.html[Visual Studio], link:{userManualPath}/xcode_plugin.html[Xcode] and https://www.jetbrains.com/help/clion/gradle-support.html[Clion].
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. 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)
  3. platforms/documentation/docs/src/snippets/providers/services/kotlin/build.gradle.kts

    // end::exec-op-inject[]
    
    // tag::tooling-model[]
    // Implements the ToolingModelBuilder interface.
    // This interface is used in Gradle to define custom tooling models that can
    // be accessed by IDEs or other tools through the Gradle tooling API.
    class OrtModelBuilder : ToolingModelBuilder {
        private val repositories: MutableMap<String, String> = mutableMapOf()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:14:15 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/KotlinDslToolingModelsClasspathProvider.groovy

    import org.gradle.integtests.tooling.fixture.ToolingApiDistribution
    import org.gradle.util.GradleVersion
    
    
    /**
     * Provides TAPI client additional classpath as found in Kotlin IDEs.
     */
    class KotlinDslToolingModelsClasspathProvider implements ToolingApiAdditionalClasspathProvider {
    
        @Override
        List<File> additionalClasspathFor(ToolingApiDistribution toolingApi, GradleDistribution gradle) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/kotlin/Module.md

    # Module gradle
    
    # Kotlin DSL Reference for Gradle
    
    Gradle’s Kotlin DSL provides an enhanced editing experience in supported IDEs, with superior content assistance, refactoring, documentation, and more.
    For an introduction see the <a href="../userguide/kotlin_dsl.html">Kotlin DSL Primer</a>.
    
    The Kotlin DSL is implemented on top of Gradle’s Java API.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 22:09:08 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. architecture/runtimes.md

    - Tooling API client. This a library that is embedded into applications, such as IDEs or CI agents, that allows them to act as a Gradle client.
    - Worker processes. Long-running daemon processes that the Gradle daemon starts to run specific kinds of work, such as compilation or test execution.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/providers/services/groovy/build.gradle

    // end::exec-op-inject[]
    
    // tag::tooling-model[]
    // Implements the ToolingModelBuilder interface.
    // This interface is used in Gradle to define custom tooling models that can
    // be accessed by IDEs or other tools through the Gradle tooling API.
    class OrtModelBuilder implements ToolingModelBuilder {
        private Map<String, String> repositories = [:]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:14:15 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/gradle_wrapper_basics.adoc

    The Wrapper provides the following benefits:
    
    - Standardizes a project on a given Gradle version.
    - Provisions the same Gradle version for different users.
    - Provisions the Gradle version for different execution environments (IDEs, CI servers...).
    
    [[sec:using_the_wrapper]]
    == Using the Gradle Wrapper
    
    It is always recommended to execute a build with the Wrapper to ensure a reliable, controlled, and standardized execution of the build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 19:34:59 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/readme-templates/native-application-body.adoc.template

    To learn more about this subject, have a look at the https://github.com/gradle/native-samples/tree/master/cpp/transitive-dependencies[transitive dependency sample] for a demonstration.
    
    NOTE: Gradle integrates with several IDEs: link:{userManualPath}/visual_studio_plugin.html[Visual Studio], link:{userManualPath}/xcode_plugin.html[Xcode] and https://www.jetbrains.com/help/clion/gradle-support.html[Clion].
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. 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)
Back to top