Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 31 for setDescription (0.09 seconds)

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/LoggerUsageTask.java

        private FileCollection classpath;
        private ExecOperations execOperations;
    
        @Inject
        public LoggerUsageTask(ExecOperations execOperations) {
            this.execOperations = execOperations;
            setDescription("Runs LoggerUsageCheck on output directories of all source sets");
        }
    
        @TaskAction
        public void runLoggerUsageTask() {
            LoggedExec.javaexec(execOperations, spec -> {
    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)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/UpdateShasTask.java

        /** The parent dependency licenses task to use configuration from */
        private TaskProvider<DependencyLicensesTask> parentTask;
    
        public UpdateShasTask() {
            setDescription("Updates the sha files for the dependencyLicenses check");
            setOnlyIf(element -> parentTask.get().getLicensesDir() != null);
        }
    
        @TaskAction
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 2.6K bytes
    - Click Count (0)
  3. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/Parameter.java

            this.setAlias(p.getAlias());
            this.setName(p.getName());
            this.setRequired(p.isRequired());
            this.setEditable(p.isEditable());
            this.setDescription(p.getDescription());
            this.setExpression(p.getExpression());
            this.setDeprecated(p.getDeprecated());
            this.setDefaultValue(p.getDefaultValue());
            this.setType(p.getType());
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 5.1K bytes
    - Click Count (0)
  4. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/ConcatFilesTask.java

    import org.gradle.api.tasks.TaskAction;
    
    /**
     * Concatenates a list of files into one and removes duplicate lines.
     */
    public class ConcatFilesTask extends DefaultTask {
    
        public ConcatFilesTask() {
            setDescription("Concat a list of files into one.");
        }
    
        /** List of files to concatenate */
        private FileTree files;
    
        /** line to add at the top of the target file */
        private String headerLine;
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 2.8K bytes
    - Click Count (0)
  5. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/NoticeTask.java

        private FileTree sources;
        /**
         * Directories to include notices from
         */
        private List<File> licensesDirs = new ArrayList<File>();
    
        public NoticeTask() {
            setDescription("Create a notice file from dependencies");
            // Default licenses directory is ${projectDir}/licenses (if it exists)
            File licensesDir = new File(getProject().getProjectDir(), "licenses");
    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)
  6. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/ForbiddenPatternsTask.java

        private final ProjectLayout projectLayout;
    
        @Inject
        public ForbiddenPatternsTask(ProjectLayout projectLayout) {
            this.projectLayout = projectLayout;
            setDescription("Checks source files for invalid patterns like nocommits or tabs");
            getInputs().property("excludes", filesFilter.getExcludes());
            getInputs().property("rules", patterns);
    
            // add mandatory rules
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 6.8K bytes
    - Click Count (0)
  7. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/FilePermissionsTask.java

        @Inject
        public FilePermissionsTask(ProjectLayout projectLayout) {
            this.projectLayout = projectLayout;
            setDescription("Checks java source files for correct file permissions");
        }
    
        private static boolean isExecutableFile(File file) {
            try {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 3.9K bytes
    - Click Count (0)
  8. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/DependenciesInfoTask.java

        /**
         * We subtract compile-only dependencies.
         */
        @InputFiles
        private Configuration compileOnlyConfiguration;
    
        public DependenciesInfoTask() {
            setDescription("Create a CSV file with dependencies information.");
        }
    
        @TaskAction
        public void generateDependenciesInfo() throws IOException {
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 8.6K bytes
    - Click Count (0)
  9. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/ReleaseToolsPlugin.java

                .register("validateChangelogsAgainstSchema", ValidateYamlAgainstSchemaTask.class, task -> {
                    task.setGroup("Documentation");
                    task.setDescription("Validate that the changelog YAML files comply with the changelog schema");
                    task.setInputFiles(yamlFiles);
                    task.setJsonSchema(new File(project.getRootDir(), RESOURCES + "changelog-schema.json"));
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Fri Sep 24 10:57:02 GMT 2021
    - 4.8K bytes
    - Click Count (0)
  10. build-conventions/src/main/java/org/elasticsearch/gradle/internal/conventions/PublishPlugin.java

            var name = project.getName();
            var description = providerFactory.provider(() -> project.getDescription() != null ? project.getDescription() : "");
            mavenPublications.configureEach(p -> p.getPom().withXml(xml -> {
                var root = xml.asNode();
                root.appendNode("name", name);
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Aug 11 07:30:51 GMT 2021
    - 8.9K bytes
    - Click Count (0)
Back to Top