Search Options

Results per page
Sort
Preferred Languages
Advance

Results 311 - 320 of 490 for declares (0.19 sec)

  1. docs/ru/docs/tutorial/schema-extra-example.md

    # Объявление примеров данных запроса { #declare-request-example-data }
    
    Вы можете объявлять примеры данных, которые ваше приложение может получать.
    
    Вот несколько способов, как это сделать.
    
    ## Дополнительные данные JSON Schema в моделях Pydantic { #extra-json-schema-data-in-pydantic-models }
    
    Вы можете объявить `examples` для модели Pydantic, которые будут добавлены в сгенерированную JSON Schema.
    
    //// tab | Pydantic v2
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Sep 30 11:24:39 UTC 2025
    - 14.8K bytes
    - Viewed (0)
  2. docs/de/docs/tutorial/path-params.md

    ///
    
    ### Einen *Pfad-Parameter* deklarieren { #declare-a-path-parameter }
    
    Dann erstellen Sie einen *Pfad-Parameter*, der als Typ die gerade erstellte Enum-Klasse hat (`ModelName`):
    
    {* ../../docs_src/path_params/tutorial005_py39.py hl[16] *}
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/lang/ClassUtil.java

            } catch (final NoSuchFieldException e) {
                throw new NoSuchFieldRuntimeException(clazz, name, e);
            }
        }
    
        /**
         * Returns a {@link Field} object that reflects the specified declared field of the class or interface represented by the {@link Class} object.
         *
         * @param clazz
         *            The {@link Class} object representing the class. Must not be {@literal null}.
         * @param name
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 25.6K bytes
    - Viewed (0)
  4. docs/es/docs/tutorial/cors.md

    En este caso, la lista tendría que incluir `http://localhost:8080` para que el frontend `:8080` funcione correctamente.
    
    ## Comodines { #wildcards }
    
    También es posible declarar la lista como `"*"` (un "comodín") para decir que todos están permitidos.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  5. docs/pt/docs/tutorial/background-tasks.md

    ## Injeção de dependências { #dependency-injection }
    
    Usar `BackgroundTasks` também funciona com o sistema de injeção de dependências; você pode declarar um parâmetro do tipo `BackgroundTasks` em vários níveis: em uma *função de operação de rota*, em uma dependência (dependable), em uma subdependência, etc.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  6. docs/pt/docs/advanced/behind-a-proxy.md

    O `root_path` é usado para lidar com esses casos específicos.
    
    E também é usado internamente ao montar sub-aplicações.
    
    Ter um proxy com um prefixo de path removido, nesse caso, significa que você poderia declarar um path em `/app` no seu código, mas então você adiciona uma camada no topo (o proxy) que colocaria sua aplicação **FastAPI** sob um path como `/api/v1`.
    
    Nesse caso, o path original `/app` seria servido em `/api/v1/app`.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 17.2K bytes
    - Viewed (0)
  7. impl/maven-core/src/main/resources/META-INF/maven/extension.xml

          | provoke linkage errors for wagons contributed by build extensions. We also don't need to exclude the wagons
          | from plugins. Plugins that use wagons directly and declare the corresponding dependency will simply use a
          | wagon from their plugin realm.
         -->
      </exportedArtifacts>
    </extension>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Mar 24 14:07:06 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  8. docs/de/docs/tutorial/body.md

    Da `description` und `tax` optional sind (mit `None` als Defaultwert), wäre folgendes JSON „`object`“ auch gültig:
    
    ```JSON
    {
        "name": "Foo",
        "price": 45.2
    }
    ```
    
    ## Als Parameter deklarieren { #declare-it-as-a-parameter }
    
    Um es zu Ihrer *Pfadoperation* hinzuzufügen, deklarieren Sie es auf die gleiche Weise, wie Sie Pfad- und Query-Parameter deklariert haben:
    
    {* ../../docs_src/body/tutorial001_py310.py hl[16] *}
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 24 10:28:19 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  9. docs/pt/docs/tutorial/cors.md

    Neste caso, a lista terá que incluir `http://localhost:8080` para o frontend `:8080` funcionar corretamente.
    
    ## Curingas { #wildcards }
    
    É possível declarar a lista como `"*"` (um "curinga") para dizer que tudo está permitido.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  10. build-logic/documentation/src/main/groovy/gradlebuild/docs/FindBrokenInternalLinks.java

            fw.println("#");
            fw.println("# The checker does not handle implicit section names, so they must be explicit and declared as: [[section-name]]");
            fw.println("#");
            fw.println("# The checker also rejects Markdown-style links, such as [text](https://example.com/something) as they do not render properly");
    
        }
    
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue May 27 09:07:14 UTC 2025
    - 18.1K bytes
    - Viewed (0)
Back to top