Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for registerCommand (0.07 seconds)

  1. cmd/main.go

    	commands := []cli.Command{}
    
    	// Collection of minio commands currently supported in a trie tree.
    	commandsTree := trie.NewTrie()
    
    	// registerCommand registers a cli command.
    	registerCommand := func(command cli.Command) {
    		// avoid registering commands which are not being built (via
    		// go:build tags)
    		if command.Name == "" {
    			return
    		}
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue Jul 30 22:59:48 GMT 2024
    - 6.5K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/vagrant/VagrantMachine.java

                    spec.setArgs("--force");
                });
            }
    
            // register box to be shutdown if gradle dies
            reaper = reaperServiceProvider.get();
            reaper.registerCommand(extension.getBox(), "vagrant", "halt", "-f", extension.getBox());
    
            // We lock the provider to virtualbox because the Vagrantfile specifies lots of boxes that only work
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 7.5K bytes
    - Click Count (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnsh/builtin/BuiltinShellCommandRegistryFactory.java

                commandExecute.put("mvnenc", new CommandMethods(this::mvnenc, this::mvnencCompleter));
                commandExecute.put("mvnup", new CommandMethods(this::mvnup, this::mvnupCompleter));
                registerCommands(commandExecute);
            }
    
            private Consumer<LookupContext> contextCopier() {
                return result -> {
                    result.logger = shellContext.logger;
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Sat Jun 07 06:22:47 GMT 2025
    - 12.3K bytes
    - Click Count (0)
Back to Top