Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 74 for elsif (1.14 sec)

  1. cluster/validate-cluster.sh

        break
      elif (( "${found}" > "${EXPECTED_NUM_NODES}" )); then
        if [[ "${KUBE_USE_EXISTING_MASTER:-}" != "true" ]]; then
          echo -e "${color_red}Found ${found} nodes, but expected ${EXPECTED_NUM_NODES}. Your cluster may not behave correctly.${color_norm}"
        fi
        break
      elif (( "${ready}" > "${EXPECTED_NUM_NODES}")); then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 01 06:35:39 UTC 2019
    - 7.3K bytes
    - Viewed (0)
  2. tools/go-stress-test

      # shellcheck disable=SC2181
      if [[ $? != 0 ]]; then
        echo -e "--- ${red}FAIL:${clr} ${testname}. See ${RESULTS}/${testname} for full logs"
        code=1
      elif [[ "${VERBOSE:-}" == true ]]; then
        echo -e "--- ${green}PASS:${clr} ${testname}. $(cat ${RESULTS}/${testname} | tail -n2 | head -n1)"
      fi
    done
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 04 23:04:41 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  3. cluster/kube-up.sh

    # - 2: weak error - something went wrong, but cluster probably will be working correctly
    # We just print an error message in case 2).
    if [[ "${validate_result}" == "1" ]]; then
    	exit 1
    elif [[ "${validate_result}" == "2" ]]; then
    	echo "...ignoring non-fatal errors in validate-cluster" >&2
    fi
    
    if [[ "${ENABLE_PROXY:-}" == "true" ]]; then
      # shellcheck disable=SC1091
      . /tmp/kube-proxy-env
      echo ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 17 15:03:34 UTC 2019
    - 2.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfr/README.md

          a=input_, b=filter_, transpose_a=False, transpose_b=True)
      res = tf.raw_ops.Add(x=res, y=bias)
      if act == 'RELU':
        return tf.raw_ops.Relu(features=res)
      elif act == 'RELU6':
        return tf.raw_ops.Relu6(features=res)
      elif act == 'TANH':
        return tf.raw_ops.Tanh(x=res)
      else:
        return res
    
    ```
    
    Besides defining new ops, composition can be specified for an existing op
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 29 18:32:13 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  5. hack/update-vendor-licenses.sh

        echo
    
        file=""
        if [[ -n "${CONTENT[${PACKAGE}-LICENSE]-}" ]]; then
          file="${CONTENT[${PACKAGE}-LICENSE]-}"
        elif [[ -n "${CONTENT[${PACKAGE}-COPYRIGHT]-}" ]]; then
          file="${CONTENT[${PACKAGE}-COPYRIGHT]-}"
        elif [[ -n "${CONTENT[${PACKAGE}-COPYING]-}" ]]; then
          file="${CONTENT[${PACKAGE}-COPYING]-}"
        fi
        if [[ -z "${file}" ]]; then
          cat >&2 << __EOF__
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:53 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. cluster/get-kube-binaries.sh

      mkdir -p "${download_path}"
    
      if [[ $(which gsutil) ]] && [[ "$url" =~ ^https://storage.googleapis.com/.* ]]; then
        gsutil cp "${url//'https://storage.googleapis.com/'/gs://}" "${download_path}/${file}"
      elif [[ $(which curl) ]]; then
        # if the url belongs to GCS API we should use oauth2_token in the headers
        curl_headers=""
        if { [[ "${KUBERNETES_PROVIDER:-gce}" == "gce" ]] || [[ "${KUBERNETES_PROVIDER}" == "gke" ]] ; } &&
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 13 10:57:41 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  7. hack/get-build.sh

      if [[ ${KUBE_VERSION} =~ ${KUBE_RELEASE_VERSION_REGEX} ]]; then
        curl -L --fail -o "kubernetes-${KUBE_VERSION}.tar.gz" "${KUBE_RELEASE_BUCKET_URL}/release/${KUBE_VERSION}/${KUBE_TAR_NAME}"
      elif [[ ${KUBE_VERSION} =~ ${KUBE_CI_VERSION_REGEX} ]]; then
        curl --fail -o "kubernetes-${KUBE_VERSION}.tar.gz" "${KUBE_DEV_RELEASE_BUCKET_URL}/ci/${KUBE_VERSION}/${KUBE_TAR_NAME}"
      else
        echo "Version doesn't match regexp" >&2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 13 10:57:41 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. samples/kind-lb/setupkind.sh

      fi
    done
    
    if [[ "${IPFAMILY}" == "ipv4" ]]; then
      addrName="IPAddress"
      ipv4Range="- ${ipv4Prefix}.${IPSPACE}.200-${ipv4Prefix}.${IPSPACE}.240"
      ipv6Range=""
    elif [[ "${IPFAMILY}" == "ipv6" ]]; then
      addrName="GlobalIPv6Address"
      ipv4Range=""
      ipv6Range="- ${ipv6Prefix}::${IPSPACE}:200-${ipv6Prefix}::${IPSPACE}:240"
    else
      if [[ "${IPV6GW}" == "true" ]]; then
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 02 19:08:19 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  9. test-site/activator

    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
      echo Activator requires at least version 1.6+, you have
      echo version $java_version
      echo
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 9.3K bytes
    - Viewed (0)
  10. cluster/addons/addon-manager/kube-addons-main.sh

    # production use (see the Dockerfile)
    # Disabling shellcheck following files as the full path would be required.
    if [ -f "kube-addons.sh" ]; then
      # shellcheck disable=SC1091
      source "kube-addons.sh"
    elif [ -f "/opt/kube-addons.sh" ]; then
      # shellcheck disable=SC1091
      source "/opt/kube-addons.sh"
    else
      # If the required source is missing, we have to fail.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 24 18:35:44 UTC 2022
    - 2.9K bytes
    - Viewed (0)
Back to top