Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for TaskInternal (0.17 sec)

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

        private final FileCollectionFactory fileCollectionFactory;
        private AndSpec<TaskInternal> upToDateSpec = AndSpec.empty();
        private boolean storeInCache = true;
        private final List<SelfDescribingSpec<TaskInternal>> cacheIfSpecs = new LinkedList<>();
        private final List<SelfDescribingSpec<TaskInternal>> doNotCacheIfSpecs = new LinkedList<>();
        private FileCollection previousOutputFiles;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 04 09:46:14 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/build/DefaultBuildWorkGraphController.java

        }
    
        @Nullable
        private TaskInternal findTaskNode(String taskPath) {
            for (Task task : taskNodeFactory.getTasks()) {
                if (task.getPath().equals(taskPath)) {
                    return (TaskInternal) task;
                }
            }
            return null;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 31 05:15:28 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/TaskNodeCodec.kt

            }
        }
    
        private
        suspend fun ReadContext.readUpToDateSpec(task: TaskInternal) {
            if (readBoolean()) {
                task.outputs.upToDateWhen(readNonNull<Spec<Task>>())
            }
        }
    
        private
        fun WriteContext.writeReasonNotToTrackState(task: TaskInternal) {
            writeNullableString(task.reasonNotToTrackState.orElse(null))
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/plan/LocalTaskNode.java

     * limitations under the License.
     */
    
    package org.gradle.execution.plan;
    
    import org.gradle.api.file.FileCollection;
    import org.gradle.api.internal.TaskInternal;
    import org.gradle.api.internal.file.FileCollectionFactory;
    import org.gradle.api.internal.project.ProjectInternal;
    import org.gradle.api.internal.tasks.properties.DefaultTaskProperties;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 23:29:30 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskInputs.java

            private final String taskDisplayName;
            private final String type;
            private final TaskInternal task;
            private final PropertyWalker propertyWalker;
            private final FileCollectionFactory fileCollectionFactory;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/tasks/execution/TaskExecution.java

        private static class PreviousOutputFileCollection extends LazilyInitializedFileCollection {
            private final TaskInternal task;
            private final FileCollectionFactory fileCollectionFactory;
            private final ImmutableSortedMap<String, FileSystemSnapshot> previousOutputs;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  7. subprojects/composite-builds/src/test/groovy/org/gradle/composite/internal/DefaultIncludedBuildTaskGraphParallelTest.groovy

            }
            return new BuildServices(services, identifier, gradle)
        }
    
        TaskInternal task(BuildServices services, Node dependsOn) {
            def projectState = Stub(ProjectState)
            def project = Stub(ProjectInternal)
            def task = Stub(TaskInternal)
            def dependencies = Stub(TaskDependency)
            _ * dependencies.getDependencies(_) >> [dependsOn].toSet()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanTest.groovy

        }
    
        def "finalizer groups that finalize each other do not form a cycle"() {
            given:
            TaskInternal finalizerA = createTask("finalizerA")
            TaskInternal finalizerB = createTask("finalizerB")
            TaskInternal finalizerDepA = task("finalizerDepA", finalizedBy: [finalizerB])
            TaskInternal finalizerDepB = task("finalizerDepB", finalizedBy: [finalizerA])
            relationships(finalizerA, dependsOn: [finalizerDepA])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/project/taskfactory/AnnotationProcessingTaskFactoryTest.groovy

            assert createdTask.is(task)
            return task
        }
    
        private static void validateException(TaskInternal task, WorkValidationException exception, String... causes) {
            validateException(task, true, exception, causes)
        }
    
        private static void validateException(TaskInternal task, boolean ignoreType, WorkValidationException exception, String... causes) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/DefaultTaskProperties.java

    package org.gradle.api.internal.tasks.properties;
    
    import com.google.common.collect.ImmutableSortedSet;
    import org.gradle.api.NonNullApi;
    import org.gradle.api.file.FileCollection;
    import org.gradle.api.internal.TaskInternal;
    import org.gradle.api.internal.file.FileCollectionFactory;
    import org.gradle.api.internal.tasks.TaskDependencyContainer;
    import org.gradle.api.internal.tasks.TaskPropertyUtils;
    import org.gradle.api.services.BuildService;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 23:29:29 UTC 2023
    - 11.4K bytes
    - Viewed (0)
Back to top