Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for isDefaultDuplicatesStrategy (0.24 sec)

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

    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/main/java/org/gradle/api/internal/file/copy/DuplicateHandlingCopyActionDecorator.java

                    RelativePath relativePath = details.getRelativePath();
                    if (visitedFiles.containsKey(relativePath)) {
                        if (details.isDefaultDuplicatesStrategy()) {
                            failWithIncorrectDuplicatesStrategySetup(relativePath);
                        }
                        if (strategy == DuplicatesStrategy.EXCLUDE) {
                            return;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 14:30:00 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/DefaultFileCopyDetails.java

        }
    
        @Override
        public DuplicatesStrategy getDuplicatesStrategy() {
            return this.duplicatesStrategy;
        }
    
        @Override
        public boolean isDefaultDuplicatesStrategy() {
            return defaultDuplicatesStrategy;
        }
    
        @Override
        public String getSourceName() {
            return this.fileDetails.getName();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:25:10 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/NormalizingCopyActionDecorator.java

            }
    
            @Override
            public DuplicatesStrategy getDuplicatesStrategy() {
                throw new UnsupportedOperationException();
            }
    
            @Override
            public boolean isDefaultDuplicatesStrategy() {
                throw new UnsupportedOperationException();
            }
    
            @Override
            public String getSourceName() {
                throw new UnsupportedOperationException();
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 10:41:40 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top