Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 222 for elsif (0.04 sec)

  1. hack/verify-staging-meta-files.sh

      repo=$(basename "${full_repo_path}")
      for filename in "${expected_filenames[@]}"; do
        if echo " ${exceptions[*]} " | grep -F " ${repo}/${filename} " >/dev/null; then
          continue
        elif [ ! -f "${KUBE_ROOT}/staging/src/k8s.io/${repo}/${filename}" ]; then
          echo "staging/src/k8s.io/${repo}/${filename} does not exist and must be created"
          RESULT=1
        fi
      done
    done
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 21 10:10:46 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  2. cluster/gce/windows/testonly/user-profile.psm1

               $status = "$userName already exists"
               write-verbose "$username Creation Result: $result"
            }
            elseif($result -eq '-2147024809')
            {
                $staus = "$username Not Found"
                write-verbose "$username creation result: $result"
            }
           elseif($result -eq 0)
           {
               $status = "$username Profile has been created"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 26 00:44:57 UTC 2019
    - 9.4K bytes
    - Viewed (0)
  3. hack/make-rules/test-e2e-node.sh

    else
      # Refresh sudo credentials if needed
      if ping -c 1 -q metadata.google.internal &> /dev/null; then
        echo 'Running on GCE, not asking for sudo credentials'
      elif ping -c 1 -q 169.254.169.254 &> /dev/null; then
        echo 'Running on AWS, not asking for sudo credentials'
      elif sudo --non-interactive "$(which bash)" -c true 2> /dev/null; then
        # if we can run bash without a password, it's a pretty safe bet that either
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 16 09:46:28 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. tools/docker-copy.sh

      # Based on type, explicit set permissions. These may differ on host machine due to umask, so always override.
      out="${dst}/$(basename "${FILE}")"
      if [[ -d "${out}" ]]; then
        chmod -R a+r "${out}"
      elif [[ -x "${out}" ]]; then
        chmod 755 "${out}"
      else
        chmod a+r "${out}"
      fi
    }
    
    mkdir -p "${DOCKER_WORKING_DIR}"
    for FILE in "${FILES[@]}"; do
      may_copy_into_arch_named_sub_dir "${FILE}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 04 03:06:26 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  5. tools/go-ordered-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}"
      fi
    done
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 04 23:04:41 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  6. apache-maven/src/assembly/shared/init

    find_file_argument_basedir() {
    (
      basedir=`pwd`
    
      found_file_switch=0
      for arg in "$@"; do
        if [ ${found_file_switch} -eq 1 ]; then
          if [ -d "${arg}" ]; then
            basedir=`cd "${arg}" && pwd -P`
          elif [ -f "${arg}" ]; then
            basedir=`dirname "${arg}"`
            basedir=`cd "$basedir" && pwd -P`
            if [ ! -d "$basedir" ]; then
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Mar 05 22:52:54 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  7. configure.py

        user_input_origin = get_input(question)
        user_input = user_input_origin.strip().lower()
        if user_input == 'y':
          print(yes_reply)
          var = True
        elif user_input == 'n':
          print(no_reply)
          var = False
        elif not user_input:
          if enabled_by_default:
            print(yes_reply)
            var = True
          else:
            print(no_reply)
            var = False
        else:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  8. ci/official/any.sh

    export TFCI="$(echo $TFCI | sed 's/,nightly_upload/,public_cache,disk_cache/')"
    if [[ -n "${TF_ANY_EXTRA_ENV:-}" ]]; then
      export TFCI="$TFCI,$TF_ANY_EXTRA_ENV"
    fi
    if [[ -n "${TF_ANY_SCRIPT:-}" ]]; then
      "$TF_ANY_SCRIPT"
    elif [[ -n "${TF_ANY_TARGETS:-}" ]]; then
      source "${BASH_SOURCE%/*}/utilities/setup.sh"
      tfrun bazel "${TF_ANY_MODE:-test}" $TFCI_BAZEL_COMMON_ARGS $TF_ANY_TARGETS
    else
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 01 03:21:19 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. hack/lib/etcd.sh

        exit 1
      }
    
      # validate etcd port is free
      local port_check_command
      if command -v ss &> /dev/null && ss -Version | grep 'iproute2' &> /dev/null; then
        port_check_command="ss"
      elif command -v netstat &>/dev/null; then
        port_check_command="netstat"
      else
        kube::log::usage "unable to identify if etcd is bound to port ${ETCD_PORT}. unable to find ss or netstat utilities."
        exit 1
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. 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)
Back to top