- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 1,376 for operativos (0.05 sec)
-
cmd/admin-router.go
// Info operations adminRouter.Methods(http.MethodGet).Path(adminVersion + "/info").HandlerFunc(adminMiddleware(adminAPI.ServerInfoHandler, traceAllFlag, noObjLayerFlag)) adminRouter.Methods(http.MethodGet, http.MethodPost).Path(adminVersion + "/inspect-data").HandlerFunc(adminMiddleware(adminAPI.InspectDataHandler, noGZFlag, traceHdrsS3HFlag)) // StorageInfo operations
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Apr 16 07:34:24 UTC 2025 - 26.7K bytes - Viewed (0) -
src/test/java/jcifs/smb/CriticalPerformanceTest.java
double avgOpTimeNs = totalTime.get() / (double) operations.get(); System.out.printf("Encryption Byte Tracking Performance: %d ops in %.2f ms%n", operations.get(), overallTimeMs); System.out.printf(" Avg atomic operation time: %.2f ns%n", avgOpTimeNs); // Verify lock-free performance (allowing for JVM overhead) assertTrue(avgOpTimeNs < 5000, "Atomic operations should be reasonably fast (no lock contention)");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 15.3K bytes - Viewed (0) -
docs/es/docs/tutorial/bigger-applications.md
Y podemos agregar una lista de `dependencies` que se añadirá a todas las *path operations* en el router y se ejecutarán/solucionarán por cada request que les haga. /// tip | Consejo
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun May 11 13:37:26 UTC 2025 - 19.3K bytes - Viewed (0) -
docs/ja/docs/tutorial/dependencies/index.md
## 簡単な使い方 見てみると、*path*と*operation*が一致した時に*path operation関数*が宣言されていて、**FastAPI** が正しいパラメータで関数を呼び出してリクエストからデータを抽出する処理をしています。 実は、すべての(あるいはほとんどの)Webフレームワークは、このように動作します。 これらの関数を直接呼び出すことはありません。これらの関数はフレームワーク(この場合は、**FastAPI**)によって呼び出されます。 依存性注入システムでは、**FastAPI** に*path operation*もまた、*path operation関数*の前に実行されるべき他の何かに「依存」していることを伝えることができ、**FastAPI** がそれを実行し、結果を「注入」することを引き受けます。
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 9.6K bytes - Viewed (0) -
docs/es/docs/advanced/security/oauth2-scopes.md
* `security_scopes.scopes` contendrá `["me"]` para la *path operation* `read_users_me`, porque está declarado en la dependencia `get_current_active_user`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 13.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DataIndexHelper.java
/** * Inner thread class for executing data store crawling operations. * Each thread handles crawling for a single data configuration, * processing documents and updating the search index. * * <p>The thread manages:</p> * <ul> * <li>Data store initialization and document processing</li> * <li>Index update operations through callbacks</li> * <li>Error handling and failure logging</li>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaErrorHandler.java
return false; } /** * Execute an RDMA operation with automatic retry and error handling * * @param <T> the type of result returned by the operation * @param operation the operation to execute * @param connection the RDMA connection to use * @return operation result * @throws IOException if operation fails after all retries */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 10.5K bytes - Viewed (0) -
docs/fr/docs/tutorial/first-steps.md
* `GET` : pour lire de la donnée. * `PUT` : pour mettre à jour de la donnée. * `DELETE` : pour supprimer de la donnée. Donc, dans **OpenAPI**, chaque méthode HTTP est appelée une "opération". Nous allons donc aussi appeler ces dernières des "**opérations**". #### Définir un *décorateur d'opération de chemin* {* ../../docs_src/first_steps/tutorial001.py hl[6] *}
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 16:39:20 UTC 2024 - 10.1K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacMac.java
* * @param keyusage the Kerberos key usage number for this operation * @param key the encryption key to use for MAC calculation * @param data the data to calculate the MAC for * @return the calculated MAC bytes * @throws GeneralSecurityException if cryptographic operations fail */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 9K bytes - Viewed (0) -
docs/en/docs/tutorial/security/get-current-user.md
And all these thousands of *path operations* can be as small as 3 lines: {* ../../docs_src/security/tutorial002_an_py310.py hl[30:32] *} ## Recap { #recap } You can now get the current user directly in your *path operation function*. We are already halfway there. We just need to add a *path operation* for the user/client to actually send the `username` and `password`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 4K bytes - Viewed (0)