Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for executeTask (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. build-tools-internal/src/main/groovy/org/elasticsearch/gradle/internal/AntTask.groovy

        @Inject
        protected FileSystemOperations getFileSystemOperations() {
            throw new UnsupportedOperationException();
        }
    
        @TaskAction
        final void executeTask() {
            AntBuilder ant = new AntBuilder()
    
            // remove existing loggers, we add our own
            List<BuildLogger> toRemove = new ArrayList<>();
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 3.4K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/ValidateChangelogEntryTask.java

            this.changelogs = objectFactory.fileCollection();
            this.projectLayout = projectLayout;
        }
    
        @TaskAction
        public void executeTask() {
            final URI rootDir = projectLayout.getProjectDirectory().getAsFile().toURI();
            final Map<String, ChangelogEntry> changelogs = this.changelogs.getFiles()
                .stream()
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 01 14:45:41 GMT 2021
    - 3.3K bytes
    - Click Count (0)
  3. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/PruneChangelogsTask.java

        public void setDryRun(boolean dryRun) {
            this.dryRun = dryRun;
        }
    
        @TaskAction
        public void executeTask() {
            findAndDeleteFiles(
                this.gitWrapper,
                files -> files.stream().filter(each -> each.delete() == false).collect(Collectors.toSet()),
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Fri Sep 24 10:57:02 GMT 2021
    - 6.6K bytes
    - Click Count (0)
Back to Top