Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 19 for FileCollection (0.51 seconds)

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

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/CopyRestApiTask.java

        private File sourceResourceDir;
        private boolean skipHasRestTestCheck;
        private FileCollection config;
        private FileCollection additionalConfig;
        private Function<FileCollection, FileTree> configToFileTree = FileCollection::getAsFileTree;
        private Function<FileCollection, FileTree> additionalConfigToFileTree = FileCollection::getAsFileTree;
    
        private final PatternFilterable patternSet;
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 22 07:24:59 GMT 2021
    - 7.4K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/LoggerUsageTask.java

            });
        }
    
        @Classpath
        public FileCollection getClasspath() {
            return classpath;
        }
    
        public void setClasspath(FileCollection classpath) {
            this.classpath = classpath;
        }
    
        @InputFiles
        @PathSensitive(PathSensitivity.RELATIVE)
        @SkipWhenEmpty
        public FileCollection getClassDirectories() {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jun 17 08:59:22 GMT 2021
    - 2.8K bytes
    - Click Count (0)
  3. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/ValidateJsonAgainstSchemaTask.java

    public class ValidateJsonAgainstSchemaTask extends DefaultTask {
        private File jsonSchema;
        private File report;
        private FileCollection inputFiles;
    
        @Incremental
        @InputFiles
        public FileCollection getInputFiles() {
            return inputFiles;
        }
    
        public void setInputFiles(FileCollection inputFiles) {
            this.inputFiles = inputFiles;
        }
    
        @InputFile
        public File getJsonSchema() {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Jul 28 11:09:58 GMT 2021
    - 5.4K bytes
    - Click Count (0)
  4. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/ValidateJsonNoKeywordsTask.java

        private File jsonKeywords;
        private File report;
        private FileCollection inputFiles;
    
        @Incremental
        @InputFiles
        public FileCollection getInputFiles() {
            return inputFiles;
        }
    
        public void setInputFiles(FileCollection inputFiles) {
            this.inputFiles = inputFiles;
        }
    
        @InputFile
        public File getJsonKeywords() {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 7.6K bytes
    - Click Count (0)
  5. build-logic-settings/architecture-docs/src/main/kotlin/gradlebuild/GeneratePackageInfoDataTask.kt

        companion object {
            val packageLineRegex = Regex("""package\s*([^;\s]+)\s*;""")
    
            fun findPackageInfoFiles(objects: ObjectFactory, projectBaseDirs: Provider<List<File>>): FileCollection {
                return objects.fileCollection().from(projectBaseDirs.map {
                    it.flatMap { projectDir -> listOf(File(projectDir, "src/main/java"), File(projectDir, "src/main/groovy")) }
                }).asFileTree.matching {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jan 30 15:37:56 GMT 2026
    - 2.7K bytes
    - Click Count (0)
  6. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/ValidateChangelogEntryTask.java

                    );
                }
            });
        }
    
        @InputFiles
        public FileCollection getChangelogs() {
            return changelogs;
        }
    
        public void setChangelogs(FileCollection files) {
            this.changelogs.setFrom(files);
        }
    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)
  7. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/PruneChangelogsTask.java

        private FileCollection changelogs;
        private final GitWrapper gitWrapper;
        private final Path rootDir;
    
        private boolean dryRun;
    
        @Inject
        public PruneChangelogsTask(Project project, ObjectFactory objectFactory, ExecOperations execOperations) {
            changelogs = objectFactory.fileCollection();
            gitWrapper = new GitWrapper(execOperations);
    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)
  8. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/ElasticsearchTestBasePlugin.java

                        // Add the shadow JAR artifact itself
                        FileCollection shadowJar = project.files(project.getTasks().named("shadowJar"));
                        FileCollection testRuntime = sourceSets.getByName(SourceSet.TEST_SOURCE_SET_NAME).getRuntimeClasspath();
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Aug 24 22:14:49 GMT 2021
    - 10.4K bytes
    - Click Count (0)
  9. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/NoticeTask.java

     * Side Public License, v 1.
     */
    
    package org.elasticsearch.gradle.internal;
    
    import org.codehaus.groovy.runtime.StringGroovyMethods;
    import org.gradle.api.DefaultTask;
    import org.gradle.api.file.FileCollection;
    import org.gradle.api.file.FileTree;
    import org.gradle.api.file.SourceDirectorySet;
    import org.gradle.api.tasks.InputFile;
    import org.gradle.api.tasks.InputFiles;
    import org.gradle.api.tasks.Optional;
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 6.9K bytes
    - Click Count (0)
  10. build-conventions/src/main/java/org/elasticsearch/gradle/internal/conventions/precommit/LicenseHeadersTask.java

         * constructor can write to it.
         */
        @InputFiles
        @SkipWhenEmpty
        @PathSensitive(PathSensitivity.RELATIVE)
        public List<FileCollection> getJavaFiles() {
            return getSourceFolders().get();
        }
    
        @Internal
        public abstract ListProperty<FileCollection> getSourceFolders();
    
        public File getReportFile() {
            return reportFile;
        }
    
        public void setReportFile(File reportFile) {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Sep 09 18:53:35 GMT 2021
    - 10.6K bytes
    - Click Count (0)
Back to Top