Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for canStoreInCache (0.12 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ExecuteStep.java

            public Object getOutput(File workspace) {
                return workOutput.getOutput(workspace);
            }
    
            @Override
            public boolean canStoreOutputsInCache() {
                return workOutput.canStoreInCache();
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/UnitOfWork.java

             */
            @Nullable
            Object getOutput(File workspace);
    
            /**
             * Whether this output should be stored in the build cache.
             */
            default boolean canStoreInCache() {
                return true;
            }
        }
    
        enum WorkResult {
            DID_WORK,
            DID_NO_WORK
        }
    
        /**
         * Loads output not produced during the current execution.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/tasks/execution/TaskExecution.java

                        throw new UnsupportedOperationException("Tasks have no work output");
                    }
    
                    @Override
                    public boolean canStoreInCache() {
                        return storeInCache;
                    }
                };
            } finally {
                outputs.setPreviousOutputFiles(null);
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top