Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 162 for Upgrades (0.04 sec)

  1. docs/fr/llm-prompt.md

    * «query parameter»: «paramètre de requête»
    
    * «the `Request`»: «`Request`» (keep as code identifier)
    * «the `Response`»: «`Response`» (keep as code identifier)
    
    * «deployment»: «déploiement»
    * «to upgrade»: «mettre à niveau»
    
    * «deprecated»: «déprécié»
    * «to deprecate»: «déprécier»
    
    * «cheat sheet»: «aide-mémoire»
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 10:41:43 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  2. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/ParserRequest.java

            return builder(Tools.MVNSHELL_CMD, Tools.MVNSHELL_NAME, args, messageBuilderFactory);
        }
    
        /**
         * Creates a new Builder instance for constructing a Maven Upgrade Tool ParserRequest.
         *
         * @param args the command-line arguments
         * @param messageBuilderFactory the factory for creating message builders
         * @return a new Builder instance
         */
        @Nonnull
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Jun 07 06:22:47 UTC 2025
    - 15.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. impl/maven-core/src/site/apt/inheritance.apt

      maven occur, the maven inheritance model must be pinned against a particular
      modelVersion. This is required so that a change from modelVersion 4.0.0 to
      4.1.0 doesn't cause compatibility problems with users who have not upgraded
      their projects. It also allows for a certain amount of legacy support into the
      future. Therefore, we should rename this file from pom.xml in the maven-core
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. 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)
Back to top