Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 157 for Cacheable (0.21 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/problems/KnownProblemIds.groovy

            'validation:type-validation:invalid-use-of-type-annotation' : 'Incorrect use of type annotation',
            'validation:type-validation:not-cacheable-without-reason' : 'Not cacheable without reason',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/tasks/GenerateXcodeWorkspaceFileTask.java

     *
     * @see org.gradle.ide.xcode.XcodeWorkspace
     * @since 4.2
     */
    @Incubating
    @DisableCachingByDefault(because = "Not made cacheable, yet")
    public abstract class GenerateXcodeWorkspaceFileTask extends XmlGeneratorTask<XcodeWorkspaceFile> {
        private FileCollection xcodeProjectLocations;
    
        public GenerateXcodeWorkspaceFileTask() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/GenerateEclipseClasspath.java

     * <p>
     * At this moment nearly all configuration is done via {@link EclipseClasspath}.
     */
    @DisableCachingByDefault(because = "Not made cacheable, yet")
    public abstract class GenerateEclipseClasspath extends XmlGeneratorTask<Classpath> {
    
        private EclipseClasspath classpath;
    
        public GenerateEclipseClasspath() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/work/DisableCachingByDefault.java

     * This annotation allows clearly stating that work does not benefit from caching.
     * It also allows attaching an explanation about why a certain work unit is not made cacheable.
     *
     * <p>Caching for individual task instances can be enabled and disabled via {@link TaskOutputs#cacheIf(String, Spec)} or disabled via {@link TaskOutputs#doNotCacheIf(String, Spec)}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 20 20:53:24 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart1IntegrationTest.groovy

             and:
             verifyAll(receivedProblem(0)) {
                 fqid == 'validation:type-validation:not-cacheable-without-reason'
                 contextualLabel == 'Type \'MyTask\' must be annotated either with @CacheableTask or with @DisableCachingByDefault'
                 details == 'The task author should make clear why a task is not cacheable'
                 solutions == [
                     'Add @DisableCachingByDefault(because = ...)',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/GenerateIdeaProject.java

     * Generates an IDEA project file for root project *only*. If you want to fine tune the idea configuration <p> At this moment nearly all configuration is done via {@link IdeaProject}.
     */
    @DisableCachingByDefault(because = "Not made cacheable, yet")
    public abstract class GenerateIdeaProject extends XmlGeneratorTask<Project> {
    
        private IdeaProject ideaProject;
    
        public GenerateIdeaProject() {}
    
        @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/GenerateEclipseJdt.java

     * <p>
     * At this moment nearly all configuration is done via {@link EclipseJdt}.
     */
    @DisableCachingByDefault(because = "Not made cacheable, yet")
    public abstract class GenerateEclipseJdt extends PropertiesGeneratorTask<Jdt> {
    
        private EclipseJdt jdt;
    
        public GenerateEclipseJdt() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/MutableTransformExecution.java

            visitInputArtifact(visitor);
        }
    
        private String normalizeAbsolutePath(String path) {
            // We try to normalize the absolute path, so the workspace id is stable between machines for cacheable transforms.
            if (path.startsWith(rootProjectLocation)) {
                return path.substring(rootProjectLocation.length());
            }
            return path;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:14:33 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/route/route_cache.go

    	return model.RDSType
    }
    
    func (r *Cache) Cacheable() bool {
    	if r == nil {
    		return false
    	}
    	if r.ListenerPort == 0 {
    		return false
    	}
    
    	for _, config := range r.VirtualServices {
    		vs := config.Spec.(*networking.VirtualService)
    		for _, httpRoute := range vs.Http {
    			for _, match := range httpRoute.Match {
    				// if vs has source match, not cacheable
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/OutgoingVariantsReportTask.java

     *
     * Variants, in this context, must be understood as "things produced by a project
     * which can safely be consumed by another project".
     *
     * @since 6.0
     */
    @DisableCachingByDefault(because = "Produces only non-cacheable console output by examining configurations at execution time")
    public abstract class OutgoingVariantsReportTask extends AbstractConfigurationReportTask {
        /**
         * Limits the report to a single variant.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 28 20:17:34 UTC 2022
    - 2.4K bytes
    - Viewed (0)
Back to top