Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for VisitState (0.2 sec)

  1. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/api/internal/tasks/SnapshotTaskInputsBuildOperationType.java

                 * {@link VisitState#getName()} and {@link VisitState#getPath()} may be called during.
                 */
                void preRoot(VisitState state);
    
                /**
                 * Called before entering a directory.
                 * <p>
                 * {@link VisitState#getName()} and {@link VisitState#getPath()} may be called during.
                 */
                void preDirectory(VisitState state);
    
                /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 17:46:30 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/tasks/SnapshotTaskInputsResultFilePropertyVisitState.java

        }
    
        private static class TaskDirectoryVisitState extends DirectoryVisitState<SnapshotTaskInputsBuildOperationType.Result.VisitState> implements SnapshotTaskInputsBuildOperationType.Result.VisitState {
    
            public TaskDirectoryVisitState(DirectorySnapshot unvisited, SnapshotTaskInputsBuildOperationType.Result.VisitState delegate) {
                super(unvisited, delegate);
            }
    
            @SuppressWarnings("deprecation")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 07 15:16:07 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/execution/FilePropertyVisitor.java

         */
        void preRoot(VisitState state);
    
        /**
         * Called before entering a directory.
         * <p>
         * {@link VisitState#getName()} and {@link VisitState#getPath()} may be called during.
         */
        void preDirectory(VisitState state);
    
        /**
         * Called when visiting a non-directory file.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/tasks/BaseFilePropertyVisitState.java

            }
            return propertySpec;
        }
    
        protected static class DirectoryVisitState<T extends FilePropertyVisitor.VisitState> implements FilePropertyVisitor.VisitState {
            protected final T delegate;
            private final DirectorySnapshot directorySnapshot;
    
            public DirectoryVisitState(DirectorySnapshot unvisited, T delegate) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 07 15:16:07 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/tasks/SnapshotTaskInputsBuildOperationResult.java

            return visitor.getFileProperties();
        }
    
        private static class FilePropertyCollectingVisitor extends BaseFilePropertyCollectingVisitor<VisitState> implements InputFilePropertyVisitor {
    
            @SuppressWarnings("deprecation")
            @Override
            protected Property createProperty(VisitState state) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 07 15:20:39 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/SnapshotTransformInputsBuildOperationResult.java

        }
    
        private static class FilePropertyCollectingVisitor extends BaseFilePropertyCollectingVisitor<FilePropertyVisitor.VisitState> implements FilePropertyVisitor {
    
            @Override
            protected Property createProperty(FilePropertyVisitor.VisitState state) {
                return new Property(HashCode.fromBytes(state.getPropertyHashBytes()).toString(), state.getPropertyAttributes());
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/tasks/FilePropertyVisitState.java

    import org.gradle.operations.execution.FilePropertyVisitor;
    
    import java.util.Map;
    import java.util.Set;
    
    public class FilePropertyVisitState extends BaseFilePropertyVisitState implements FilePropertyVisitor.VisitState {
    
        private final FilePropertyVisitor visitor;
    
        private FilePropertyVisitState(FilePropertyVisitor visitor, Map<String, InputFilePropertySpec> propertySpecsByName) {
            super(propertySpecsByName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 07 15:16:07 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top