Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Player (0.16 sec)

  1. common/scripts/setup_env.sh

      KUBECONFIG="${container_kubeconfig%?}"
    fi
    
    # LOCAL_OUT should point to architecture where we are currently running versus the desired.
    # This is used when we need to run a build artifact during tests or later as part of another
    # target.
    if [[ "${FOR_BUILD_CONTAINER:-0}" -eq "1" ]]; then
      # Override variables with container specific
      TARGET_OUT=${CONTAINER_TARGET_OUT}
      TARGET_OUT_LINUX=${CONTAINER_TARGET_OUT_LINUX}
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 23 19:52:28 GMT 2024
    - 7.6K bytes
    - Viewed (0)
  2. common/scripts/kind_provisioner.sh

        wait "${pid}" || exit 1
      done
    
      # Install MetalLB for LoadBalancer support. Must be done synchronously since METALLB_IPS is shared.
      # and keep track of the list of Kubeconfig files that will be exported later
      export KUBECONFIGS
      for CLUSTER_NAME in "${CLUSTER_NAMES[@]}"; do
        KUBECONFIG_FILE="${KUBECONFIG_DIR}/${CLUSTER_NAME}"
        if [[ ${NUM_CLUSTERS} -gt 1 ]]; then
          retry install_metallb "${KUBECONFIG_FILE}"
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 08 19:12:55 GMT 2024
    - 17.3K bytes
    - Viewed (1)
  3. ci/official/containers/linux_arm64/builder.patchelf/build_patchelf.sh

    echo deb-src http://ports.ubuntu.com/ubuntu-ports/ jammy universe>>/etc/apt/sources.list
    apt-get update
    apt-get -y build-dep patchelf/jammy
    apt-get -b source patchelf/jammy
    
    Shell Script
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Sep 18 15:53:15 GMT 2023
    - 1.2K bytes
    - Viewed (0)
  4. ci/official/containers/linux_arm64/build.sh

      else
        TAG="pr-${KOKORO_GITHUB_PULL_REQUEST_NUMBER}"
      fi
    fi
    
    # Build for both JAX and TF usage.  We do these in one place because they share
    # almost all of the same cache layers
    export DOCKER_BUILDKIT=1
    for target in jax tf; do
      IMAGE="gcr.io/tensorflow-sigs/build-arm64:$target-$TAG"
      docker pull "$IMAGE" || true
      # Due to some flakiness of resources pulled in the build, allow the docker
    Shell Script
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri Nov 03 13:38:49 GMT 2023
    - 2.3K bytes
    - Viewed (0)
Back to top