Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Mirror (0.81 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    echo
    echo "//go:build ${GOARCH} && ${GOOS}"
    echo
    go tool cgo -godefs -- "$@" _const.go >_error.out
    cat _error.out | grep -vf _error.grep | grep -vf _signal.grep
    echo
    echo '// Errors'
    echo 'const ('
    cat _error.out | grep -f _error.grep | sed 's/=\(.*\)/= syscall.Errno(\1)/'
    echo ')'
    
    echo
    echo '// Signals'
    echo 'const ('
    cat _error.out | grep -f _signal.grep | sed 's/=\(.*\)/= syscall.Signal(\1)/'
    echo ')'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  2. gradlew

        fi
        if [ ! -x "$JAVACMD" ] ; then
            die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
    
    Please set the JAVA_HOME variable in your environment to match the
    location of your Java installation."
        fi
    else
        JAVACMD=java
        if ! command -v java >/dev/null 2>&1
        then
            die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 11:20:16 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. src/main/assemblies/files/fess

            ;;
            -X)
                properties="$properties -X$2"
                shift 2
            ;;
            --)
                shift
                break
            ;;
            *)
                echo "Error parsing argument $1!" >&2
                usage
                exit 1
            ;;
        esac
    done
    
    # Start up the service
    launch_service "$pidfile" "$daemonized" "$properties"
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/plan9/mkerrors.sh

    echo
    echo '// Errors'
    echo 'const ('
    cat _error.out | grep -f _error.grep | sed 's/=\(.*\)/= Errno(\1)/'
    echo ')'
    
    echo
    echo '// Signals'
    echo 'const ('
    cat _error.out | grep -f _signal.grep | sed 's/=\(.*\)/= Signal(\1)/'
    echo ')'
    
    # Run C program to print error and syscall strings.
    (
    	echo -E "
    #include <stdio.h>
    #include <stdlib.h>
    #include <errno.h>
    #include <ctype.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  5. integration-tests/gradle/gradlew

        fi
        if [ ! -x "$JAVACMD" ] ; then
            die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
    
    Please set the JAVA_HOME variable in your environment to match the
    location of your Java installation."
        fi
    else
        JAVACMD=java
        if ! command -v java >/dev/null 2>&1
        then
            die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:07:19 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  6. util/gradle_integration_tests.sh

    # To avoid modifying the Git client, we copy everything we need to another directory.
    # That provides general hygiene, including avoiding release errors:
    #
    # Preparing to update Javadoc and JDiff for the release...
    # error: Your local changes to the following files would be overwritten by checkout:
    #         integration-tests/gradle/gradle/wrapper/gradle-wrapper.jar
    #         integration-tests/gradle/gradle/wrapper/gradle-wrapper.properties
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 16 20:48:20 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. mvnw

        else
          JAVACMD="$JAVA_HOME/bin/java"
        fi
      else
        JAVACMD="$(\unset -f command 2>/dev/null; \command -v java)"
      fi
    fi
    
    if [ ! -x "$JAVACMD" ] ; then
      echo "Error: JAVA_HOME is not defined correctly." >&2
      echo "  We cannot execute $JAVACMD" >&2
      exit 1
    fi
    
    if [ -z "$JAVA_HOME" ] ; then
      echo "Warning: JAVA_HOME environment variable is not set."
    fi
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 16 20:48:20 UTC 2023
    - 11K bytes
    - Viewed (0)
Back to top