Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 371 for addc (0.12 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/custom_tasks.adoc

    = Advanced Tasks
    
    [[incremental_tasks]]
    == Incremental tasks
    
    In Gradle, implementing a task that skips execution when its inputs and outputs are already `UP-TO-DATE` is simple and efficient, thanks to the <<incremental_build.adoc#incremental_build,Incremental Build>> feature.
    
    However, there are times when only a few input files have changed since the last execution, and it is best to avoid reprocessing all the unchanged inputs.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 15:21:05 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/core-plugins/antlr_plugin.adoc

    [[sec:antlr_source_set_properties]]
    == Source set properties
    
    The ANTLR plugin adds the following properties to each source set in the project.
    
    `antlr.srcDirs` — `Set&lt;File&gt;`::
    The source directories containing the ANTLR grammar files of this source set.
    Can set using anything <<working_with_files.adoc#sec:specifying_multiple_files, that implicitly converts to a file collection>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/core-plugins/checkstyle_plugin.adoc

    ====
    
    The plugin adds a number of tasks to the project that perform the quality checks. You can execute the checks by running `gradle check`.
    
    Note that Checkstyle will run with the same Java version used to run Gradle.
    
    [[sec:checkstyle_tasks]]
    == Tasks
    
    The Checkstyle plugin adds the following tasks to the project:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 16:44:32 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/build-organization/composite-builds/plugin-dev/README.adoc

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/gradle_basics.adoc

    <5> Gradle build scripts of the two subprojects - `subproject-a` and `subproject-b`
    <6> Source code and/or additional files for the projects
    
    == Invoking Gradle
    
    === IDE
    
    Gradle is <<gradle_ides.adoc#gradle_ides,built-in to many IDEs>> including Android Studio, IntelliJ IDEA, Visual Studio Code, Eclipse, and NetBeans.
    
    Gradle can be automatically invoked when you build, clean, or run your app in the IDE.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 19:34:59 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/gradle_wrapper_basics.adoc

    ----
    $ gradlew.bat build
    
    include::{snippetsPath}/wrapper/simple/tests/wrapperBatchFileExecution.out[]
    ----
    
    Consult the <<gradle_wrapper.adoc#gradle_wrapper_reference,Gradle Wrapper reference>> to learn more.
    
    [.text-right]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 19:34:59 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/task_basics.adoc

    ----
    
    Build scripts can optionally define task dependencies.
    Gradle then automatically determines the task execution order.
    
    Consult the <<more_about_tasks.adoc#more_about_tasks,Task development chapter>> to learn more.
    
    [.text-right]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 19:34:59 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/troubleshooting/version_catalog_problems.adoc

    Federico La Penna <******@****.***> 1705182549 +0100
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 13 21:49:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/networking.adoc

    These properties can be set directly in the build script.
    For example, setting the HTTP proxy host would be done with `System.setProperty('http.proxyHost', 'www.somehost.org')`.
    
    Alternatively, the properties can be <<build_environment.adoc#sec:gradle_configuration_properties,specified in `gradle.properties`>>.
    
    *Example 1:* Configuring an HTTP proxy using `gradle.properties`:
    ====
    ----
    systemProp.http.proxyHost=www.somehost.org
    systemProp.http.proxyPort=8080
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/project_properties.adoc

    == Project properties
    
    Project properties are available on the link:{groovyDslPath}/org.gradle.api.Project.html[Project] object.
    They can be set from the command line using the `-P` / `--project-prop` <<command_line_interface.adoc#sec:environment_options, environment option>>.
    
    The following examples demonstrate how to set project properties in different ways.
    
    *Example 1:* Setting a project property via the *command line*:
    ====
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 10:46:34 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top