Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 41 - 50 of 508 for normales (0.53 seconds)

  1. compat/maven-model-builder/src/main/java/org/apache/maven/model/path/UrlNormalizer.java

     */
    package org.apache.maven.model.path;
    
    /**
     * Normalizes a URL to remove the ugly parent references "../" that got potentially inserted by URL adjustment during
     * model inheritance.
     *
     * @deprecated use {@code org.apache.maven.api.services.ModelBuilder} instead
     */
    @Deprecated(since = "4.0.0")
    public interface UrlNormalizer {
    
        /**
         * Normalizes the specified URL.
         *
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Feb 25 08:27:34 GMT 2025
    - 1.3K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/groovy/elasticsearch.formatting.gradle

                       'src/*/java/org/elasticsearch/search/aggregations/**/*.java',
                       'src/*/java/org/elasticsearch/snapshots/**/*.java'
              } else {
                // Normally this isn't necessary, but we have Java sources in
                // non-standard places
                target 'src/**/*.java'
              }
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Sep 09 18:53:35 GMT 2021
    - 9.1K bytes
    - Click Count (0)
  3. docs/en/docs/tutorial/handling-errors.md

    * The client doesn't have enough privileges for that operation.
    * The client doesn't have access to that resource.
    * The item the client was trying to access doesn't exist.
    * etc.
    
    In these cases, you would normally return an **HTTP status code** in the range of **400** (from 400 to 499).
    
    This is similar to the 200 HTTP status codes (from 200 to 299). Those "200" status codes mean that somehow there was a "success" in the request.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 8.9K bytes
    - Click Count (0)
  4. build-tools-internal/src/main/resources/templates/breaking-changes.asciidoc

    === Breaking changes
    
    The following changes in {es} ${majorDotMinor} might affect your applications
    and prevent them from operating normally.
    Before upgrading to ${majorDotMinor} review these changes and take the described steps
    to mitigate the impact.
    
    NOTE: Breaking changes introduced in minor versions are
    normally limited to security and bug fixes.
    Significant changes in behavior are deprecated in a minor release and
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Jul 28 11:09:58 GMT 2021
    - 2.9K bytes
    - Click Count (0)
  5. docs/en/docs/advanced/using-request-directly.md

    Although any other parameter declared normally (for example, the body with a Pydantic model) would still be validated, converted, annotated, etc.
    
    But there are specific cases where it's useful to get the `Request` object.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 2.3K bytes
    - Click Count (0)
  6. docs/en/docs/management-tasks.md

    * `refactor`: Refactors
        * This is normally for changes to the internal code that don't change the behavior. Normally it improves maintainability, or enables future features, etc.
    * `upgrade`: Upgrades
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Mon Mar 23 13:59:26 GMT 2026
    - 10.7K bytes
    - Click Count (0)
  7. docs/de/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md

    ### Exceptions auslösen { #raise-exceptions }
    
    Die Abhängigkeiten können Exceptions `raise`n, genau wie normale Abhängigkeiten:
    
    {* ../../docs_src/dependencies/tutorial006_an_py310.py hl[10,15] *}
    
    ### Rückgabewerte { #return-values }
    
    Und sie können Werte zurückgeben oder nicht, die Werte werden nicht verwendet.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 3.5K bytes
    - Click Count (0)
  8. docs/pt/docs/advanced/stream-data.md

    ### Funções de operação de rota não assíncronas { #non-async-path-operation-functions }
    
    Você também pode usar funções `def` normais (sem `async`) e usar `yield` da mesma forma.
    
    {* ../../docs_src/stream_data/tutorial001_py310.py ln[26:29] hl[27] *}
    
    ### Sem anotação { #no-annotation }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:13 GMT 2026
    - 5.7K bytes
    - Click Count (0)
  9. fastapi/openapi/docs.py

            Doc(
                """
                The URL of the favicon to use. It is normally shown in the browser tab.
                """
            ),
        ] = "https://fastapi.tiangolo.com/img/favicon.png",
        oauth2_redirect_url: Annotated[
            str | None,
            Doc(
                """
                The OAuth2 redirect URL, it is normally automatically handled by FastAPI.
    
                Read more about it in the
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 24 09:28:10 GMT 2026
    - 12.1K bytes
    - Click Count (0)
  10. build-logic/documentation/src/main/groovy/gradlebuild/docs/UserGuideTransformTask.groovy

            doc.documentElement.depthFirst().findAll { it.name() == 'programlisting' || it.name() == 'screen' }.each {Element element ->
                element.setTextContent(normalise(element.getTextContent()))
            }
        }
    
        static String normalise(String content) {
            content.replace('\t', '    ').stripIndent().replace('\r\n', '\n')
        }
    
        def transformApiLinks(Document doc) {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri May 16 07:58:02 GMT 2025
    - 5.6K bytes
    - Click Count (0)
Back to Top