Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for cmd (0.13 sec)

  1. .teamcity/mvnw.cmd

    @REM check for post script, once with legacy .bat ending and once with .cmd ending
    if exist "%HOME%\mavenrc_post.bat" call "%HOME%\mavenrc_post.bat"
    if exist "%HOME%\mavenrc_post.cmd" call "%HOME%\mavenrc_post.cmd"
    :skipRcPost
    
    @REM pause the script if MAVEN_BATCH_PAUSE is set to 'on'
    if "%MAVEN_BATCH_PAUSE%" == "on" pause
    
    if "%MAVEN_TERMINATE_CMD%" == "on" exit %ERROR_CODE%
    
    Batch File
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Feb 26 01:48:39 GMT 2020
    - 6.5K bytes
    - Viewed (0)
  2. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildEnvironment.kt

            workingDir = projectDir
            isIgnoreExitValue = true
            commandLine = listOf("git", *args)
            if (OperatingSystem.current().isWindows) {
                commandLine = listOf("cmd", "/c") + commandLine
            }
        }
        return execOutput.result.zip(execOutput.standardOutput.asText) { result, outputText ->
            if (result.exitValue == 0) outputText.trim()
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Feb 09 22:52:01 GMT 2024
    - 5.7K bytes
    - Viewed (2)
  3. build-logic/cleanup/src/main/java/gradlebuild/cleanup/services/KillLeakingJavaProcesses.java

            } else if (isMacOS()) {
                return new String[]{"ps", "x", "-o", "pid,command"};
            } else {
                return new String[]{"ps", "x", "-o", "pid,cmd"};
            }
        }
    
        private static boolean isWindows() {
            return System.getProperty("os.name").toLowerCase().contains("windows");
        }
    
        private static boolean isMacOS() {
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Sep 27 07:41:29 GMT 2023
    - 11.4K bytes
    - Viewed (0)
  4. .teamcity/mvnw

    fi
    
    # Provide a "standardized" way to retrieve the CLI args that will
    # work with both Windows and non-Windows executions.
    MAVEN_CMD_LINE_ARGS="$MAVEN_CONFIG $@"
    export MAVEN_CMD_LINE_ARGS
    
    WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain
    
    exec "$JAVACMD" \
      $MAVEN_OPTS \
      -classpath "$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.jar" \
    Shell Script
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Feb 26 01:48:39 GMT 2020
    - 9.8K bytes
    - Viewed (0)
Back to top