Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for JAVA_VERSION (0.33 sec)

  1. test-site/activator.bat

    for /f "tokens=3" %%g in ('java -version 2^>^&1 ^| findstr /i "version"') do (
        set JAVA_VERSION=%%g
    )
    
    rem Strips away the " characters
    set JAVA_VERSION=%JAVA_VERSION:"=%
    
    rem TODO Check if there are existing mem settings in JAVA_OPTS/CFG_OPTS and use those instead of the below
    for /f "delims=. tokens=1-3" %%v in ("%JAVA_VERSION%") do (
        set MAJOR=%%v
        set MINOR=%%w
        set BUILD=%%x
    
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 7.2K bytes
    - Viewed (0)
  2. test-site/activator

    # Now check to see if it's a good enough version
    declare -r java_version=$("$java_cmd" -version 2>&1 | awk -F '"' '/version/ {print $2}')
    if [[ "$java_version" == "" ]]; then
      echo
      echo No java installations was detected.
      echo Please go to http://www.java.com/getjava/ and download
      echo
      exit 1
    elif [[ ! "$java_version" > "1.6" ]]; then
      echo
      echo The java installation you have is not up to date
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 9.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/StandardSystemProperty.java

     * @since 15.0
     */
    @J2ktIncompatible
    @GwtIncompatible // java.lang.System#getProperty
    @ElementTypesAreNonnullByDefault
    public enum StandardSystemProperty {
    
      /** Java Runtime Environment version. */
      JAVA_VERSION("java.version"),
    
      /** Java Runtime Environment vendor. */
      JAVA_VENDOR("java.vendor"),
    
      /** Java vendor URL. */
      JAVA_VENDOR_URL("java.vendor.url"),
    
      /** Java installation directory. */
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Feb 23 15:09:35 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top