Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for Case (0.16 sec)

  1. src/packaging/deb/init.d/fess

    	else
    		JAVA=`which java`
    	fi
    
    	if [ ! -x "$JAVA" ]; then
    		echo "Could not find any executable java binary. Please install java in your PATH or set JAVA_HOME"
    		exit 1
    	fi
    }
    
    case "$1" in
      start)
    	checkJava
    
    	if [ -n "$MAX_LOCKED_MEMORY" -a -z "$FESS_HEAP_SIZE" ]; then
    		log_failure_msg "MAX_LOCKED_MEMORY is set - FESS_HEAP_SIZE must also be set"
    		exit 1
    	fi
    
    Shell Script
    - Registered: Mon Apr 15 08:04:17 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 5.8K bytes
    - Viewed (0)
  2. buildscripts/checkdeps.sh

    	done
    
    	return 0
    }
    
    assert_is_supported_arch() {
    	case "${ARCH}" in
    	x86_64 | amd64 | aarch64 | ppc64le | arm* | s390x | loong64 | loongarch64)
    		return
    		;;
    	*)
    		echo "Arch '${ARCH}' is not supported. Supported Arch: [x86_64, amd64, aarch64, ppc64le, arm*, s390x, loong64, loongarch64]"
    		exit 1
    		;;
    	esac
    }
    
    assert_is_supported_os() {
    	case "${KNAME}" in
    	Linux | FreeBSD | OpenBSD | NetBSD | DragonFly | SunOS)
    Shell Script
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Fri May 26 05:07:25 GMT 2023
    - 3.4K bytes
    - Viewed (0)
  3. src/packaging/rpm/init.d/fess

    }
    
    rh_status() {
        # run checks to determine if the service is running or use generic status
        status -p $pidfile $prog
    }
    
    rh_status_q() {
        rh_status >/dev/null 2>&1
    }
    
    
    case "$1" in
        start)
            rh_status_q && exit 0
            $1
            ;;
        stop)
            rh_status_q || exit 0
            $1
            ;;
        restart)
            $1
            ;;
        reload)
    Shell Script
    - Registered: Mon Apr 15 08:04:17 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 3.7K bytes
    - Viewed (1)
  4. apache-maven/src/assembly/shared/validate

        . /etc/mavenrc
      fi
    
      if [ -f "$HOME/.mavenrc" ] ; then
        . "$HOME/.mavenrc"
      fi
    
    fi
    
    # OS specific support. $var _must_ be set to either true or false.
    cygwin=false;
    mingw=false;
    case "`uname`" in
      CYGWIN*) cygwin=true;;
      MINGW*) mingw=true;;
    Shell Script
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Tue Dec 21 09:29:19 GMT 2021
    - 1.7K bytes
    - Viewed (0)
  5. common/scripts/kind_provisioner.sh

    # 4. NOMETALBINSTALL: Dont install matllb if set.
    # This function returns 0 when everything goes well, or 1 otherwise
    # If Kind cluster was already created then it would be cleaned up in case of errors
    function setup_kind_cluster() {
      local NAME="${1:-istio-testing}"
      local IMAGE="${2:-"${DEFAULT_KIND_IMAGE}"}"
      local CONFIG="${3:-}"
      local NOMETALBINSTALL="${4:-}"
      local CLEANUP="${5:-true}"
    
    Shell Script
    - Registered: Wed Apr 17 22:53:10 GMT 2024
    - Last Modified: Mon Apr 08 19:12:55 GMT 2024
    - 17.3K bytes
    - Viewed (1)
  6. misc/wasm/go_wasip1_wasm_exec

    #!/usr/bin/env bash
    # Copyright 2023 The Go Authors. All rights reserved.
    # Use of this source code is governed by a BSD-style
    # license that can be found in the LICENSE file.
    
    case "$GOWASIRUNTIME" in
    	"wasmedge")
    		exec wasmedge --dir=/ --env PWD="$PWD" --env PATH="$PATH" ${GOWASIRUNTIMEARGS:-} "$1" "${@:2}"
    		;;
    	"wasmer")
    		exec wasmer run --dir=/ --env PWD="$PWD" --env PATH="$PATH" ${GOWASIRUNTIMEARGS:-} "$1" -- "${@:2}"
    		;;
    	"wazero")
    Shell Script
    - Registered: Tue Apr 16 11:13:10 GMT 2024
    - Last Modified: Thu Apr 11 17:09:10 GMT 2024
    - 797 bytes
    - Viewed (0)
  7. ci/official/containers/linux_arm64/build.sh

      IMAGE="gcr.io/tensorflow-sigs/build-arm64:$target-$TAG"
      docker pull "$IMAGE" || true
      # Due to some flakiness of resources pulled in the build, allow the docker
      # command to reattempt build a few times in the case of failure (b/302558736)
      set +e
      for i in $(seq 1 5)
      do
        docker build \
        --build-arg REQUIREMENTS_FILE=jax.requirements.txt \
        --target=$target \
        --cache-from "$IMAGE" \
    Shell Script
    - Registered: Tue Apr 16 12:39:09 GMT 2024
    - Last Modified: Fri Nov 03 13:38:49 GMT 2023
    - 2.3K bytes
    - Viewed (0)
  8. ci/official/utilities/cleanup_summary.sh

    # limitations under the License.
    # ==============================================================================
    
    set -euxo pipefail
    
    function resultstore_extract_fallback {
      # In case the main script fails somehow.
      cat <<EOF
    IMPORTANT: For bazel invocations that uploaded to ResultStore (e.g. RBE), you
    can view more detailed results that are probably easier to read than this log.
    Try the links below:
    EOF
    Shell Script
    - Registered: Tue Apr 16 12:39:09 GMT 2024
    - Last Modified: Wed Nov 08 17:50:27 GMT 2023
    - 1.8K bytes
    - Viewed (0)
  9. ci/official/containers/linux_arm64/builder.devtoolset/build_devtoolset.sh

    # ==============================================================================
    #
    # Builds a devtoolset cross-compiler targeting manylinux2014 (glibc 2.17 / libstdc++ 4.8).
    
    VERSION="$1"
    TARGET="$2"
    
    case "${VERSION}" in
    devtoolset-9)
      LIBSTDCXX_VERSION="6.0.28"
      LIBSTDCXX_ABI="new"
      ;;
    devtoolset-10)
      LIBSTDCXX_VERSION="6.0.28"
      LIBSTDCXX_ABI="new"
      ;;
    *)
    Shell Script
    - Registered: Tue Apr 16 12:39:09 GMT 2024
    - Last Modified: Fri Sep 29 00:26:34 GMT 2023
    - 6.1K bytes
    - Viewed (1)
  10. src/main/assemblies/files/fess.in.sh

    # new generation
    if [ "x$FESS_HEAP_NEWSIZE" != "x" ]; then
        FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Xmn${FESS_HEAP_NEWSIZE}"
    fi
    
    # set to headless, just in case
    FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Djava.awt.headless=true"
    
    # maximum # keep-alive connections to maintain at once
    FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Dhttp.maxConnections=20"
    
    # Force the JVM to use IPv4 stack
    Shell Script
    - Registered: Mon Apr 15 08:04:17 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 4.7K bytes
    - Viewed (0)
Back to top