- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 654 for command (0.08 sec)
-
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/ParserRequest.java
String MVNENC_NAME = "Maven Password Encrypting Tool"; /** * Returns the Maven command to be executed. This command is used in some invokers (ie forked) but also to * present help to user. * * @return the command string */ @Nonnull String command(); /** * Returns the Maven command name (ie "Maven"). This string is used in some invokers to complete error messages. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 04 12:23:10 UTC 2024 - 13.7K bytes - Viewed (0) -
istioctl/pkg/dashboard/dashboard.go
} func Dashboard(cliContext cli.Context) *cobra.Command { dashboardCmd := &cobra.Command{ Use: "dashboard", Aliases: []string{"dash", "d"}, Short: "Access to Istio web UIs", Args: func(cmd *cobra.Command, args []string) error { if len(args) != 0 { return fmt.Errorf("unknown dashboard %q", args[0]) } return nil }, RunE: func(cmd *cobra.Command, args []string) error { cmd.HelpFunc()(cmd, args)
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Apr 15 01:29:35 UTC 2024 - 20.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractor.java
if (StringUtil.isBlank(command)) { throw new CrawlerSystemException("command is empty."); } final Map<String, String> params = new HashMap<>(); params.put("$INPUT_FILE", inputFile.getAbsolutePath()); params.put("$OUTPUT_FILE", outputFile.getAbsolutePath()); final List<String> cmdList = parseCommand(command, params); if (logger.isInfoEnabled()) {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 13.6K bytes - Viewed (0) -
istioctl/pkg/waypoint/waypoint.go
# Show the status of the waypoint in a specific namespace istioctl waypoint status --namespace default`, Args: func(cmd *cobra.Command, args []string) error { if len(args) != 0 { return fmt.Errorf("unknown subcommand %q", args[0]) } return nil }, RunE: func(cmd *cobra.Command, args []string) error { kubeClient, err := ctx.CLIClient() if err != nil {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 16:05:45 UTC 2024 - 19.6K bytes - Viewed (0) -
scripts/docs.py
p.map(build_lang, langs) @app.command() def update_languages() -> None: """ Update the mkdocs.yml file Languages section including all the available languages. """ update_config() @app.command() def serve() -> None: """ A quick server to preview a built site with translations. For development, prefer the command live (or just mkdocs serve).
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Oct 08 11:01:17 UTC 2024 - 13.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java
protected AndXServerMessageBlock ( Configuration config, byte command, String name, ServerMessageBlock andx ) { super(config, command, name); this.andx = andx; if ( andx != null ) { this.andxCommand = (byte) andx.getCommand(); } } protected AndXServerMessageBlock ( Configuration config, byte command ) { this(config, command, null); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Nov 28 10:56:27 UTC 2022 - 14.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/AndXServerMessageBlock.java
AndXServerMessageBlock() { } AndXServerMessageBlock( ServerMessageBlock andx ) { if (andx != null) { this.andx = andx; andxCommand = andx.command; } } int getBatchLimit( byte command ) { /* the default limit is 0 batched messages before this * one, meaning this message cannot be batched. */ return 0; } /*
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 11.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java
* @return the async */ public boolean isAsync () { return this.async; } /** * @param command * the command to set */ @Override public final void setCommand ( int command ) { this.command = command; } /** * @return the treeId */ public final int getTreeId () { return this.treeId;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Sep 30 10:47:31 UTC 2018 - 19.9K bytes - Viewed (0) -
docs/en/docs/contributing.md
Then you can serve that with the command `serve`: <div class="termy"> ```console // Use the command "serve" after running "build-all" $ python ./scripts/docs.py serve Warning: this is a very simple server. For development, use mkdocs serve instead. This is here only to preview a site with translations already built. Make sure you run the build-all command first. Serving at: http://127.0.0.1:8008 ```
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Aug 25 02:44:06 UTC 2024 - 12.7K bytes - Viewed (0) -
ci/official/utilities/extract_resultstore_links.py
i = 1 for url, invocation_results in result_store_dict.items(): line_str = f'Invocation #{i} ({invocation_results["status"]}):\n' command = invocation_results.get('command') if command: line_str += command else: line_str += ('Couldn\'t parse the bazel command, ' 'check inside the build log instead') line_str += f'\n{url}\n' print(line_str) i += 1
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Nov 08 17:50:27 UTC 2023 - 10.9K bytes - Viewed (0)