Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 81 - 90 of 166 for instalar (0.11 seconds)

  1. docs/fr/docs/tutorial/security/first-steps.md

    ## Exécuter { #run-it }
    
    /// info
    
    Le package [`python-multipart`](https://github.com/Kludex/python-multipart) est installé automatiquement avec **FastAPI** lorsque vous exécutez la commande `pip install "fastapi[standard]"`.
    
    Cependant, si vous utilisez la commande `pip install fastapi`, le package `python-multipart` n'est pas inclus par défaut.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 9.3K bytes
    - Click Count (0)
  2. src/main/resources/fess_message_it.properties

    errors.failed_to_print_thread_dump=Impossibile stampare il dump del thread.
    errors.file_is_not_supported={0} non è supportato.
    errors.plugin_file_is_not_found={0} non trovato.
    errors.failed_to_install_plugin=Impossibile installare {0}.
    errors.failed_to_find_plugins=Nessun plugin disponibile trovato.
    errors.failed_to_process_sso_request=Impossibile elaborare la richiesta: {0}
    
    errors.property_required={0} è obbligatorio.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 13.3K bytes
    - Click Count (0)
  3. Makefile

    test-root-disable: install-race
    	@echo "Running minio root lockdown tests"
    	@env bash $(PWD)/buildscripts/disable-root.sh
    
    test-ilm: install-race
    	@echo "Running ILM tests"
    	@env bash $(PWD)/docs/bucket/replication/setup_ilm_expiry_replication.sh
    
    test-ilm-transition: install-race
    	@echo "Running ILM tiering tests with healing"
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Apr 27 00:44:22 GMT 2025
    - 11.2K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/helper/PluginHelper.java

        }
    
        /**
         * Installs an artifact based on its type.
         *
         * @param artifact the artifact to install
         */
        public void installArtifact(final Artifact artifact) {
            switch (artifact.getType()) {
            case THEME:
                install(artifact);
                ComponentUtil.getThemeHelper().install(artifact);
                break;
            default:
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Mar 04 15:19:41 GMT 2026
    - 25.1K bytes
    - Click Count (0)
  5. docs/fr/docs/tutorial/handling-errors.md

    Mais si vous en aviez besoin pour un scénario avancé, vous pouvez ajouter des en-têtes personnalisés :
    
    {* ../../docs_src/handling_errors/tutorial002_py310.py hl[14] *}
    
    ## Installer des gestionnaires d'exception personnalisés { #install-custom-exception-handlers }
    
    Vous pouvez ajouter des gestionnaires d'exception personnalisés avec [les mêmes utilitaires d'exception de Starlette](https://www.starlette.dev/exceptions/).
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 10K bytes
    - Click Count (0)
  6. docs/tr/docs/deployment/concepts.md

    Uygulamanızın startup'ta çalıştığından emin olmaya benzer şekilde, hatalardan sonra **yeniden başlatıldığından** da emin olmak istersiniz.
    
    ### Hata Yaparız { #we-make-mistakes }
    
    Biz insanlar sürekli **hata** yaparız. Yazılımın neredeyse *her zaman* farklı yerlerinde gizli **bug**'lar vardır. 🐛
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 19.2K bytes
    - Click Count (0)
  7. docs/fr/docs/advanced/generate-clients.md

    ```sh
    npx @hey-api/openapi-ts -i http://localhost:8000/openapi.json -o src/client
    ```
    
    Cela générera un SDK TypeScript dans `./src/client`.
    
    Vous pouvez apprendre à [installer `@hey-api/openapi-ts`](https://heyapi.dev/openapi-ts/get-started) et lire à propos du [résultat généré](https://heyapi.dev/openapi-ts/output) sur leur site.
    
    ### Utiliser le SDK { #using-the-sdk }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 11K bytes
    - Click Count (0)
  8. docs/tr/docs/help-fastapi.md

    Eğer insanların sorularına çok yardım ederseniz, resmi bir [FastAPI Expert](fastapi-people.md#fastapi-experts) olabilirsiniz. 🎉
    
    Şunu unutmayın: en önemli nokta, nazik olmaya çalışmak. İnsanlar çoğu zaman biriken stresle geliyor ve birçok durumda soruyu en iyi şekilde sormuyor; yine de elinizden geldiğince nazik olmaya çalışın. 🤗
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 13.9K bytes
    - Click Count (0)
  9. ci/devinfra/docker/windows2022/Dockerfile

    RUN Add-Content -Path C:\tools\msys64\etc\pacman.d\mirrorlist.msys -Value 'SigLevel = Never'
    
    # Install pacman packages.
    RUN C:\tools\msys64\usr\bin\bash.exe -lc \
      'pacman --noconfirm -Syy curl git patch vim unzip zip'
    
    # Install multiple Pythons, but only add one of them to PATH.
    RUN function Install-Python { \
            param( \
                [string]$version, \
                [int]$prependPath \
            ) \
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Wed Mar 04 19:50:57 GMT 2026
    - 10.4K bytes
    - Click Count (0)
  10. Vagrantfile

        name,
        update_command: 'yum check-update',
        update_tracking_file: '/var/cache/yum/last_update',
        install_command: 'yum install -y'
      )
    end
    
    def rpm_docker(config)
      config.vm.provision 'install Docker using yum', type: 'shell', inline: <<-SHELL
        # Install prerequisites
        yum install -y yum-utils device-mapper-persistent-data lvm2
    
        # Add repository
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Feb 17 17:41:23 GMT 2021
    - 14.9K bytes
    - Click Count (0)
Back to Top