Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for storing (0.91 sec)

  1. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/java/JavaConfigurationCachePerformanceTest.groovy

            hot    | loading
            hot    | storing
            cold   | loading
            cold   | storing
        }
    
        static String loading = "loading"
        static String storing = "storing"
        static String hot = "hot"
        static String cold = "cold"
    
        static BuildMutator configurationCacheInvocationListenerFor(InvocationSettings invocationSettings, String action, File stateDirectory) {
            return new BuildMutator() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 14:54:56 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/test/TestTaskPropertiesService.java

     * disabling storing their outputs in the build cache.
     */
    @ServiceScope(Scope.Project.class)
    public interface TestTaskPropertiesService {
    
        /**
         * Collect the configuration of the given task.
         */
        TestTaskProperties collectProperties(Test task);
    
        /**
         * Avoid storing the task's outputs in the build cache.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. platforms/core-execution/build-cache-local/src/test/groovy/org/gradle/caching/local/internal/DirectoryBuildCacheTest.groovy

            def ex = thrown RuntimeException
            ex.message == "Simulated write error"
            cacheDir.listFiles() as List == []
            0 * fileAccessTracker.markAccessed(_)
        }
    
    
        def "marks file accessed when storing and loading locally"() {
            File cachedFile = null
    
            given:
            def originalFile = temporaryFolder.createFile("foo")
            originalFile.text = "bar"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 14:32:44 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache-spi/src/integTest/groovy/org/gradle/caching/BuildCacheServiceExtensibilityIntegrationTest.groovy

            withBuildCache().run "assemble"
            then:
            noExceptionThrown()
        }
    
        private static String configureCustomBuildCacheService(String additionalLogic = "") {
            """
                class CustomBuildCache extends AbstractBuildCache {
                    String shouldFail
                }
    
                class CustomBuildCacheServiceFactory implements BuildCacheServiceFactory<CustomBuildCache> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 16:09:36 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/BuildCacheStep.java

            } else {
                LOGGER.debug("Not storing result of {} in cache because storing was disabled for this execution", cacheableWork.getDisplayName());
            }
        }
    
        private void store(CacheableWork work, BuildCacheKey cacheKey, ImmutableSortedMap<String, FileSystemSnapshot> outputFilesProducedByWork, Duration executionTime) {
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 13:41:13 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. src/internal/txtar/archive.go

    //   - be able to store trees of text files describing go command test cases.
    //   - diff nicely in git history and code reviews.
    //
    // Non-goals include being a completely general archive format,
    // storing binary data, storing file modes, storing special files like
    // symbolic links, and so on.
    //
    // # Txtar format
    //
    // A txtar archive is zero or more comment lines and then a sequence of file entries.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/BuildCacheConfigurationExtensions.kt

    }
    
    
    /**
     * Configures a remote cache with the given type.
     *
     * If a remote build cache has already been configured with a different type, this method replaces it.
     *
     * Storing ("push") in the remote build cache is disabled by default.
     *
     * @param T the type of remote cache to configure.
     *
     * @see BuildCacheConfiguration.remote
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/configurationCache/topLevel/tests-kotlin/notSupported.out

    1 problem was found storing the configuration cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 217 bytes
    - Viewed (0)
  9. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/AbstractIncompleteFileSystemNodeTest.groovy

                noMoreInteractions()
            }
    
            where:
            vfsSpec << CHILD_IS_PREFIX
        }
    
        static ChildMap<FileSystemNode> sortedChildren(String path1, FileSystemNode child1, String path2, FileSystemNode child2) {
            def compared = PathUtil.getPathComparator(CASE_SENSITIVE).compare(path1, path2)
            def entry1 = new ChildMap.Entry<FileSystemNode>(path1, child1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/caching/configuration/BuildCacheConfiguration.java

        /**
         * Configures a remote cache with the given type.
         * <p>
         * If a remote build cache has already been configured with a different type, this method replaces it.
         * </p>
         * <p>
         * Storing ("push") in the remote build cache is disabled by default.
         * </p>
         * @param type the type of remote cache to configure.
         *
         */
        <T extends BuildCache> T remote(Class<T> type);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 27 16:11:30 UTC 2021
    - 3.4K bytes
    - Viewed (0)
Back to top