Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for GetCommandLine (0.18 sec)

  1. subprojects/core/src/testFixtures/groovy/org/gradle/process/ShellScript.groovy

         * The list also contains an absolute path to the script (which may contain spaces).
         *
         * @return the list of command line elements to start this script.
         */
        abstract List<String> getCommandLine();
    
        /**
         * Returns a command line elements that can be used to start this script.
         * The resulting list can be used as an argument for the {@link ProcessBuilder} or Groovy's {@code execute} method.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/sources/process/ExecSpecFactory.java

    import org.gradle.process.JavaExecSpec;
    
    /**
     * The factory to build appropriate ExecSpec and JavaExecSpec instances. The returned
     * instances, especially JavaExecSpec, must conform to the {@link BaseExecSpec#getCommandLine()} contract.
     *
     * These instances will not be exposed to the user code directly, so there is no need of decoration.
     */
    @ServiceScope(Scope.Build.class)
    public interface ExecSpecFactory {
        ExecSpec newExecSpec();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java

            assertThat(request.getUserProperties().getProperty("valTopDirectory"), is("myTopDirectory/pom.xml"));
            assertThat(request.getCommandLine().getOptionValue('f'), is("myRootDirectory/my-child"));
            assertThat(request.getCommandLine().getArgs(), equalTo(new String[] {"prefix:3.0.0:bar", "validate"}));
        }
    
        @ParameterizedTest
        @MethodSource("activateBatchModeArguments")
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  4. src/os/exec_windows.go

    	if e != nil {
    		return nil, NewSyscallError("OpenProcess", e)
    	}
    	return newHandleProcess(pid, uintptr(h)), nil
    }
    
    func init() {
    	cmd := windows.UTF16PtrToString(syscall.GetCommandLine())
    	if len(cmd) == 0 {
    		arg0, _ := Executable()
    		Args = []string{arg0}
    	} else {
    		Args = commandLineToArgv(cmd)
    	}
    }
    
    // appendBSBytes appends n '\\' bytes to b and returns the resulting slice.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. testing/architecture-test/src/changes/archunit-store/provider-task-properties.txt

    Method <org.gradle.api.tasks.AbstractExecTask.getArgumentProviders()> does not have raw return type assignable to org.gradle.api.provider.Provider in (AbstractExecTask.java:0)
    Method <org.gradle.api.tasks.AbstractExecTask.getCommandLine()> does not have raw return type assignable to org.gradle.api.provider.Property in (AbstractExecTask.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. src/syscall/zsyscall_windows.go

    	return
    }
    
    func FreeLibrary(handle Handle) (err error) {
    	r1, _, e1 := Syscall(procFreeLibrary.Addr(), 1, uintptr(handle), 0, 0)
    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func GetCommandLine() (cmd *uint16) {
    	r0, _, _ := Syscall(procGetCommandLineW.Addr(), 0, 0, 0, 0)
    	cmd = (*uint16)(unsafe.Pointer(r0))
    	return
    }
    
    func GetComputerName(buf *uint16, n *uint32) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (0)
  7. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            return request;
        }
    
        private void disableInteractiveModeIfNeeded(final CliRequest cliRequest, final MavenExecutionRequest request) {
            CommandLine commandLine = cliRequest.getCommandLine();
            if (commandLine.hasOption(FORCE_INTERACTIVE)) {
                return;
            }
    
            if (commandLine.hasOption(BATCH_MODE) || commandLine.hasOption(NON_INTERACTIVE)) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  8. src/syscall/syscall_windows.go

    //sys	SetFileAttributes(name *uint16, attrs uint32) (err error) = kernel32.SetFileAttributesW
    //sys	GetFileAttributesEx(name *uint16, level uint32, info *byte) (err error) = kernel32.GetFileAttributesExW
    //sys	GetCommandLine() (cmd *uint16) = kernel32.GetCommandLineW
    //sys	CommandLineToArgv(cmd *uint16, argc *int32) (argv *[8192]*[8192]uint16, err error) [failretval==nil] = shell32.CommandLineToArgvW
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  9. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    String getExecutable(); public void addArguments(String[]); public void addEnvironment(String, String); public void addSystemEnvironment() throws Exception; public String[] getEnvironments(); public String[] getCurrentEnvironmen(); public String[] getCommandline(); public String[] getShellCommandline(); public String[] getArguments(); public String toString(); public static String quoteArgument(String) throws CommandLineException; public static String toString(String[]); public static String[] transl...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	SetFileAttributes(name *uint16, attrs uint32) (err error) = kernel32.SetFileAttributesW
    //sys	GetFileAttributesEx(name *uint16, level uint32, info *byte) (err error) = kernel32.GetFileAttributesExW
    //sys	GetCommandLine() (cmd *uint16) = kernel32.GetCommandLineW
    //sys	commandLineToArgv(cmd *uint16, argc *int32) (argv **uint16, err error) [failretval==nil] = shell32.CommandLineToArgvW
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
Back to top