Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for processRule (0.13 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/TarCopyAction.java

            private final TarArchiveOutputStream tarOutStr;
    
            public StreamAction(TarArchiveOutputStream tarOutStr) {
                this.tarOutStr = tarOutStr;
            }
    
            @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
    - 5.7K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/NormalizingCopyActionDecorator.java

                        }
                    } else {
                        maybeVisit(details.getRelativePath().getParent(), details.isIncludeEmptyDirs(), action, visitedDirs, pendingDirs);
                        action.processFile(details);
                    }
                });
    
                for (RelativePath path : new LinkedHashSet<>(pendingDirs.keySet())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 10:41:40 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. src/cmd/gofmt/gofmt.go

    func (r *reporter) ExitCode() int {
    	return r.getState().exitCode
    }
    
    // If info == nil, we are formatting stdin instead of a file.
    // If in == nil, the source is the contents of the file with the given filename.
    func processFile(filename string, info fs.FileInfo, in io.Reader, r *reporter) error {
    	src, err := readFile(filename, info, in)
    	if err != nil {
    		return err
    	}
    
    	fileSet := token.NewFileSet()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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