Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for eachFile (0.06 seconds)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/Docbook2Xhtml.groovy

                from(getStylesheetDirectory()) {
                    include "**/*.xml"
                    include "*.xsl"
                }
                from(archives.zipTree(getDocbookStylesheets().singleFile)) {
                    eachFile {
                        fcd -> fcd.path = fcd.path.replaceFirst("^docbook", "")
                    }
                }
                into(getTemporaryDir())
            }
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Dec 04 07:24:54 GMT 2024
    - 4.7K bytes
    - Click Count (0)
  2. build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/InternalDistributionBwcSetupPluginFuncTest.groovy

                doLast {
                    configurations.expandedDist.files.each {
                        println "expandedRootPath " + (it.absolutePath - project.rootDir.absolutePath)
                        it.eachFile { nested ->
                            println "nested folder " + (nested.absolutePath - project.rootDir.absolutePath)
                        }
                    }
                }
            }
            """
            when:
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Fri Sep 03 10:22:28 GMT 2021
    - 7.9K bytes
    - Click Count (0)
Back to Top