Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getUpToDateSpec (0.18 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/TaskOutputsInternal.java

        /**
         * Calls the corresponding visitor methods for all outputs added via the runtime API.
         */
        void visitRegisteredProperties(PropertyVisitor visitor);
    
        AndSpec<? super TaskInternal> getUpToDateSpec();
    
        void setPreviousOutputFiles(FileCollection previousOutputFiles);
    
        /**
         * Returns the output files and directories recorded during the previous execution of the task.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/changedetection/changes/DefaultTaskExecutionModeResolverTest.groovy

        def task = Stub(TaskInternal)
        def upToDateSpec = Mock(AndSpec)
    
        def setup() {
            _ * task.getInputs() >> inputs
            _ * task.getOutputs() >> outputs
            _ * outputs.getUpToDateSpec() >> upToDateSpec
        }
    
        def "untracked"() {
            when:
            def state = repository.getExecutionMode(task, taskProperties)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top