Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 162 for REQUIREMENTS (0.11 sec)

  1. docs/ko/docs/deployment/docker.md

    # (2)
    WORKDIR /code
    
    # (3)
    COPY ./requirements.txt /code/requirements.txt
    
    # (4)
    RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
    
    # (5)
    COPY ./app /code/app
    
    # (6)
    CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80"]
    ```
    
    1. 공식 파이썬 베이스 이미지에서 시작합니다.
    
    2. 현재 워킹 디렉터리를 `/code`로 설정합니다.
    
        여기에 `requirements.txt` 파일과 `app` 디렉터리를 위치시킬 것입니다.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon Aug 12 21:47:53 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  2. docs/ja/docs/deployment/docker.md

    # (2)
    WORKDIR /code
    
    # (3)
    COPY ./requirements.txt /code/requirements.txt
    
    # (4)
    RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
    
    # (5)
    COPY ./app /code/app
    
    # (6)
    CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80"]
    ```
    
    1. 公式のPythonベースイメージから始めます
    
    2. 現在の作業ディレクトリを `/code` に設定します
    
        ここに `requirements.txt` ファイルと `app` ディレクトリを置きます。
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon Aug 12 21:47:53 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  3. .github/bot_config.yml

         * If error still persists then, apparently your CPU model does not support AVX instruction sets.
           * Refer [hardware requirements](https://www.tensorflow.org/install/pip#hardware-requirements).
       
       -----------------------------------------------------------------------------------------------
       
       **2. Installing **TensorFlow** (TF) CPU prebuilt binaries**
       
       
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Mon Jul 15 05:00:54 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/collect/testing/FeatureSpecificTestSuiteBuilder.java

        }
        TesterRequirements requirements;
        try {
          requirements = FeatureUtil.getTesterRequirements(method);
        } catch (ConflictingRequirementsException e) {
          throw new RuntimeException(e);
        }
        if (!features.containsAll(requirements.getPresentFeatures())) {
          if (logger.isLoggable(FINER)) {
            Set<Feature<?>> missingFeatures = copyToSet(requirements.getPresentFeatures());
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. ci/official/containers/ml_build/setup.python.sh

    # ==============================================================================
    #
    # 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
    if [[ ${VERSION} == "python3.13" ]]; then
      cat >pythons.txt <<EOF
    $VERSION
    $VERSION-dev
    $VERSION-venv
    EOF
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Wed Oct 16 23:34:34 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. mockwebserver-junit5/README.md

      @MockWebServerInstance("server3") private val server3: MockWebServer
    ) {
      @Test
      fun test() {
        ...
      }
    }
    ```
    
    Requirements
    ------------
    
    MockWebServer's JUnit 5 integration works on Android 7.0+ (API level 24+) and Java 8+. Note that
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sun Jan 14 10:20:09 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/collect/testing/FeatureSpecificTestSuiteBuilder.java

        }
        TesterRequirements requirements;
        try {
          requirements = FeatureUtil.getTesterRequirements(method);
        } catch (ConflictingRequirementsException e) {
          throw new RuntimeException(e);
        }
        if (!features.containsAll(requirements.getPresentFeatures())) {
          if (logger.isLoggable(FINER)) {
            Set<Feature<?>> missingFeatures = copyToSet(requirements.getPresentFeatures());
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. .github/workflows/label-approved.yml

          uses: astral-sh/setup-uv@v3
          with:
            version: "0.4.15"
            enable-cache: true
            cache-dependency-glob: |
                requirements**.txt
                pyproject.toml
        - name: Install GitHub Actions dependencies
          run: uv pip install -r requirements-github-actions.txt
        - name: Label Approved
          run: python ./scripts/label_approved.py
          env:
            TOKEN: ${{ secrets.GITHUB_TOKEN }}
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Oct 12 13:58:30 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. WORKSPACE

        default_python_version = "system",
        local_wheel_dist_folder = "dist",
        local_wheel_inclusion_list = [
            "tensorflow*",
            "tf_nightly*",
        ],
        local_wheel_workspaces = ["//:WORKSPACE"],
        requirements = {
            "3.9": "//:requirements_lock_3_9.txt",
            "3.10": "//:requirements_lock_3_10.txt",
            "3.11": "//:requirements_lock_3_11.txt",
            "3.12": "//:requirements_lock_3_12.txt",
        },
    )
    
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Fri Oct 11 16:49:28 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. ci/official/requirements_updater/README.md

    acknowledged by the Bazel requirements updater command as well. For example, if
    you wish the updater to consider pre-release versions simply pass `--pre`
    argument to the bazel command:
    
    ```
    bazel run //ci/official/requirements_updater:requirements.update --repo_env=HERMETIC_PYTHON_VERSION=3.12 -- --pre
    ```
    
    If you need to upgrade all of the packages in requirements lock file, just pass
    the `--upgrade` parameter:
    
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Sat Jun 29 00:19:18 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top