Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for swift (0.17 sec)

  1. apache-maven/src/assembly/shared/init.cmd

    @REM POM location, if supplied.
    
    set FILE_ARG=
    :arg_loop
    if "%~1" == "-f" (
      set "FILE_ARG=%~2"
      shift
      goto process_file_arg
    )
    if "%~1" == "--file" (
      set "FILE_ARG=%~2"
      shift
      goto process_file_arg
    )
    @REM If none of the above, skip the argument
    shift
    if not "%~1" == "" (
      goto arg_loop
    ) else (
      goto findBaseDir
    )
    
    :process_file_arg
    if "%FILE_ARG%" == "" (
    Batch File
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Dec 16 21:35:28 GMT 2022
    - 2.1K bytes
    - Viewed (0)
  2. src/main/assemblies/files/service.bat

    :checkExe
    if EXIST "%EXECUTABLE%" goto okExe
    echo fess-service-(x86|x64).exe was not found...
    
    :okExe
    if "%LOG_DIR%" == "" set LOG_DIR=%FESS_HOME%\logs
    
    if "x%1x" == "xx" goto displayUsage
    set SERVICE_CMD=%1
    shift
    if "x%1x" == "xx" goto checkServiceCmd
    set SERVICE_ID=%1
    
    :checkServiceCmd
    
    if "%LOG_OPTS%" == "" set LOG_OPTS=--LogPath "%LOG_DIR%" --LogPrefix "%SERVICE_ID%" --StdError auto --StdOutput auto
    
    Batch File
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 6K bytes
    - Viewed (0)
Back to top