Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for bat (0.15 sec)

  1. dbflute_fess/manage.bat

    @echo off
    
    setlocal
    %~d0
    cd %~p0
    call _project.bat
    
    :: tilde to remove double quotation
    set FIRST_ARG=%~1
    if "%FIRST_ARG%"=="" set FIRST_ARG=""
    set SECOND_ARG=%2
    if "%SECOND_ARG%"=="" set SECOND_ARG=""
    
    call %DBFLUTE_HOME%\etc\cmd\_df-manage.cmd %MY_PROPERTIES_PATH% "%FIRST_ARG%" %SECOND_ARG%
    
    if "%pause_at_end%"=="y" (
      pause
    Batch File
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Jul 04 22:46:31 GMT 2015
    - 332 bytes
    - Viewed (0)
  2. src/all.bat

    if x%GOBUILDEXIT%==x1...
    Batch File
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Apr 19 14:36:22 GMT 2023
    - 543 bytes
    - Viewed (0)
  3. src/clean.bat

    L2::: Use of this source code is governed by a BSD-style
    L3::: license that can be found in the LICENSE file.
    L4:
    L5:@echo off
    L6:
    L7:setlocal
    L8:
    L9:set GOBUILDFAIL=0
    L10:
    L11:go tool dist env -w -p >env.bat
    L12:if errorlevel 1 goto fail
    L13:call .\env.bat
    L14:del env.bat
    L15:echo.
    L16:
    L17:if exist %GOTOOLDIR%\dist.exe goto distok
    L18:echo cannot find %GOTOOLDIR%\dist; nothing to clean
    L19:goto fail
    L20::distok
    L21:
    L22:"%GOBIN%\go" clean -i std
    L23:"%GOBIN%\go" tool dist clean
    ...
    Batch File
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu May 12 16:59:17 GMT 2022
    - 600 bytes
    - Viewed (0)
  4. src/main/assemblies/files/fess.bat

            ) ELSE (
                SET newparams=!current!
            )
    	)
    	
        IF "x!params!" NEQ "x" (
    		GOTO loop
    	)
    )
    
    SET HOSTNAME=%COMPUTERNAME%
    
    CALL "%~dp0fess.in.bat"
    IF ERRORLEVEL 1 (
    	IF NOT DEFINED nopauseonerror (
    		PAUSE
    	)
    	EXIT /B %ERRORLEVEL%
    )
    
    "%JAVA_HOME%\bin\java" %FESS_JAVA_OPTS% !newparams! -cp "%FESS_CLASSPATH%" "org.codelibs.fess.FessBoot"
    
    Batch File
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sun May 24 22:24:52 GMT 2020
    - 796 bytes
    - Viewed (0)
  5. src/main/assemblies/files/service.bat

    if /i %SERVICE_CMD% == start goto doStart
    if /i %SERVICE_CMD% == stop goto doStop
    if /i %SERVICE_CMD% == manager goto doManagment
    echo Unknown option "%SERVICE_CMD%"
    
    :displayUsage
    echo.
    echo Usage: service.bat install^|remove^|start^|stop^|manager [SERVICE_ID]
    goto:eof
    
    :doStart
    "%EXECUTABLE%" //ES//%SERVICE_ID% %LOG_OPTS%
    if not errorlevel 1 goto started
    echo Failed starting '%SERVICE_ID%' service
    goto:eof
    :started
    Batch File
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 6K bytes
    - Viewed (0)
  6. src/main/assemblies/files/fess.in.bat

    Shinsuke Sugaya <******@****.***> 1673764335 +0900
    Batch File
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 4.2K bytes
    - Viewed (0)
  7. gradlew.bat

    renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> 1669392898 +0000
    Batch File
    - Registered: Fri Apr 19 11:42:09 GMT 2024
    - Last Modified: Fri Nov 25 16:14:58 GMT 2022
    - 2.7K bytes
    - Viewed (0)
  8. dbflute_fess/_project.bat

    Shinsuke Sugaya <******@****.***> 1465443144 +0900
    Batch File
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Jun 09 03:32:24 GMT 2016
    - 161 bytes
    - Viewed (0)
  9. .gitattributes

    **/testData/** linguist-vendored
    *Generated.java linguist-generated=true
    *.kt.txt linguist-language=Kotlin
    * text=auto
    * eol=lf
    *.png binary
    *.jar binary
    compiler/cli/bin/* eol=lf
    compiler/cli/bin/*.bat eol=crlf
    gradlew.bat eol=crlf
    Plain Text
    - Registered: Fri Apr 19 08:18:09 GMT 2024
    - Last Modified: Wed May 03 10:46:21 GMT 2023
    - 263 bytes
    - Viewed (0)
  10. dbflute_fess/_readme.txt

    Directory for DBFlute client
    
    manage.bat(sh) => 21 (jdbc):
    A execution command of JDBC task
    which gets your schema info and saves it to SchemaXML
    located to the "schema" directory.
    This task should be executed after ReplaceSchema task
    and before other tasks(e.g. Generate, Document task).
    
    manage.bat(sh) => 22 (doc):
    A execution command of Document task
    which creates documents, for example, SchemaHTML, HistoryHTML
    to the "output/doc" directory.
    
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Jul 04 22:46:31 GMT 2015
    - 2.5K bytes
    - Viewed (0)
Back to top