- Sort Score
- Num 10 results
- Language All
Results 101 - 110 of 279 for Requirement (0.13 seconds)
-
api/maven-api-core/src/main/java/org/apache/maven/api/Toolchain.java
/** * Let the toolchain decide if it matches requirements defined * in the toolchain plugin configuration. * * @param requirements key value pair, may not be {@code null} * @return {@code true} if the requirements match, otherwise {@code false} */ boolean matchesRequirements(Map<String, String> requirements);Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 11 12:33:57 GMT 2025 - 3.4K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainManager.java
public interface ToolchainManager extends Service { /** * Retrieves toolchains matching the specified type and requirements. * * @param session The Maven session context * @param type The type of toolchain (e.g., "jdk", "compiler") * @param requirements Key-value pairs specifying toolchain requirements (e.g., "version": "11") * @return List of matching toolchains, never nullCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 11 12:33:57 GMT 2025 - 3.5K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/toolchain/ToolchainManager.java
/** * Select all toolchains available in user settings matching the type and requirements, * independently from <code>maven-toolchains-plugin</code>. * * @param session the Maven session, must not be {@code null} * @param type the type, must not be {@code null} * @param requirements the requirements, may be {@code null} * @return the matching toolchains, never {@code null} * @since 3.3.0Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Feb 12 13:13:28 GMT 2025 - 2.4K bytes - Click Count (0) -
docs/ru/docs/deployment/docker.md
``` . ├── Dockerfile ├── main.py └── requirements.txt ``` Тогда в `Dockerfile` нужно изменить пути копирования: ```{ .dockerfile .annotate hl_lines="10 13" } FROM python:3.9 WORKDIR /code COPY ./requirements.txt /code/requirements.txt RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt # (1)! COPY ./main.py /code/ # (2)!Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Tue Sep 30 11:24:39 GMT 2025 - 44.7K bytes - Click Count (0) -
docs/ru/docs/virtual-environments.md
---> 100% ``` </div> //// ### Установка из `requirements.txt` { #install-from-requirements-txt } Если у вас есть `requirements.txt`, вы можете использовать его для установки пакетов. //// tab | `pip` <div class="termy"> ```console $ pip install -r requirements.txt ---> 100% ``` </div> //// //// tab | `uv`Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Thu Dec 11 21:25:03 GMT 2025 - 34.2K bytes - Click Count (0) -
.github/workflows/people.yml
uses: astral-sh/setup-uv@v7 with: version: "0.4.15" enable-cache: true cache-dependency-glob: | requirements**.txt pyproject.toml - name: Install Dependencies run: uv pip install -r requirements-github-actions.txt # Allow debugging with tmate - name: Setup tmate session uses: mxschmitt/action-tmate@v3Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Fri Nov 21 13:03:21 GMT 2025 - 1.6K bytes - Click Count (0) -
.github/workflows/smokeshow.yml
with: python-version: '3.13' - name: Setup uv uses: astral-sh/setup-uv@v7 with: cache-dependency-glob: | requirements**.txt pyproject.toml - run: uv pip install -r requirements-github-actions.txt - uses: actions/download-artifact@v6 with: name: coverage-html path: htmlcovCreated: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Tue Dec 16 17:36:42 GMT 2025 - 1.6K bytes - Click Count (0) -
.github/workflows/notify-translations.yml
uses: astral-sh/setup-uv@v7 with: version: "0.4.15" enable-cache: true cache-dependency-glob: | requirements**.txt pyproject.toml - name: Install Dependencies run: uv pip install -r requirements-github-actions.txt # Allow debugging with tmate - name: Setup tmate session uses: mxschmitt/action-tmate@v3Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Fri Nov 21 13:03:21 GMT 2025 - 1.7K bytes - Click Count (0) -
CHANGELOG/CHANGELOG-1.31.md
(e.g. when the Pod is controlled by a custom CRD). ([#124798](https://github.com/kubernetes/kubernetes/pull/124798), [@mimowo](https://github.com/mimowo)) [SIG Apps and Testing] - Dropped the additional rule requirement (cronjobs/finalizers) for roles using kubectl create cronjobs to ensure backward compatibility. ([#124883](https://github.com/kubernetes/kubernetes/pull/124883), [@ardaguclu](https://github.com/ardaguclu))
Created: Fri Dec 26 09:05:12 GMT 2025 - Last Modified: Wed Nov 12 11:33:21 GMT 2025 - 451.9K bytes - Click Count (0) -
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` 디렉터리를 위치시킬 것입니다.
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Sat Nov 09 16:39:20 GMT 2024 - 42.7K bytes - Click Count (0)