Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for storing (0.26 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. 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)
  7. 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)
  8. 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)
  9. platforms/documentation/docs/src/snippets/configurationCache/problemsKotlin/tests/store.out

    Calculating task graph as no cached configuration is available for tasks: someTask
    > Task :someTask
    
    1 problem was found storing the configuration cache.
    - Task `:someTask` of type `org.gradle.api.DefaultTask`: invocation of 'Task.project' at execution time is unsupported.
      See https://docs.gradle.org/0.0.0/userguide/configuration_cache.html#config_cache:requirements:use_project_during_execution
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 588 bytes
    - Viewed (0)
  10. pkg/registry/storage/volumeattributesclass/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package volumeattributesclass provides Registry interface and its REST
    // implementation for storing volumeattributesclass api objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:18:56 UTC 2023
    - 740 bytes
    - Viewed (0)
Back to top