Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/AbstractTaskInputsAndOutputsTest.groovy

        def walker = new DefaultPropertyWalker(typeMetadataStore, new TestImplementationResolver(), propertyHandlers)
    
        TaskInternal task
        TaskInputsInternal inputs
        TaskOutputsInternal outputs
    
        @SuppressWarnings('ConfigurationAvoidance')
        def setup() {
            task = project.tasks.create("test") as TaskInternal
            inputs = task.inputs
            outputs = task.outputs
        }
    
        TestFile file(Object path) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskRequiredServices.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks;
    
    import com.google.common.collect.ImmutableSet;
    import org.gradle.api.internal.TaskInternal;
    import org.gradle.api.internal.tasks.properties.GetServiceReferencesVisitor;
    import org.gradle.api.provider.Provider;
    import org.gradle.api.services.BuildService;
    import org.gradle.api.services.internal.BuildServiceProvider;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 23:29:30 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/execution/plan/TaskDependencyResolver.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.execution.plan;
    
    import org.gradle.api.NonNullApi;
    import org.gradle.api.internal.TaskInternal;
    import org.gradle.api.internal.tasks.CachingTaskDependencyResolveContext;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    import javax.annotation.Nullable;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/composite/internal/IncludedBuildTaskResource.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.composite.internal;
    
    import org.gradle.api.internal.TaskInternal;
    import org.gradle.execution.plan.Node;
    
    import java.util.function.Consumer;
    
    /**
     * A resource produced by a task in an included build.
     */
    public interface IncludedBuildTaskResource {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 12 20:10:34 UTC 2022
    - 1.7K bytes
    - Viewed (0)
Back to top