Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 106 for BuildCache (0.13 sec)

  1. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/buildcache/TaskOutputCachingJavaPerformanceTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.performance.regression.buildcache
    
    import org.gradle.performance.annotations.RunFor
    import org.gradle.performance.annotations.Scenario
    import org.gradle.performance.fixture.CrossVersionPerformanceTestRunner
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 13:08:21 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorParametersKotlinIntegrationTest.groovy

                    }
                }
            """
        }
    
        private void withLocalBuildCache() {
            def cacheDir = createDir("cache-dir")
            settingsFile """
                buildCache {
                    local {
                        directory = file("${cacheDir.name}")
                    }
                }
            """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 20:22:02 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise-plugin-performance/src/performanceTest/groovy/org/gradle/performance/BuildScanPluginPerformanceTest.groovy

                def cacheDir = projectTestDir.file('local-build-cache')
                def settingsFile = projectTestDir.file('settings.gradle')
                settingsFile << """
                        buildCache {
                            local {
                                directory = '${cacheDir.absoluteFile.toURI()}'
                            }
                        }
                    """.stripIndent()
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 19 09:04:53 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. platforms/jvm/war/src/integTest/groovy/org/gradle/api/tasks/bundling/WarTaskIntegrationTest.groovy

            createDir('web-inf') {
                webinf1 {
                    file 'file1.txt'
                }
            }
            and:
            settingsFile << """
                buildCache {
                    local {
                        directory = file("local-build-cache")
                    }
                }
            """
            buildFile << """
                apply plugin: "base"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:20:44 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/initialization/DefaultSettings.java

            File projectDir = getFileResolver().resolve(rootProject);
            includedBuildSpecs.add(IncludedBuildSpec.includedBuild(projectDir, configuration));
        }
    
        @Override
        public void buildCache(Action<? super BuildCacheConfiguration> action) {
            action.execute(getBuildCache());
        }
    
        @Override
        @Inject
        public abstract BuildCacheConfigurationInternal getBuildCache();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 18:31:24 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  6. .teamcity/src/test/kotlin/CIConfigIntegrationTests.kt

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 10:00:06 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/plugins/PrecompiledGroovyPluginsIntegrationTest.groovy

            given:
            def cacheDir = createDir("cache-dir")
    
            def firstDir = createDir("first-location")
            firstDir.file("settings.gradle") << """
                rootProject.name = "test"
                buildCache {
                    local {
                        directory = file("../${cacheDir.name}")
                    }
                }
            """
            firstDir.file("buildSrc/build.gradle") << """
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 28.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_debugging.adoc

    Finally, we find this in our build file:
    
    ====
    include::sample[dir="snippets/buildCache/normalization/kotlin",files="build.gradle.kts[tags=versionInfo]"]
    include::sample[dir="snippets/buildCache/normalization/groovy",files="build.gradle[tags=versionInfo]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 15K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_settings_files.adoc

    The `Settings` object exposes a standard set of properties in your settings script.
    
    The following table lists a few commonly used properties:
    
    [%autowidth.stretch]
    |===
    | Name | Description
    
    | `buildCache`
    | The build cache configuration.
    
    | `plugins`
    | The container of plugins that have been applied to the settings.
    
    | `rootDir`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 04:15:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  10. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractSmokeTest.groovy

                text = text.replaceAll("\\\$${var}".toString(), value)
            }
            file.text = text
        }
    
        protected void setupLocalBuildCache() {
            settingsFile << """
                buildCache {
                    local {
                        directory = new File("${TextUtil.normaliseFileSeparators(buildCacheDir.absolutePath)}")
                    }
                }
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 08:14:32 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top