Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for apt (0.02 sec)

  1. hack/local-up-cluster.sh

        exit 1
      fi
    }
    
    function refresh_docker_containerd_runc {
      apt update
      apt-get install ca-certificates curl gnupg ripgrep tree vim
      install -m 0755 -d /etc/apt/keyrings
      curl -fsSL https://download.docker.com/linux/ubuntu/gpg | gpg --dearmor -o /etc/apt/keyrings/docker.gpg
      chmod a+r /etc/apt/keyrings/docker.gpg
    
      # shellcheck disable=SC2027 disable=SC2046
      echo \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. configure.py

      Args:
        environ_cp: (Dict) copy of the os.environ.
    
      Returns:
        string value for clang_compiler_path.
      """
      # Default path if clang-16 is installed by using apt-get install
      default_clang_path = '/usr/lib/llvm-17/bin/clang'
      if not os.path.exists(default_clang_path):
        default_clang_path = '/usr/lib/llvm-16/bin/clang'
        if not os.path.exists(default_clang_path):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
Back to top