Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 46 of 46 for configCache (0.2 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/ant.adoc

    This migration process can be performed incrementally, and you can maintain a functional Gradle build throughout the transition.
    
    WARNING: Ant integration is not fully compatible with the <<configuration_cache.adoc#config_cache,configuration cache>>.
    Using link:{javadocPath}/org/gradle/api/Task.html#getAnt--[Task.ant] to run Ant task in the task action may work, but importing the Ant build is not supported.
    
    [[sec:ant_api]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 15:23:52 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    ====
    .gradle.properties
    [source,properties]
    ----
    org.gradle.configuration-cache=true
    ----
    ====
    
    For more information about the configuration cache, check out the
    <<configuration_cache.adoc#config_cache,configuration cache documentation>>.
    
    === Additional configuration cache benefits
    
    The configuration cache enables additional benefits as well. When enabled, Gradle:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    Toggles the <<build_cache.adoc#build_cache, Gradle Build Cache>>. Gradle will try to reuse outputs from previous builds. _Default is off_.
    
    `--configuration-cache`, `--no-configuration-cache`::
    Toggles the <<configuration_cache.adoc#config_cache,Configuration Cache>>. Gradle will try to reuse the build configuration from previous builds. _Default is off_.
    
    `--configuration-cache-problems=(fail,warn)`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    An example of a build feature is the <<configuration_cache.adoc#config_cache,configuration cache>>.
    
    There are two main use cases:
    
    - Using the status of build features in reports or statistics.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

    [[migant:imported_builds]]
    == Working with an imported build
    
    WARNING: Importing an Ant build is not supported with the <<configuration_cache.adoc#config_cache,configuration cache>>.
    You need to complete the conversion to Gradle to get the benefits of caching.
    
    The first step of many migrations will involve <<ant#sec:import_ant_build,importing an Ant build>> using `ant.importBuild()`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    :gradle-issues: https://github.com/gradle/gradle/issues/
    
    [[config_cache]]
    = Configuration cache
    
    // Run tests for snippets included in this chapter with:
    // ./gradlew :docs:docsTest --tests="ExemplarExternalSamplesFunctionalTest.snippet-configuration-cache-*"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
Back to top