Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 102 for TaskInternal (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. subprojects/core/src/main/java/org/gradle/internal/build/ExportedTaskNode.java

     */
    
    package org.gradle.internal.build;
    
    import org.gradle.api.internal.TaskInternal;
    import org.gradle.composite.internal.IncludedBuildTaskResource;
    import org.gradle.execution.plan.Node;
    
    /**
     * A node in a build's work graph that can be referenced by the work graph of another build.
     */
    public interface ExportedTaskNode {
        TaskInternal getTask();
    
        IncludedBuildTaskResource.State getTaskState();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 10 20:09:51 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/TaskOperationMapper.java

                }
            }
    
            public AbstractTaskResult process(AbstractTaskResult taskResult, TaskInternal taskInternal) {
                for (OperationResultPostProcessor factory : processors) {
                    taskResult = factory.process(taskResult, taskInternal);
                }
                return taskResult;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 16:16:16 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/execution/WorkExecutionTracker.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.execution;
    
    import org.gradle.api.internal.TaskInternal;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    import java.util.Optional;
    
    /**
     * Provides access to the work executing on the current thread.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/execution/plan/TaskInAnotherBuild.java

     * limitations under the License.
     */
    
    package org.gradle.execution.plan;
    
    import org.gradle.api.Action;
    import org.gradle.api.artifacts.component.BuildIdentifier;
    import org.gradle.api.internal.TaskInternal;
    import org.gradle.api.internal.project.ProjectInternal;
    import org.gradle.api.internal.tasks.NodeExecutionContext;
    import org.gradle.composite.internal.BuildTreeWorkGraphController;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 06 15:09:14 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top