Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for yes (0.15 sec)

  1. src/main/assemblies/files/fess

        LANG=en_US.UTF-8
        LC_ALL=en_US.UTF-8
    
        export HOSTNAME=`hostname -s`
    
        cd "$FESS_HOME"
    
        if [ "x$daemonized" = "x" ]; then
            fess_parms="$fess_parms -Dfess.foreground=yes"
            exec "$JAVA" $FESS_JAVA_OPTS $fess_parms -Dfess.es.dir="$SEARCH_ENGINE_HOME" -cp "$FESS_CLASSPATH" $props \
                    org.codelibs.fess.FessBoot $FESS_OPTS > /dev/null
        else
    Shell Script
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 5.4K bytes
    - Viewed (0)
  2. ci/official/wheel_test/update_requirements.sh

    # accordingly.
    
    # -e: abort script if one command fails
    # -u: error if undefined variable used
    # -o pipefail: entire command fails if pipe fails. watch out for yes | ...
    # -o history: record shell history
    set -euo pipefail -o history
    
    # Check for required arguments
    if [ -z "$1" ]; then
      echo "Usage: $0 <path_to_tensorflow_wheel> <python_version>"
      exit 1
    fi
    
    Shell Script
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Aug 31 18:17:57 GMT 2023
    - 1.9K bytes
    - Viewed (0)
  3. ci/official/utilities/setup.sh

    # -e: abort script if one command fails
    # -u: error if undefined variable used
    # -x: log all commands
    # -o pipefail: entire command fails if pipe fails. watch out for yes | ...
    # -o history: record shell history
    # -o allexport: export all functions and variables to be available to subscripts
    #               (affects 'source $TFCI')
    set -euxo pipefail -o history -o allexport
    
    Shell Script
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri Jan 26 00:33:34 GMT 2024
    - 5.2K bytes
    - Viewed (1)
Back to top