Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 201 for technical (0.04 sec)

  1. docs/en/docs/tutorial/path-params-numeric-validations.md

    `Query`, `Path`, and other classes you will see later are subclasses of a common `Param` class.
    
    All of them share the same parameters for additional validation and metadata you have seen.
    
    ///
    
    /// note | Technical Details
    
    When you import `Query`, `Path` and others from `fastapi`, they are actually functions.
    
    That when called, return instances of classes of the same name.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  2. docs/en/docs/_llm-test.md

    ////
    
    ## Tabs and colored boxes { #tabs-and-colored-boxes }
    
    //// tab | Test
    
    /// info
    Some text
    ///
    
    /// note
    Some text
    ///
    
    /// note | Technical details
    Some text
    ///
    
    /// check
    Some text
    ///
    
    /// tip
    Some text
    ///
    
    /// warning
    Some text
    ///
    
    /// danger
    Some text
    ///
    
    ////
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Thu Dec 11 14:48:47 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/dependencies/dependencies-with-yield.md

    To do this, use `yield` instead of `return`, and write the extra steps (code) after.
    
    /// tip
    
    Make sure to use `yield` one single time per dependency.
    
    ///
    
    /// note | Technical Details
    
    Any function that is valid to use with:
    
    * <a href="https://docs.python.org/3/library/contextlib.html#contextlib.contextmanager" class="external-link" target="_blank">`@contextlib.contextmanager`</a> or
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  4. docs/pt/docs/async.md

    De qualquer forma, em ambos os casos acima, FastAPI irá trabalhar assincronamente e ser extremamente rápido.
    
    Mas, seguindo os passos acima, ele será capaz de fazer algumas otimizações de performance.
    
    ## Detalhes Técnicos { #technical-details }
    
    Versões modernas de Python têm suporte para **"código assíncrono"** usando algo chamado **"corrotinas"**, com sintaxe **`async` e `await`**.
    
    Vamos ver aquela frase por partes nas seções abaixo:
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Nov 12 16:23:57 UTC 2025
    - 25.8K bytes
    - Viewed (0)
  5. docs/pt/docs/advanced/events.md

    Por causa disso, agora é recomendado usar o `lifespan`, como explicado acima.
    
    ## Detalhes técnicos { #technical-details }
    
    Apenas um detalhe técnico para nerds curiosos. 🤓
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  6. impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginDependenciesResolver.java

    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    /**
     * Assists in resolving the dependencies of a plugin. <strong>Warning:</strong> This is an internal utility class that
     * is only public for technical reasons, it is not part of the public API. In particular, this class can be changed or
     * deleted without prior notice.
     *
     * @since 3.0
     */
    @Named
    @Singleton
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Sep 29 15:32:43 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  7. docs/pt/docs/tutorial/background-tasks.md

    E então outra tarefa em segundo plano gerada na *função de operação de rota* escreverá uma mensagem usando o parâmetro de path `email`.
    
    ## Detalhes técnicos { #technical-details }
    
    A classe `BackgroundTasks` vem diretamente de <a href="https://www.starlette.dev/background/" class="external-link" target="_blank">`starlette.background`</a>.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  8. api/maven-api-model/src/main/mdo/maven.mdo

      specific language governing permissions and limitations
      under the License.
    -->
    
    <!--
      | Improvements:
      |
      | o add specification element to a field, this would be more a technical description of
      |   what is allowed in the field.
      |
      | o validators: there could be several levels of validation. Simple type validation could
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Nov 26 03:07:35 UTC 2025
    - 133.3K bytes
    - Viewed (0)
  9. compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/MetadataBridge.java

    import org.eclipse.aether.metadata.MergeableMetadata;
    import org.eclipse.aether.metadata.Metadata;
    
    /**
     * <strong>Warning:</strong> This is an internal utility class that is only public for technical reasons, it is not part
     * of the public API. In particular, this class can be changed or deleted without prior notice.
     *
     */
    @Deprecated
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  10. compat/maven-embedder/src/test/java/org/apache/maven/cli/transfer/SimplexTransferListenerTest.java

            DefaultRepositorySystemSession session = new DefaultRepositorySystemSession(h -> false); // no close handle
    
            // for technical reasons we cannot throw here, even if delegate does cancel transfer
            listener.transferInitiated(event(session, resource, TransferEvent.EventType.INITIATED));
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sun Dec 01 19:41:22 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top