Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for processRule (3.24 sec)

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

                        }
                    } else {
                        visitedFiles.put(relativePath, details.getDisplayName());
                    }
                }
    
                action.processFile(details);
            }));
        }
    
        private String buildFormattedOutputPath(RelativePath relativePath) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 14:30:00 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/file/archive/ZipCopyActionTest.groovy

            visitor.execute(new CopyActionProcessingStream() {
                void process(CopyActionProcessingStreamAction action) {
                    for (FileCopyDetailsInternal f : files) {
                        action.processFile(f)
                    }
                }
            })
        }
    
        private FileCopyDetailsInternal file(final String path) {
            def mock = Mock(FileCopyDetailsInternal)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 22 14:26:33 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/ZipCopyAction.java

                this.zipOutStr = zipOutStr;
                if (encoding != null) {
                    this.zipOutStr.setEncoding(encoding);
                }
            }
    
            @Override
            public void processFile(FileCopyDetailsInternal details) {
                if (details.isDirectory()) {
                    visitDir(details);
                } else {
                    visitFile(details);
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 08 14:16:53 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/file/archive/TarCopyActionSpec.groovy

            action.execute(new CopyActionProcessingStream() {
                void process(CopyActionProcessingStreamAction action) {
                    for (FileCopyDetailsInternal f : files) {
                        action.processFile(f)
                    }
                }
            })
        }
    
        private FileCopyDetailsInternal file(final String path) {
            final String content = String.format("contents of %s", path)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 22 14:26:33 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top