Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 105 for Cacheable (0.12 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/action/DefaultConfigurableRules.java

        }
    
        private final List<ConfigurableRule<DETAILS>> configurableRules;
        private final boolean cacheable;
    
        public DefaultConfigurableRules(List<ConfigurableRule<DETAILS>> rules) {
            this.configurableRules = ImmutableList.copyOf(rules);
    
            cacheable = computeCacheable();
        }
    
        private boolean computeCacheable() {
            boolean isCacheable = false;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 04 12:43:55 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/api/internal/tasks/execution/ExecuteTaskBuildOperationType.java

             * Null if the task was cacheable.
             * Not null if {@link #getCachingDisabledReasonCategory()} is not null.
             */
            @Nullable
            String getCachingDisabledReasonMessage();
    
            /**
             * The categorisation of the why the task was not cacheable.
             * Null if the task 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. platforms/documentation/docs/src/snippets/buildCache/cacheable-bundle/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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top