Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 113 for TaskInternal (0.16 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/tasks/execution/DefaultTaskCacheabilityResolver.java

        }
    
        @Override
        public Optional<CachingDisabledReason> shouldDisableCaching(
            TaskInternal task,
            TaskProperties taskProperties,
            Collection<SelfDescribingSpec<TaskInternal>> cacheIfSpecs,
            Collection<SelfDescribingSpec<TaskInternal>> doNotCacheIfSpecs,
            @Nullable OverlappingOutputs overlappingOutputs
        ) {
            if (cacheIfSpecs.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 15 07:20:24 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/execution/plan/TaskNodeFactoryTest.groovy

            factory = new TaskNodeFactory(gradle, Stub(BuildTreeWorkGraphController), Stub(NodeValidator), new TestBuildOperationRunner(), Stub(ExecutionNodeAccessHierarchies))
        }
    
        private TaskInternal task(String name) {
            Mock(TaskInternal) {
                getName() >> name
                compareTo(_) >> { args -> name.compareTo(args[0].name) }
                getProject() >> project
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. subprojects/core/src/testFixtures/groovy/org/gradle/test/fixtures/AbstractProjectBuilderSpec.groovy

            def taskExecutionContext = new DefaultTaskExecutionContext(
                new LocalTaskNode(task as TaskInternal, workValidationContext, { null }),
                DefaultTaskProperties.resolve(executionServices.get(PropertyWalker), executionServices.get(FileCollectionFactory), task as TaskInternal),
                workValidationContext,
                { context -> }
            )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 10:13:50 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/tasks/TaskMutator.java

    import groovy.util.ObservableList;
    import org.gradle.api.internal.TaskInternal;
    
    import java.beans.PropertyChangeEvent;
    import java.util.concurrent.Callable;
    
    import static org.gradle.internal.UncheckedException.uncheckedCall;
    
    public class TaskMutator {
        private final TaskInternal task;
    
        public TaskMutator(TaskInternal task) {
            this.task = task;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 12:20:43 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/changedetection/TaskExecutionModeResolver.java

     * limitations under the License.
     */
    package org.gradle.api.internal.changedetection;
    
    import org.gradle.api.internal.TaskInternal;
    import org.gradle.api.internal.tasks.properties.TaskProperties;
    
    public interface TaskExecutionModeResolver {
        TaskExecutionMode getExecutionMode(TaskInternal task, TaskProperties properties);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 16 14:36:45 UTC 2019
    - 909 bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/execution/ResolveTaskExecutionModeExecuterTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.execution
    
    import org.gradle.api.internal.TaskInternal
    import org.gradle.api.internal.changedetection.TaskExecutionModeResolver
    import org.gradle.api.internal.changedetection.changes.DefaultTaskExecutionMode
    import org.gradle.api.internal.tasks.TaskExecuter
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 03 11:19:27 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. subprojects/core/src/testFixtures/groovy/org/gradle/api/tasks/TaskPropertyTestUtils.groovy

     * limitations under the License.
     */
    
    package org.gradle.api.tasks
    
    import org.gradle.api.DefaultTask
    import org.gradle.api.file.FileCollection
    import org.gradle.api.internal.TaskInternal
    import org.gradle.api.internal.file.CompositeFileCollection
    import org.gradle.api.internal.file.FileCollectionFactory
    import org.gradle.api.internal.file.FileCollectionInternal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 15 21:15:57 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/ToolingModelBuilderSupport.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.plugins.ide.internal.tooling;
    
    import org.gradle.api.Task;
    import org.gradle.api.internal.TaskInternal;
    import org.gradle.api.internal.tasks.PublicTaskSpecification;
    import org.gradle.plugins.ide.internal.tooling.model.LaunchableGradleTask;
    import org.gradle.tooling.internal.gradle.DefaultProjectIdentifier;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 13 08:26:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/TaskOutputsInternal.java

        AndSpec<? super TaskInternal> getUpToDateSpec();
    
        void setPreviousOutputFiles(FileCollection previousOutputFiles);
    
        /**
         * Returns the output files and directories recorded during the previous execution of the task.
         */
        Set<File> getPreviousOutputFiles();
    
        List<SelfDescribingSpec<TaskInternal>> getCacheIfSpecs();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/service/scopes/ProjectBackedPropertyHost.java

            if (!project.getState().hasCompleted()) {
                return "configuration of " + project.getDisplayName() + " has not completed yet";
            } else if (producer != null) {
                TaskInternal producerTask = (TaskInternal) producer.getTaskThatOwnsThisObject();
                if (producerTask != null && producerTask.getState().isConfigurable()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 09 21:55:13 UTC 2020
    - 1.8K bytes
    - Viewed (0)
Back to top