Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 74 for elsif (0.04 sec)

  1. cluster/get-kube.sh

        # ie. 1.18.0 or 1.19.0-beta.0
        # shellcheck disable=SC2269 # this line is a noop but it helps with reading
        KUBERNETES_RELEASE_URL="${KUBERNETES_RELEASE_URL}"
      elif [[ ${KUBE_VERSION} =~ ${KUBE_CI_VERSION_REGEX} ]]; then
        # Override KUBERNETES_RELEASE_URL to point to the CI bucket;
        # this will be used by get-kube-binaries.sh.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 18 22:47:29 UTC 2023
    - 9K bytes
    - Viewed (0)
  2. src/runtime/testdata/testwinlib/main.c

        {
            exceptionCount++;
            // prepare context to resume execution
            CONTEXT *c = ExceptionInfo->ContextRecord;
    #ifdef _AMD64_
            c->Rip = *(DWORD64 *)c->Rsp;
            c->Rsp += 8;
    #elif defined(_X86_)
            c->Eip = *(DWORD *)c->Esp;
            c->Esp += 4;
    #else
            c->Pc = c->Lr;
    #endif
    #ifdef _ARM64_
            // TODO: remove when windows/arm64 supports SEH stack unwinding.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. hack/lib/protoc.sh

          elif [[ ${os} == "linux" && ${arch} == "amd64" ]]; then
            url="https://github.com/protocolbuffers/protobuf/releases/download/v${PROTOC_VERSION}/protoc-${PROTOC_VERSION}-linux-x86_64.zip"
          elif [[ ${os} == "linux" && ${arch} == "arm64" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 20:53:13 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  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. 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)
  10. 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)
Back to top