Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for FileCopyDetailsInternal (0.29 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/FileCopyDetailsInternal.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.file.copy;
    
    import org.gradle.api.file.FileCopyDetails;
    
    public interface FileCopyDetailsInternal extends FileCopyDetails {
    
        boolean isIncludeEmptyDirs();
    
        boolean isDefaultDuplicatesStrategy();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 22 14:38:33 UTC 2024
    - 854 bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/NormalizingCopyActionDecoratorTest.groovy

        }
    
        def visitsDirectoryAncestorsWhichHaveNotBeenVisited() {
            given:
            final FileCopyDetailsInternal dir1 = file("a/b/c", true, true)
            final FileCopyDetailsInternal file1 = file("a/b/c/file", false, true)
            final FileCopyDetailsInternal dir2 = file("a/b/d/e", true, true)
            final FileCopyDetailsInternal file2 = file("a/b/d/e/file", false, true)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 22 14:38:33 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/NormalizingCopyActionDecorator.java

            if (path == null || path.getParent() == null || !visitedDirs.add(path)) {
                return;
            }
            maybeVisit(path.getParent(), includeEmptyDirs, delegateAction, visitedDirs, pendingDirs);
            List<FileCopyDetailsInternal> detailsForPath = pendingDirs.removeAll(path);
    
            FileCopyDetailsInternal dir;
            if (detailsForPath.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 10:41:40 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/DefaultFileCopyDetails.java

    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.util.Map;
    
    public class DefaultFileCopyDetails extends AbstractFileTreeElement implements FileVisitDetails, FileCopyDetailsInternal {
        private final FileVisitDetails fileDetails;
        private final CopySpecResolver specResolver;
        private final FilterChain filterChain;
        private final ObjectFactory objectFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:25:10 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top