- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 16 for uv (0.01 sec)
-
.github/workflows/build-docs.yml
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Oct 12 12:27:19 UTC 2024 - 4.1K bytes - Viewed (0) -
docs/pt/docs/virtual-environments.md
/// //// //// tab | `uv` Se você tiver o <a href="https://github.com/astral-sh/uv" class="external-link" target="_blank">`uv`</a> instalado, poderá usá-lo para criar um ambiente virtual. <div class="termy"> ```console $ uv venv ``` </div> /// tip | "Dica" Por padrão, `uv` criará um ambiente virtual em um diretório chamado `.venv`.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Sep 10 10:37:13 UTC 2024 - 22.6K bytes - Viewed (0) -
docs/en/docs/virtual-environments.md
/// //// //// tab | `uv` If you have <a href="https://github.com/astral-sh/uv" class="external-link" target="_blank">`uv`</a> installed, you can use it to create a virtual environment. <div class="termy"> ```console $ uv venv ``` </div> /// tip By default, `uv` will create a virtual environment in a directory called `.venv`.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Aug 24 03:16:23 UTC 2024 - 21.7K bytes - Viewed (0) -
.github/workflows/smokeshow.yml
- uses: actions/setup-python@v5 with: python-version: '3.9' - name: Setup uv uses: astral-sh/setup-uv@v3 with: version: "0.4.15" enable-cache: true cache-dependency-glob: | requirements**.txt pyproject.toml - run: uv pip install -r requirements-github-actions.txt - uses: actions/download-artifact@v4 with:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Oct 12 13:47:46 UTC 2024 - 1.4K bytes - Viewed (0) -
.github/workflows/test.yml
python-version: "3.11" - name: Setup uv uses: astral-sh/setup-uv@v3 with: version: "0.4.15" enable-cache: true cache-dependency-glob: | requirements**.txt pyproject.toml - name: Install Dependencies run: uv pip install -r requirements-tests.txt - name: Install Pydantic v2 run: uv pip install --upgrade "pydantic>=2.0.2,<3.0.0"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Oct 12 12:27:19 UTC 2024 - 4.2K bytes - Viewed (0) -
.github/workflows/notify-translations.yml
- uses: actions/checkout@v4 - uses: actions/checkout@v4 - name: Set up Python uses: actions/setup-python@v5 with: python-version: "3.11" - name: Setup uv uses: astral-sh/setup-uv@v3 with: version: "0.4.15" enable-cache: true cache-dependency-glob: | requirements**.txt pyproject.toml # Allow debugging with tmate
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Oct 12 12:27:19 UTC 2024 - 1.4K bytes - Viewed (0) -
.github/workflows/label-approved.yml
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Oct 12 13:58:30 UTC 2024 - 1.1K bytes - Viewed (0) -
cmd/xl-storage-free-version.go
func (x *xlMetaV2) AddFreeVersion(fi FileInfo) error { var uv uuid.UUID var err error switch fi.VersionID { case "", nullVersionID: default: uv, err = uuid.Parse(fi.VersionID) if err != nil { return err } } for i, version := range x.versions { if version.header.VersionID != uv || version.header.Type != ObjectType { continue } // if uv has tiered content we add a
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Mar 02 05:11:03 UTC 2024 - 3.4K bytes - Viewed (0) -
.github/workflows/deploy-docs.yml
with: python-version: "3.11" - name: Setup uv 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: Deploy Docs Status Pending
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Oct 26 09:37:59 UTC 2024 - 2.6K bytes - Viewed (0) -
cmd/xl-storage-format-v2.go
fi.VersionID = "" } var uv uuid.UUID var err error if fi.VersionID != "" { uv, err = uuid.Parse(fi.VersionID) if err != nil { return "", errFileVersionNotFound } } var ventry xlMetaV2Version if fi.Deleted { ventry = xlMetaV2Version{ Type: DeleteType, DeleteMarker: &xlMetaV2DeleteMarker{ VersionID: uv, ModTime: fi.ModTime.UnixNano(),
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 22 15:30:50 UTC 2024 - 64K bytes - Viewed (1)