Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for detectedOverlappingOutputs (0.4 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/KotlinScriptEvaluator.kt

    
            override fun shouldDisableCaching(detectedOverlappingOutputs: OverlappingOutputs?): Optional<CachingDisabledReason> {
                if (cachingDisabledByProperty) {
                    return Optional.of(CACHING_DISABLED_REASON)
                }
    
                return super.shouldDisableCaching(detectedOverlappingOutputs)
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 10:23:24 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/tasks/execution/TaskExecution.java

            return getExecutionBehavior() == ExecutionBehavior.INCREMENTAL;
        }
    
        @Override
        public Optional<CachingDisabledReason> shouldDisableCaching(@Nullable OverlappingOutputs detectedOverlappingOutputs) {
            if (task.isHasCustomActions()) {
                LOGGER.info("Custom actions are attached to {}.", task);
            }
    
            return taskCacheabilityResolver.shouldDisableCaching(
                task,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/AbstractTransformExecution.java

                operationContext = null;
            }
        }
    
        @Override
        public Optional<CachingDisabledReason> shouldDisableCaching(@Nullable OverlappingOutputs detectedOverlappingOutputs) {
            return transform.isCacheable()
                ? maybeDisableCachingByProperty()
                : Optional.of(NOT_CACHEABLE);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/UnitOfWork.java

         * When returning {@link Optional#empty()} if caching can still be disabled further down the pipeline.
         */
        default Optional<CachingDisabledReason> shouldDisableCaching(@Nullable OverlappingOutputs detectedOverlappingOutputs) {
            return Optional.empty();
        }
    
        /**
         * Is this work item allowed to load from the cache, or if we only allow it to be stored.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GroovyScriptClassCompiler.java

                this.scriptCompilationHandler = scriptCompilationHandler;
            }
    
            @Override
            public Optional<CachingDisabledReason> shouldDisableCaching(@Nullable OverlappingOutputs detectedOverlappingOutputs) {
                // Disabled since enabling it introduced negative savings to Groovy script compilation.
                // It's not disabled for Kotlin since Kotlin has better compile avoidance, additionally
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:23:24 UTC 2024
    - 23.5K bytes
    - Viewed (0)
Back to top