Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 33 of 33 for initscript (0.16 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    include::sample[dir="snippets/buildCache/developer-ci-setup/groovy",files="settings.gradle[tags=developer-ci-setup]"]
    ====
    
    It is also possible to configure the build cache from an <<init_scripts.adoc#sec:using_an_init_script,init script>>, which can be used from the command line, added to your Gradle User Home or be a part of your custom Gradle distribution.
    
    .Init script to configure the build cache
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

        }
    
        override fun visitProperty(property: FirProperty) {
            if (visitedProperty.add(property)) {
                super.visitProperty(property)
            }
        }
    
        override fun visitScript(script: FirScript) {
            script.declarations.forEach {
                it.accept(this)
            }
        }
    
        override fun visitElement(element: FirElement) {
            element.acceptChildren(this)
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    This may cause these directories to no longer be searched or backed up by some tools. To disable it, use the following code in an <<init_scripts#sec:using_an_init_script,init script>> in the Gradle User Home:
    
    ====
    [.multi-language-sample]
    =====
    .init.gradle.kts
    [source,kotlin]
    ----
    beforeSettings {
        caches {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top