Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 157 for Cacheable (0.2 sec)

  1. platforms/documentation/docs/src/snippets/buildCache/cacheable-bundle/kotlin/settings.gradle.kts

    rootProject.name = "cacheable-bundle"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 38 bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/execution/ExecuteWorkBuildOperationType.java

             * Null if the work was cacheable.
             * Not null if {@link #getCachingDisabledReasonCategory()} is not null.
             */
            @Nullable
            String getCachingDisabledReasonMessage();
    
            /**
             * The categorisation of why the work was not cacheable.
             * Null if the work was cacheable.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:49 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CacheTaskArchiveErrorIntegrationTest.groovy

                        new File(outputDir, "output").text = "OK"
                    }
                }
    
                task cacheable(type: CustomTask)
            """
            succeeds("cacheable")
    
            then:
            def cacheKey = cacheOperations.getCacheKeyForTask(":cacheable")
            localCache.hasCacheEntry(cacheKey)
    
            when:
            executer.withStacktraceEnabled()
            cleanBuildDir()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/DefaultTypeValidationContext.java

        private final ImmutableList.Builder<Problem> problems = ImmutableList.builder();
    
        public static DefaultTypeValidationContext withRootType(Class<?> rootType, boolean cacheable) {
            return new DefaultTypeValidationContext(rootType, cacheable);
        }
    
        public static DefaultTypeValidationContext withoutRootType(boolean reportCacheabilityProblems) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. pilot/pkg/model/xds_cache.go

    	// Whenever these configs change, we should invalidate this cache entry.
    	DependentConfigs() []ConfigHash
    	// Cacheable indicates whether this entry is valid for cache. For example
    	// for EDS to be cacheable, the Endpoint should have corresponding service.
    	Cacheable() bool
    }
    
    const (
    	CDSType = "cds"
    	EDSType = "eds"
    	RDSType = "rds"
    	SDSType = "sds"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 02 07:02:05 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_concepts.adoc

    As <<build_cache_use_cases.adoc#share_results_between_ci_builds,discussed previously>>, you can use Develocity to diagnose the source build of these unexpected cache-hits.
    
    == Non-cacheable tasks
    
    You've seen quite a bit about cacheable tasks, which implies there are non-cacheable ones, too. If caching task outputs is as awesome as it sounds, why not cache every task?
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_debugging.adoc

    <3> Build it once to let it populate the cache.
    <4> Clean the project again.
    <5> Build it again: this time everything cacheable should load from the just populated cache.
    
    You should see all cacheable tasks loaded from cache, while non-cacheable tasks should be executed.
    
    [.screenshot]
    image::build-cache/fully-cached-task-execution.png[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 15K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/buildCache/cacheable-bundle-task/groovy/settings.gradle

    rootProject.name = 'cacheable-bundle'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 38 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/caching_android_projects.adoc

    == Instrumented test execution (i.e., Espresso tests)
    
    Android instrumented tests (`DeviceProviderInstrumentTestTask`), often referred to as “Espresso” tests, are also not cacheable.
    The Google Android team is also working to make such tests cacheable.
    Please see https://issuetracker.google.com/issues/115873051[this issue].
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 12:54:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedTaskExecutionIntegrationTest.groovy

            // Building with the resources seen in the opposite order
            // shouldn't make a difference
            make("B")
            succeeds("cacheable")
            make("A")
            withBuildCache().run("cacheable")
            then:
            result.assertTaskSkipped(":cacheable")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 16.8K bytes
    - Viewed (0)
Back to top