Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 163 for Upgraded (0.04 sec)

  1. docs/en/docs/deployment/versions.md

    You should add tests for your app.
    
    With **FastAPI** it's very easy (thanks to Starlette), check the docs: [Testing](../tutorial/testing.md){.internal-link target=_blank}
    
    After you have tests, then you can upgrade the **FastAPI** version to a more recent one, and make sure that all your code is working correctly by running your tests.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/ConsoleIcon.java

     * under the License.
     */
    package org.apache.maven.cling.invoker.mvnup;
    
    import java.nio.charset.Charset;
    
    import org.jline.terminal.Terminal;
    
    /**
     * Console icons for Maven upgrade tool output.
     * Each icon has a Unicode character and an ASCII fallback.
     * The appropriate representation is chosen based on the terminal's charset capabilities.
     */
    public enum ConsoleIcon {
        /**
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Jul 15 09:35:08 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/artifact/repository/RepositoryCache.java

     * for exclusive consumption by the repository system and is opaque to the cache implementation.
     *
     */
    @Deprecated
    //
    // Used by Tycho and will break users and force them to upgrade to Maven 3.1 so we should really leave
    // this here, possibly indefinitely.
    //
    public interface RepositoryCache {
    
        /**
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. docs/ru/docs/virtual-environments.md

    <div class="termy">
    
    ```console
    $ python -m pip install --upgrade pip
    
    ---> 100%
    ```
    
    </div>
    
    /// tip | Подсказка
    
    Иногда при попытке обновить pip вы можете получить ошибку **`No module named pip`**.
    
    Если это произошло, установите и обновите pip с помощью команды ниже:
    
    <div class="termy">
    
    ```console
    $ python -m ensurepip --upgrade
    
    ---> 100%
    ```
    
    </div>
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Thu Dec 11 21:25:03 UTC 2025
    - 34.2K bytes
    - Viewed (0)
  5. src/main/resources/fess_message_id.properties

    errors.no_user_for_changing_password=Kata sandi saat ini tidak benar.
    errors.failed_to_change_password=Gagal mengubah kata sandi Anda.
    errors.unknown_version_for_upgrade=Versi untuk upgrade tidak diketahui.
    errors.failed_to_upgrade_from=Gagal melakukan upgrade dari {0}.
    errors.failed_to_reindex=Gagal memulai pengindeksan ulang dari {0} ke {1}.
    errors.failed_to_read_request_file=Gagal membaca berkas permintaan: {0}
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 07 14:12:58 UTC 2025
    - 11.8K bytes
    - Viewed (0)
  6. docs/zh/docs/deployment/docker.md

    ///
    
    <details>
    <summary>Dockerfile Preview 👀</summary>
    
    ```Dockerfile
    FROM python:3.9
    
    WORKDIR /code
    
    COPY ./requirements.txt /code/requirements.txt
    
    RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
    
    COPY ./app /code/app
    
    CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80"]
    
    # If running behind a proxy like Nginx or Traefik add --proxy-headers
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Mon Aug 12 21:47:53 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  7. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/CommonsCliOptions.java

                        .desc("Launch the Maven Encryption tool (script option).")
                        .get());
                options.addOption(Option.builder()
                        .longOpt(UPGRADE)
                        .desc("Launch the Maven Upgrade tool (script option).")
                        .get());
                options.addOption(Option.builder()
                        .longOpt(SHELL)
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Oct 08 07:36:42 UTC 2025
    - 21.3K bytes
    - Viewed (0)
  8. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/UpgradeInvoker.java

                context.style = new AttributedStyle();
                context.addInHeader(
                        context.style.italic().bold().foreground(Colors.rgbColor("green")),
                        "Maven Upgrade " + CLIReportingUtils.showVersionMinimal());
                context.addInHeader("Tool for upgrading Maven projects and dependencies.");
                context.addInHeader("This tool is part of Apache Maven 4 distribution.");
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jun 11 13:14:09 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  9. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/CheckTest.java

                            .thenReturn(UpgradeResult.empty());
    
                    checkGoal.execute(context);
    
                    // Verify that the Check-specific header is logged
                    verify(context.logger).info("Maven Upgrade Tool - Check");
                } finally {
                    // Clean up - delete all files in the directory first
                    try {
                        Files.walk(tempDir)
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Jun 07 06:22:47 UTC 2025
    - 4.9K bytes
    - Viewed (0)
  10. docs/de/docs/deployment/docker.md

    ///
    
    <details>
    <summary>Dockerfile-Vorschau 👀</summary>
    
    ```Dockerfile
    FROM python:3.9
    
    WORKDIR /code
    
    COPY ./requirements.txt /code/requirements.txt
    
    RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
    
    COPY ./app /code/app
    
    CMD ["fastapi", "run", "app/main.py", "--port", "80"]
    
    # Wenn Sie hinter einem Proxy wie Nginx oder Traefik sind, fügen Sie --proxy-headers hinzu
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 02 17:32:56 UTC 2025
    - 33.6K bytes
    - Viewed (0)
Back to top