- Sort Score
- Num 10 results
- Language All
Results 71 - 80 of 907 for operativo (0.06 seconds)
-
docs/pt/docs/how-to/general.md
## Documentação para Depreciar uma *Operação de Rota* - OpenAPI { #documentation-deprecate-a-path-operation-openapi }Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Nov 12 16:23:57 GMT 2025 - 2.9K bytes - Click Count (0) -
docs/es/docs/tutorial/dependencies/global-dependencies.md
Similar a como puedes [agregar `dependencies` a los *path operation decorators*](dependencies-in-path-operation-decorators.md){.internal-link target=_blank}, puedes agregarlos a la aplicación de `FastAPI`. En ese caso, se aplicarán a todas las *path operations* en la aplicación: {* ../../docs_src/dependencies/tutorial012_an_py39.py hl[17] *}
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 17 20:41:43 GMT 2025 - 1.2K bytes - Click Count (0) -
docs/es/docs/tutorial/first-steps.md
Por ejemplo, cuando usas GraphQL normalmente realizas todas las acciones usando solo operaciones `POST`. /// ### Paso 4: define la **path operation function** { #step-4-define-the-path-operation-function } Esta es nuestra "**path operation function**": * **path**: es `/`. * **operation**: es `get`. * **function**: es la función debajo del "decorador" (debajo de `@app.get("/")`).Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 17 20:41:43 GMT 2025 - 13.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/index/writer/SuggestWriter.java
*/ SuggestWriterResult write(Client client, SuggestSettings settings, String index, SuggestItem[] items, boolean update); /** * Deletes a suggestion from the specified index. * * @param client the client to use for the operation * @param settings the settings to use for the operationCreated: Sat Dec 20 13:04:59 GMT 2025 - Last Modified: Fri Jul 04 14:00:23 GMT 2025 - 4.1K bytes - Click Count (0) -
src/main/java/jcifs/smb/SmbUnsupportedOperationException.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb; /** * Exception thrown when an unsupported SMB operation is attempted. * Indicates that the requested operation is not supported by the SMB server or protocol version. * * @author mbechler * */ public class SmbUnsupportedOperationException extends SmbException { /** * */Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 1.6K bytes - Click Count (0) -
fastapi/openapi/models.py
description: Optional[str] = None get: Optional[Operation] = None put: Optional[Operation] = None post: Optional[Operation] = None delete: Optional[Operation] = None options: Optional[Operation] = None head: Optional[Operation] = None patch: Optional[Operation] = None trace: Optional[Operation] = None servers: Optional[list[Server]] = None
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Sat Dec 27 12:54:56 GMT 2025 - 15.1K bytes - Click Count (0) -
docs/ja/docs/tutorial/dependencies/index.md
## 簡単な使い方 見てみると、*path*と*operation*が一致した時に*path operation関数*が宣言されていて、**FastAPI** が正しいパラメータで関数を呼び出してリクエストからデータを抽出する処理をしています。 実は、すべての(あるいはほとんどの)Webフレームワークは、このように動作します。 これらの関数を直接呼び出すことはありません。これらの関数はフレームワーク(この場合は、**FastAPI**)によって呼び出されます。 依存性注入システムでは、**FastAPI** に*path operation*もまた、*path operation関数*の前に実行されるべき他の何かに「依存」していることを伝えることができ、**FastAPI** がそれを実行し、結果を「注入」することを引き受けます。
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Mon Nov 18 02:25:44 GMT 2024 - 9.6K bytes - Click Count (0) -
docs/zh/docs/how-to/general.md
在文档界面中添加**路径操作**的标签和进行分组,请阅读 [教程 - 路径操作配置 - Tags 参数](../tutorial/path-operation-configuration.md#tags){.internal-link target=_blank} 文档。 ## 文档的概要和描述 - OpenAPI 在文档界面中添加**路径操作**的概要和描述,请阅读 [教程 - 路径操作配置 - Summary 和 Description 参数](../tutorial/path-operation-configuration.md#summary-description){.internal-link target=_blank} 文档。 ## 文档的响应描述 - OpenAPICreated: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Mon Apr 22 23:41:09 GMT 2024 - 2.1K bytes - Click Count (0) -
src/main/java/jcifs/util/SmbCircuitBreaker.java
} /** * Execute an operation with circuit breaker protection * * @param <T> return type * @param operation the operation to execute * @return operation result * @throws CIFSException if circuit is open or operation fails */ public <T> T executeWithCircuitBreaker(Supplier<T> operation) throws CIFSException { // Backpressure controlCreated: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 33.4K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/BufferCache.java
* * Performance: O(1) operation using concurrent queue * * @return a byte buffer for SMB operations * @throws IllegalStateException if buffer size exceeds maximum allowed */ static public byte[] getBuffer() { // Try to get from cache first - O(1) operation byte[] buf = bufferQueue.poll(); if (buf != null) {Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 4.2K bytes - Click Count (0)