Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for window (0.33 sec)

  1. test-site/activator

      done
    
      if [ "$TARGET_FILE" == "." -o "$TARGET_FILE" == ".." ]; then
        cd "$TARGET_FILE"
        TARGET_FILEPATH=
      else
        TARGET_FILEPATH=/$TARGET_FILE
      fi
    
      # make sure we grab the actual windows path, instead of cygwin's path.
      if ! is_cygwin; then
        echo "$(pwd -P)/$TARGET_FILE"
      else
        echo $(cygwinpath "$(pwd -P)/$TARGET_FILE")
      fi
    )
    }
    
    # TODO - Do we need to detect msys?
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 9.3K bytes
    - Viewed (0)
  2. integration-tests/gradle/gradlew

    #   * -classpath
    #   * -D...appname settings
    #   * --module-path (only if needed)
    #   * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables.
    
    # For Cygwin or MSYS, switch paths to Windows format before running java
    if "$cygwin" || "$msys" ; then
        APP_HOME=$( cygpath --path --mixed "$APP_HOME" )
        CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" )
    
        JAVACMD=$( cygpath --unix "$JAVACMD" )
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:07:19 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/mkerrors.bash

    set -e
    shopt -s nullglob
    
    winerror="$(printf '%s\n' "/mnt/c/Program Files (x86)/Windows Kits/"/*/Include/*/shared/winerror.h | sort -Vr | head -n 1)"
    [[ -n $winerror ]] || { echo "Unable to find winerror.h" >&2; exit 1; }
    ntstatus="$(printf '%s\n' "/mnt/c/Program Files (x86)/Windows Kits/"/*/Include/*/shared/ntstatus.h | sort -Vr | head -n 1)"
    [[ -n $ntstatus ]] || { echo "Unable to find ntstatus.h" >&2; exit 1; }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  4. gradlew

    #   * -classpath
    #   * -D...appname settings
    #   * --module-path (only if needed)
    #   * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables.
    
    # For Cygwin or MSYS, switch paths to Windows format before running java
    if "$cygwin" || "$msys" ; then
        APP_HOME=$( cygpath --path --mixed "$APP_HOME" )
        CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" )
    
        JAVACMD=$( cygpath --unix "$JAVACMD" )
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 11:20:16 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/mkknownfolderids.bash

    set -e
    shopt -s nullglob
    
    knownfolders="$(printf '%s\n' "/mnt/c/Program Files (x86)/Windows Kits/"/*/Include/*/um/KnownFolders.h | sort -Vr | head -n 1)"
    [[ -n $knownfolders ]] || { echo "Unable to find KnownFolders.h" >&2; exit 1; }
    
    {
    	echo "// Code generated by 'mkknownfolderids.bash'; DO NOT EDIT."
    	echo
    	echo "package windows"
    	echo "type KNOWNFOLDERID GUID"
    	echo "var ("
    	while read -r line; do
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 19 21:26:10 UTC 2020
    - 1.3K bytes
    - Viewed (0)
Back to top