Search Options

Display Count
Sort
Preferred Language
Advanced Search

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

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

            project.getTasks().withType(Checkstyle.class).configureEach(t -> {
                t.dependsOn(copyCheckstyleConf);
                t.reports(r -> r.getHtml().getRequired().set(false));
            });
    
            return checkstyleTask;
        }
    
        private static URI getBuildSrcCodeSource() {
            try {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jun 17 08:59:22 GMT 2021
    - 5.5K bytes
    - Click Count (0)
  2. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/Parameter.java

        public Parameter() {}
    
        public Parameter(org.apache.maven.api.plugin.descriptor.Parameter p) {
            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());
    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)
  3. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java

                parameter.setType(d.getChild("type").getValue());
    
                String required = d.getChild("required").getValue();
    
                parameter.setRequired(Boolean.parseBoolean(required));
    
                PlexusConfiguration editableConfig = d.getChild("editable");
    
                // we need the null check for pre-build legacy plugins...
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Mar 25 09:45:07 GMT 2025
    - 17.5K bytes
    - Click Count (0)
Back to Top