Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Muth (0.15 sec)

  1. ci/official/containers/linux_arm64/build.sh

        --cache-from "$IMAGE" \
        -t "$IMAGE"  . && break
      done
      final=$?
      if [ $final -ne 0 ]; then
        exit $final
      fi
      set -e
    
      if [[ -n "$KOKORO_BUILD_ID" ]]; then
        gcloud auth configure-docker
        docker push "$IMAGE"
      fi
    Shell Script
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Fri Nov 03 13:38:49 GMT 2023
    - 2.3K bytes
    - Viewed (0)
  2. ci/official/upload.sh

    # Upload all build artifacts to e.g. gs://tensorflow/versions/2.16.0-rc1 (releases) or
    # gs://tensorflow/nightly/2.16.0-dev20240105 (nightly), overwriting previous values.
    if [[ "$TFCI_ARTIFACT_FINAL_GCS_ENABLE" == 1 ]]; then
      gcloud auth activate-service-account --key-file="$TFCI_ARTIFACT_FINAL_GCS_SA_PATH"
    
      # $TF_VER_FULL will resolve to e.g. "2.15.0-rc2". Since $TF_VER_FULL comes
      # from get_versions.sh, which must be run *after* update_version.py, FINAL_URI
    Shell Script
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Jan 24 20:52:12 GMT 2024
    - 2.8K bytes
    - Viewed (0)
  3. ci/devinfra/docker_windows/Dockerfile

    # Installing pip packages
    RUN pip install --upgrade setuptools; \
        pip install altgraph appdirs cachetools certifi cffi chardet colorama \
        cryptography cycler Cython decorator google-api-python-client \
        google-auth google-auth-httplib2 grpcio httplib2 idna ipython-genutils \
        kiwisolver macholib matplotlib nose numpy packaging pandas pickleshare pip \
        prompt-toolkit protobuf psutil pyasn1 pyasn1-modules pycparser Pygments \
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Fri Aug 18 17:24:20 GMT 2023
    - 13.6K bytes
    - Viewed (0)
  4. ci/official/README.md

    #
    #   RBE is incompatible with local caching, so you must remove
    #   disk_cache, public_cache, and public_cache_push from your $TFCI file.
    #
    # To use RBE, you must first run `gcloud auth application-default login`, then:
    export TFCI=py311,linux_x86,rbe
    
    # Finally: Run your script of choice.
    #   If you've clicked on a test result from our CI (via a dashboard or GitHub link),
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Feb 01 03:21:19 GMT 2024
    - 8K bytes
    - Viewed (0)
  5. ci/official/utilities/setup_macos.sh

      # Python 3.12 removed the module `imp` which is needed by gcloud CLI so we set
      # `CLOUDSDK_PYTHON` to Python 3.11 which is the system Python on TFCI Mac
      # VMs.
      export CLOUDSDK_PYTHON=$(which python3.11)
      gcloud auth activate-service-account --key-file="${GOOGLE_APPLICATION_CREDENTIALS}"
    fi
    set -x
    
    # When cross-compiling with RBE, we need to copy the macOS sysroot to be
    Shell Script
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Feb 15 15:23:28 GMT 2024
    - 6.2K bytes
    - Viewed (0)
Back to top