Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for yjp (0.02 sec)

  1. apache-maven/src/assembly/maven/bin/mvnyjp

    #   MAVEN_SKIP_RC   (Optional) Flag to disable loading of mavenrc files.
    # -----------------------------------------------------------------------------
    
    echo "This script is deprecated for removal, please use 'mvn --yjp' instead"
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 18 11:01:21 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. apache-maven/src/assembly/maven/bin/mvn

            else
              echo "Ignoring --debug option as MAVEN_DEBUG_OPTS is already set"
            fi
            ;;
          --yjp)
            if [ ! -f "$YJPLIB" ]; then
              echo "Error: Unable to autodetect the YJP library location. Please set YJPLIB variable" >&2
              exit 1
            fi
            MAVEN_OPTS="-agentpath:$YJPLIB=onexit=snapshot,onexit=memory,tracing,onlylocal $MAVEN_OPTS"
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Thu Oct 24 12:01:35 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. apache-maven/src/assembly/maven/bin/mvn.cmd

        if "%MAVEN_DEBUG_OPTS%"=="" (
            set "MAVEN_DEBUG_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=%MAVEN_DEBUG_ADDRESS%"
        )
    ) else if "%~1"=="--yjp" (
        if not exist "%YJPLIB%" (
            echo Error: Unable to autodetect the YJP library location. Please set YJPLIB variable >&2
            exit /b 1
        )
        set "MAVEN_OPTS=-agentpath:%YJPLIB%=onexit=snapshot,onexit=memory,tracing,onlylocal %MAVEN_OPTS%"
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Thu Oct 24 12:01:35 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top