Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 29 for GetCommandLine (0.68 sec)

  1. platforms/core-runtime/process-services/src/main/java/org/gradle/process/BaseExecSpec.java

        /**
         * Returns the full command line, including the executable plus its arguments.
         *
         * @return The full command line, including the executable plus its arguments
         */
        List<String> getCommandLine();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. subprojects/core/src/test/groovy/org/gradle/process/internal/JavaExecHandleBuilderTest.groovy

            when:
            List commandLine = builder.getCommandLine()
    
            then:
            String executable = Jvm.current().getJavaExecutable().getAbsolutePath()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 15 17:11:21 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/JavaExec.java

            return javaExecSpec.isIgnoreExitValue();
        }
    
        /**
         * {@inheritDoc}
         */
        @Override
        @Internal
        public List<String> getCommandLine() {
            return javaExecSpec.getCommandLine();
        }
    
        /**
         * {@inheritDoc}
         */
        @Override
        public List<CommandLineArgumentProvider> getJvmArgumentProviders() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  6. maven-embedder/src/main/java/org/apache/maven/cli/configuration/SettingsXmlConfigurationProcessor.java

            this.settingsDecrypter = settingsDecrypter;
        }
    
        @Override
        public void process(CliRequest cliRequest) throws Exception {
            CommandLine commandLine = cliRequest.getCommandLine();
            String workingDirectory = cliRequest.getWorkingDirectory();
            MavenExecutionRequest request = cliRequest.getRequest();
    
            File userSettingsFile;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 19 15:04:04 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/exec_windows.go

    	}
    	return string(commandLine)
    }
    
    // DecomposeCommandLine breaks apart its argument command line into unescaped parts using CommandLineToArgv,
    // as gathered from GetCommandLine, QUERY_SERVICE_CONFIG's BinaryPathName argument, or elsewhere that
    // command lines are passed around.
    // DecomposeCommandLine returns an error if commandLine contains NUL.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  8. 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)
  9. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.jar

    public String getExecutable(); public void addArguments(String[]); public void addEnvironment(String, String); public void addSystemEnvironment() throws Exception; public String[] getEnvironmentVariab() throws CommandLineException; public String[] getCommandline(); public String[] getShellCommandline(); public String[] getArguments(); public String toString(); public int size(); public Object clone(); public void clear(); public void clearArgs(); public Commandline$Marker createMarker(); public void ...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 200.2K bytes
    - Viewed (0)
  10. 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)
Back to top