- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 73 for setDescription (0.1 seconds)
-
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) -
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); } @TaskActionCreated: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 2.6K bytes - Click Count (0) -
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) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java
.desc("<deprecated> Use Maven 2 Legacy Local Repository behaviour.") .deprecated(DeprecatedAttributes.builder() .setSince("3.9.1") .setDescription("UNSUPPORTED: Use of this option will make Maven invocation fail.") .get()) .build()); // Deprecated
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Aug 06 04:56:48 GMT 2025 - 17.8K bytes - Click Count (0) -
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) -
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) -
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 rulesCreated: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 6.8K bytes - Click Count (0) -
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) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/CommonsCliOptions.java
.hasArg() .deprecated(DeprecatedAttributes.builder() .setForRemoval(true) .setSince("4.0.0") .setDescription("Use -is,--install-settings instead.") .get()) .get()); options.addOption(Option.builder(ALTERNATE_GLOBAL_TOOLCHAINS)
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Oct 08 07:36:42 GMT 2025 - 21.3K bytes - Click Count (0) -
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)