Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 194 for commandline (0.26 sec)

  1. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

        void logging(CliRequest cliRequest) {
            // LOG LEVEL
            CommandLine commandLine = cliRequest.commandLine;
            cliRequest.verbose = commandLine.hasOption(CLIManager.VERBOSE) || commandLine.hasOption(CLIManager.DEBUG);
            cliRequest.quiet = !cliRequest.verbose && commandLine.hasOption(CLIManager.QUIET);
            cliRequest.showErrors = cliRequest.verbose || commandLine.hasOption(CLIManager.ERRORS);
    
            // LOG COLOR
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/exec_windows.go

    				continue
    			}
    			commandLine = append(commandLine, c)
    		}
    		commandLine = append(commandLine, '"')
    	} else {
    		if len(args) == 1 {
    			// args[0] is a valid command line representing itself.
    			// No need to allocate a new slice or string for it.
    			return prog
    		}
    		commandLine = []byte(prog)
    	}
    
    	for _, arg := range args[1:] {
    		commandLine = append(commandLine, ' ')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/cli/src/main/java/org/gradle/cli/CommandLineParser.java

                commandLine.addExtraValue(arg);
                return allowMixedOptions ? new AfterFirstSubCommand(commandLine) : new AfterOptions(commandLine);
            }
        }
    
        private class BeforeFirstSubCommand extends OptionAwareParserState {
            private BeforeFirstSubCommand(ParsedCommandLine commandLine) {
                super(commandLine);
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. src/internal/trace/testdata/cmd/gotraceraw/main.go

    func init() {
    	flag.Usage = func() {
    		fmt.Fprintf(flag.CommandLine.Output(), "Usage: %s [mode]\n", os.Args[0])
    		fmt.Fprintf(flag.CommandLine.Output(), "\n")
    		fmt.Fprintf(flag.CommandLine.Output(), "Supported modes:")
    		fmt.Fprintf(flag.CommandLine.Output(), "\n")
    		fmt.Fprintf(flag.CommandLine.Output(), "* text2bytes - converts a text format trace to bytes\n")
    		fmt.Fprintf(flag.CommandLine.Output(), "* bytes2text - converts a byte format trace to text\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:29 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/AntlrSpec.java

        }
    
        public List<String> asArgumentsWithFiles() {
            List<String> commandLine = Lists.newLinkedList(arguments);
            commandLine.add("-o");
            commandLine.add(getOutputDirectory().getAbsolutePath());
            for (File file : getGrammarFiles()) {
                commandLine.add(file.getAbsolutePath());
            }
    
            return commandLine;
        }
    
        public Set<File> getInputDirectories() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. src/internal/trace/testdata/cmd/gotraceeventstats/main.go

    	flag.Usage = func() {
    		fmt.Fprintf(flag.CommandLine.Output(), "Usage: %s [mode]\n", os.Args[0])
    		fmt.Fprintf(flag.CommandLine.Output(), "\n")
    		fmt.Fprintf(flag.CommandLine.Output(), "Accepts a trace at stdin.\n")
    		fmt.Fprintf(flag.CommandLine.Output(), "\n")
    		fmt.Fprintf(flag.CommandLine.Output(), "Supported modes:")
    		fmt.Fprintf(flag.CommandLine.Output(), "\n")
    		fmt.Fprintf(flag.CommandLine.Output(), "* size  - dumps size stats\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:29 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/sources/process/ProcessOutputValueSourceTest.groovy

            given:
            def spec = specFactory.newExecAction()
    
            when:
            createProviderOf(ProcessOutputValueSource.class) {
                it.parameters {
                    it.commandLine = ["echo", "hello"]
                    withDefaultEnvironment(it)
                }
            }.get()
    
            then:
            1 * execOperations.exec(_) >> { Action<? super ExecSpec> action -> action.execute(spec) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/ProcessOutputProviderIntegrationTest.groovy

                .printEnvironmentVariable("TEST_FOO")
                .writeTo(testDirectory, "script")
    
            buildFile """
                def execProvider = providers.exec {
                    ${cmdToExecConfig(*testScript.commandLine, "--some-arg")}
                    environment("TEST_FOO", "fooValue")
                }
    
                execProvider.result.get().assertNormalExitValue()
                println(execProvider.standardOutput.asText.get())
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/kubeadm.go

    	allFlags.VisitAll(func(f *flag.Flag) {
    		switch f.Name {
    		case "v", "add_dir_header", "skip_headers":
    			flag.CommandLine.Var(f.Value, f.Name, f.Usage)
    		}
    	})
    
    	pflag.CommandLine.SetNormalizeFunc(cliflag.WordSepNormalizeFunc)
    	pflag.CommandLine.AddGoFlagSet(flag.CommandLine)
    
    	cmd := cmd.NewKubeadmCommand(os.Stdin, os.Stdout, os.Stderr)
    	return cmd.Execute()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 04:38:21 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-incrementalBuildAdvanced/groovy/buildSrc/src/main/java/org/example/GitClone.java

                getExecOperations().exec(spec -> spec.commandLine("git", "clone", "--no-checkout", remoteUri, destinationDir.getAbsolutePath()));
            }
            getExecOperations().exec(spec -> {
                spec.commandLine("git", "checkout", getCommitId().get());
                spec.setWorkingDir(destinationDir);
            });
            getExecOperations().exec(spec -> {
                spec.commandLine("git", "clean", "-fdx");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top