- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 1,550 for options (0.07 sec)
-
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/Options.java
*/ @Experimental public interface Options { /** Constant indicating that the options source is the command-line interface. */ String SOURCE_CLI = "CLI"; /** * Returns a simple designator of the options source, such as "cli", "maven.conf", etc. * * @return a string representing the source of the options */ @Nonnull String source(); /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Oct 22 14:53:58 UTC 2024 - 6.3K bytes - Viewed (0) -
cni/pkg/nodeagent/options.go
John Howard <******@****.***> 1723822427 -0700
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Aug 16 15:33:47 UTC 2024 - 2.1K bytes - Viewed (0) -
cmd/object-api-options.go
// // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Aug 21 21:13:59 UTC 2024 - 14.4K bytes - Viewed (0) -
src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js
this.rightCalendar = {}; //custom options from user if (typeof options !== 'object' || options === null) options = {}; //allow setting options with data attributes //data-api options will be overwritten with custom javascript options options = $.extend(this.element.data(), options); //html template for the picker UI
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 26 01:49:09 UTC 2024 - 64.8K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LayeredOptions.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.5K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/CommonsCliMavenOptions.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 16K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/CommonsCliOptions.java
options.addOption(Option.builder(HELP) .longOpt("help") .desc("Display help information") .build()); options.addOption(Option.builder(USER_PROPERTY) .numberOfArgs(2) .valueSeparator('=') .desc("Define a user property") .build());
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 18.5K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java
public static final String YJP = "yjp"; protected Options options; protected final Set<Option> usedDeprecatedOptions = new LinkedHashSet<>(); @SuppressWarnings("checkstyle:MethodLength") public CLIManager() { options = new Options(); options.addOption(Option.builder(Character.toString(HELP)) .longOpt("help")
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 17.6K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/DefaultMavenInvoker.java
} MavenOptions options = context.invokerRequest.options(); request.setNoSnapshotUpdates(options.suppressSnapshotUpdates().orElse(false)); request.setGoals(options.goals().orElse(List.of())); request.setReactorFailureBehavior(determineReactorFailureBehaviour(context)); request.setRecursive(!options.nonRecursive().orElse(!request.isRecursive()));
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 29.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/SuggestCreator.java
public static void main(final String[] args) { final Options options = new Options(); final CmdLineParser parser = new CmdLineParser(options); try { parser.parseArgument(args); } catch (final CmdLineException e) { System.err.println(e.getMessage()); System.err.println("java " + SuggestCreator.class.getCanonicalName() + " [options...] arguments..."); parser.printUsage(System.err);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 10K bytes - Viewed (0)