- Sort Score
- Num 10 results
- Language All
Results 311 - 320 of 1,199 for Parametre (0.09 seconds)
-
docs/en/docs/tutorial/testing.md
E.g.: * To pass a *path* or *query* parameter, add it to the URL itself. * To pass a JSON body, pass a Python object (e.g. a `dict`) to the parameter `json`. * If you need to send *Form Data* instead of JSON, use the `data` parameter instead. * To pass *headers*, use a `dict` in the `headers` parameter. * For *cookies*, a `dict` in the `cookies` parameter.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 5.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/crawler/util/FieldConfigs.java
import org.codelibs.fess.Constants; import org.dbflute.optional.OptionalThing; /** * Utility class for managing field configurations with parameter mappings. * This class provides functionality to retrieve and manage field-specific configurations * from a parameter map. */ public class FieldConfigs { /** * Map containing field names as keys and their corresponding configuration values as values. */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 4.3K bytes - Click Count (0) -
android/guava/src/com/google/common/graph/DirectedNetworkConnections.java
import java.util.Collections; import java.util.Map; import java.util.Set; /** * An implementation of {@link NetworkConnections} for directed networks. * * @author James Sexton * @param <N> Node parameter type * @param <E> Edge parameter type */ final class DirectedNetworkConnections<N, E> extends AbstractDirectedNetworkConnections<N, E> { DirectedNetworkConnections(Map<E, N> inEdgeMap, Map<E, N> outEdgeMap, int selfLoopCount) {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Dec 21 03:10:51 GMT 2024 - 2.1K bytes - Click Count (0) -
docs/en/docs/reference/websockets.md
# WebSockets When defining WebSockets, you normally declare a parameter of type `WebSocket` and with it you can read data from the client and send data to it. Read more about it in the [FastAPI docs for WebSockets](https://fastapi.tiangolo.com/advanced/websockets/) It is provided directly by Starlette, but you can import it from `fastapi`: ```python from fastapi import WebSocket ``` /// tip
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Feb 04 12:41:54 GMT 2026 - 2K bytes - Click Count (0) -
docs/pt/docs/advanced/security/oauth2-scopes.md
Nós também declaramos um parâmetro especial do tipo `SecurityScopes`, importado de `fastapi.security`. A classe `SecurityScopes` é semelhante à classe `Request` (`Request` foi utilizada para obter o objeto da requisição diretamente). {* ../../docs_src/security/tutorial005_an_py310.py hl[9,106] *} ## Utilize os `scopes` { #use-the-scopes } O parâmetro `security_scopes` será do tipo `SecurityScopes`.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 14.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/SearchHelper.java
* scroll search, and bulk operations. It handles search request parameter processing, * query building, response formatting, and search log management. * * Key features: * - Document search with pagination and faceting * - Scroll search for large result sets * - Document retrieval by ID * - Bulk document updates * - Search parameter serialization/deserialization for cookies
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 20 05:56:45 GMT 2025 - 36.3K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/SmbFile.java
* <code>java.io.File</code> usage; a '/' at the beginning of the second * parameter will still use the server component of the first parameter. The * examples below illustrate the resulting URLs when this second contructor * argument is used. * * <table border="1"> * <caption>Examples Of SMB URLs When Augmented With A Second Constructor Parameter</caption> * <tr> * <td colspan="3">
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 112.2K bytes - Click Count (0) -
fastapi/security/api_key.py
return api_key class APIKeyQuery(APIKeyBase): """ API key authentication using a query parameter. This defines the name of the query parameter that should be provided in the request with the API key and integrates that into the OpenAPI documentation. It extracts the key value sent in the query parameter automatically and provides it as the dependency result. But it doesn't define how to send that API key to the client.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sun Mar 15 11:44:39 GMT 2026 - 9.6K bytes - Click Count (1) -
docs/fr/docs/features.md
* Documentation automatique des modèles de données avec [**JSON Schema**](https://json-schema.org/) (puisque OpenAPI est lui-même basé sur JSON Schema).
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 10.7K bytes - Click Count (0) -
docs/fr/docs/tutorial/request-forms-and-files.md
``` /// ## Importer `File` et `Form` { #import-file-and-form } {* ../../docs_src/request_forms_and_files/tutorial001_an_py310.py hl[3] *} ## Définir des paramètres `File` et `Form` { #define-file-and-form-parameters } Créez des paramètres de fichier et de formulaire de la même manière que pour `Body` ou `Query` : {* ../../docs_src/request_forms_and_files/tutorial001_an_py310.py hl[10:12] *}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 1.6K bytes - Click Count (0)