- Sort Score
- Num 10 results
- Language All
Results 1041 - 1050 of 1,959 for operativos (0.09 seconds)
-
src/main/java/jcifs/internal/smb1/com/SmbComWriteAndXResponse.java
import jcifs.Configuration; import jcifs.internal.smb1.AndXServerMessageBlock; import jcifs.internal.util.SMBUtil; /** * SMB1 Write AndX Response message. * * This response contains information about the write operation, * including the number of bytes actually written. */ public class SmbComWriteAndXResponse extends AndXServerMessageBlock { private long count; /**Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 2.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/GenerateThumbnailJob.java
/** Number of threads to use for thumbnail generation. */ protected int numOfThreads = 1; /** Flag indicating whether to perform cleanup operations. */ protected boolean cleanup = false; /** * Default constructor for the GenerateThumbnailJob. */ public GenerateThumbnailJob() { super(); } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 11.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/OptionalUtilTest.java
@Test public void test_ofNullable_chainedOperations() { // Test chaining operations on the returned OptionalEntity String testValue = "HELLO WORLD"; OptionalEntity<String> result = OptionalUtil.ofNullable(testValue); assertTrue(result.isPresent()); // Test that we can chain operations String processed = result.map(s -> s.toLowerCase()).orElse("default");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 13.3K bytes - Click Count (0) -
docs/contribute/concurrency.md
This lock guards internal state of each connection. This lock is never held for blocking operations. That means that we acquire the lock, read or write a few fields and release the lock. No I/O and no application-layer callbacks. #### Http2Stream
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Sun Feb 06 16:35:36 GMT 2022 - 7K bytes - Click Count (0) -
guava/src/com/google/common/collect/ContiguousSet.java
* ContiguousSet.closed(5, 42) * } * * <p><b>Warning:</b> Be extremely careful what you do with conceptually large instances (such as * {@code ContiguousSet.create(Range.greaterThan(0), DiscreteDomain.integers()}). Certain operations * on such a set can be performed efficiently, but others (such as {@link Set#hashCode} or {@link * Collections#frequency}) can cause major performance problems. * * @author Gregory Kick * @since 10.0 */
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 9.9K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb1/trans/SmbComTransactionResponseTest.java
assertDoesNotThrow(() -> response.reset()); } @Test @DisplayName("Test encode operation") void testEncode() { byte[] buffer = new byte[1024]; int length = response.encode(buffer, 0); assertTrue(length >= 0); } @Test @DisplayName("Test decode operation") void testDecode() { byte[] buffer = new byte[1024];
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 13.4K bytes - Click Count (0) -
docs/ja/docs/advanced/dataclasses.md
このように、`dataclasses` は標準の型注釈と組み合わせられます。 8. この *path operation 関数* は、`async def` ではなく通常の `def` を使用しています。 いつもどおり、FastAPI では必要に応じて `def` と `async def` を組み合わせられます。 どちらをいつ使うかの復習が必要な場合は、[`async` と `await`](../async.md#in-a-hurry) に関するドキュメントの _"In a hurry?"_ セクションを参照してください。 9. この *path operation 関数* は(可能ではありますが)dataclass 自体は返さず、内部データを持つ辞書のリストを返しています。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 5K bytes - Click Count (0) -
docs/ja/docs/advanced/response-directly.md
# レスポンスを直接返す { #return-a-response-directly } **FastAPI** の *path operation* では、通常は任意のデータを返すことができます: 例えば、`dict`、`list`、Pydanticモデル、データベースモデルなどです。 [レスポンスモデル](../tutorial/response-model.md) を宣言した場合、FastAPI は Pydantic を使ってデータをJSONにシリアライズします。 レスポンスモデルを宣言しない場合、FastAPI は [JSON互換エンコーダ](../tutorial/encoder.md) で説明されている `jsonable_encoder` を使用し、その結果を `JSONResponse` に入れます。 また、`JSONResponse` を直接作成して返すこともできます。 /// tipCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 4.9K bytes - Click Count (0) -
docs/fr/docs/advanced/stream-data.md
FastAPI transmettra chaque bloc de données à la `StreamingResponse` tel quel ; il n'essaiera pas de le convertir en JSON ni autre chose similaire. ### Fonctions de chemin d'accès non async { #non-async-path-operation-functions } Vous pouvez également utiliser des fonctions `def` classiques (sans `async`), et utiliser `yield` de la même manière. {* ../../docs_src/stream_data/tutorial001_py310.py ln[26:29] hl[27] *}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:33:45 GMT 2026 - 6.2K bytes - Click Count (0) -
docs/zh-hant/docs/advanced/response-change-status-code.md
但如果資料不存在,你想要建立它,並回傳 HTTP 狀態碼 "CREATED" `201`。 同時你仍希望能用 `response_model` 過濾並轉換所回傳的資料。 在這些情況下,你可以使用 `Response` 參數。 ## 使用 `Response` 參數 { #use-a-response-parameter } 你可以在你的路徑操作函式(path operation function)中宣告一個 `Response` 型別的參數(就像你可以對 Cookies 和標頭那樣)。 接著你可以在那個「*暫時的*」回應物件上設定 `status_code`。 {* ../../docs_src/response_change_status_code/tutorial001_py310.py hl[1,9,12] *} 然後你可以照常回傳任何需要的物件(例如 `dict`、資料庫模型等)。
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 1.5K bytes - Click Count (0)