Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for detect_host_info (0.28 sec)

  1. cluster/gce/gci/configure.sh

    # and kube::util::host_os, kube::util::host_arch functions in hack/lib/util.sh
    # This function should be synced with detect_host_info in ./configure-helper.sh
    function detect_host_info() {
      HOST_PLATFORM=${HOST_PLATFORM_OVERRIDE:-"$(uname -s)"}
      case "${HOST_PLATFORM}" in
        Linux|linux)
          HOST_PLATFORM="linux"
          ;;
        *)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  2. cluster/gce/gci/configure-helper.sh

    # and kube::util::host_os, kube::util::host_arch functions in hack/lib/util.sh
    # This function should be synced with detect_host_info in ./configure.sh
    function detect_host_info() {
      HOST_PLATFORM=${HOST_PLATFORM_OVERRIDE:-"$(uname -s)"}
      case "${HOST_PLATFORM}" in
        Linux|linux)
          HOST_PLATFORM="linux"
          ;;
        *)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
Back to top