Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 446 for Setup (0.02 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. ci/official/utilities/setup.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    #
    # Common setup for all TF scripts.
    #
    # Make as FEW changes to this file as possible. It should not contain utility
    # functions (except for tfrun); use dedicated scripts instead and reference them
    Created: Tue Dec 30 12:39:10 GMT 2025
    - Last Modified: Thu Jan 09 18:37:25 GMT 2025
    - 6.2K bytes
    - Click Count (0)
  2. ci/official/containers/ml_build/setup.packages.sh

    # limitations under the License.
    # ==============================================================================
    #
    # setup.packages.sh: Given a list of Ubuntu packages, install them and clean up.
    # Usage: setup.packages.sh <package_list.txt>
    set -e
    
    # Prevent apt install tzinfo from asking our location (assumes UTC)
    export DEBIAN_FRONTEND=noninteractive
    
    apt-get update
    Created: Tue Dec 30 12:39:10 GMT 2025
    - Last Modified: Tue Sep 24 20:45:58 GMT 2024
    - 1.1K bytes
    - Click Count (0)
  3. ci/official/containers/ml_build/setup.python.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    #
    # setup.python.sh: Install a specific Python version and packages for it.
    # Usage: setup.python.sh <pyversion> <requirements.txt>
    set -xe
    
    source ~/.bashrc
    VERSION=$1
    REQUIREMENTS=$2
    
    # Install Python packages for this container's version
    Created: Tue Dec 30 12:39:10 GMT 2025
    - Last Modified: Thu Oct 30 20:25:44 GMT 2025
    - 2.5K bytes
    - Click Count (0)
  4. ci/official/containers/ml_build/setup.sources.cudnn.sh

    Quoc Truong <******@****.***> 1739910751 -0800
    Created: Tue Dec 30 12:39:10 GMT 2025
    - Last Modified: Tue Feb 18 20:42:21 GMT 2025
    - 1.2K bytes
    - Click Count (0)
  5. ci/official/containers/ml_build/Dockerfile

    # Install devtoolset build dependencies
    COPY setup.sources.sh /setup.sources.sh
    COPY setup.packages.sh /setup.packages.sh
    COPY builder.packages.txt /builder.packages.txt
    
    RUN /setup.sources.sh && /setup.packages.sh /builder.packages.txt
    
    # Setup Python
    COPY setup.python.sh /setup.python.sh
    COPY builder.requirements.txt /builder.requirements.txt
    RUN /setup.python.sh python3.9 /builder.requirements.txt
    Created: Tue Dec 30 12:39:10 GMT 2025
    - Last Modified: Thu Dec 18 21:55:23 GMT 2025
    - 4.5K bytes
    - Click Count (0)
  6. .github/workflows/people.yml

              GITHUB_CONTEXT: ${{ toJson(github) }}
            run: echo "$GITHUB_CONTEXT"
          - uses: actions/checkout@v6
          - name: Set up Python
            uses: actions/setup-python@v6
            with:
              python-version: "3.11"
          - name: Setup uv
            uses: astral-sh/setup-uv@v7
            with:
              version: "0.4.15"
              enable-cache: true
              cache-dependency-glob: |
                requirements**.txt
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Fri Nov 21 13:03:21 GMT 2025
    - 1.6K bytes
    - Click Count (0)
  7. .github/workflows/notify-translations.yml

              GITHUB_CONTEXT: ${{ toJson(github) }}
            run: echo "$GITHUB_CONTEXT"
          - uses: actions/checkout@v6
          - name: Set up Python
            uses: actions/setup-python@v6
            with:
              python-version: "3.11"
          - name: Setup uv
            uses: astral-sh/setup-uv@v7
            with:
              version: "0.4.15"
              enable-cache: true
              cache-dependency-glob: |
                requirements**.txt
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Fri Nov 21 13:03:21 GMT 2025
    - 1.7K bytes
    - Click Count (0)
  8. .github/workflows/contributor-pr.yml

            uses: actions/checkout@v6
          - name: setup java
            uses: actions/setup-java@v5
            with:
              distribution: temurin
              java-version: 17
          - uses: actions/download-artifact@v7
            with:
              name: build-receipt.properties
              path: incoming-distributions/build-receipt.properties
          - name: Setup Gradle
            uses: gradle/actions/setup-gradle@v5
            with:
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Sun Dec 14 14:03:48 GMT 2025
    - 5K bytes
    - Click Count (0)
  9. .github/workflows/build-docs.yml

        outputs:
          langs: ${{ steps.show-langs.outputs.langs }}
        steps:
          - uses: actions/checkout@v6
          - name: Set up Python
            uses: actions/setup-python@v6
            with:
              python-version: "3.11"
          - name: Setup uv
            uses: astral-sh/setup-uv@v7
            with:
              version: "0.4.15"
              enable-cache: true
              cache-dependency-glob: |
                requirements**.txt
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Sun Dec 21 17:40:17 GMT 2025
    - 3.3K bytes
    - Click Count (0)
  10. buildscripts/verify-build.sh

    	chmod a+x "$FUNCTIONAL_TESTS"
    }
    
    function main() {
    	echo "Testing in FS setup"
    	if ! run_test_fs; then
    		echo "FAILED"
    		purge "$WORK_DIR"
    		exit 1
    	fi
    
    	echo "Testing in Erasure setup"
    	if ! run_test_erasure; then
    		echo "FAILED"
    		purge "$WORK_DIR"
    		exit 1
    	fi
    
    	echo "Testing in Distributed Erasure setup"
    	if ! run_test_dist_erasure; then
    		echo "FAILED"
    		purge "$WORK_DIR"
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri May 24 19:28:51 GMT 2024
    - 6.7K bytes
    - Click Count (0)
Back to Top