- Sort Score
- Num 10 results
- Language All
Results 1331 - 1340 of 1,566 for operativos (0.06 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/dict/DictionaryFile.java
import org.lastaflute.web.servlet.request.stream.WrittenStreamOut; /** * Abstract base class for dictionary files that manage dictionary items. * A dictionary file represents a collection of dictionary items with * CRUD operations and pagination support. * * @param <T> the type of dictionary items managed by this file */ public abstract class DictionaryFile<T extends DictionaryItem> { /** The dictionary manager responsible for this file. */
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 07:09:00 GMT 2025 - 11.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/QueryStringBuilder.java
* This class provides methods to construct search queries from various parameters, * handle special characters, and format the final query string for search operations. */ public class QueryStringBuilder { private static final String OR_ALT = " || "; private static final String OR = " OR "; private static final String SPACE = " ";Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 12.3K bytes - Click Count (0) -
guava-tests/test/com/google/common/collect/QueuesTest.java
new LinkedBlockingDeque<Object>(), new LinkedBlockingDeque<Object>(10), new PriorityBlockingQueue<Object>(10, Ordering.arbitrary())); } /* * We need to perform operations in a thread pool, even for simple cases, because the queue might * be a SynchronousQueue. */ private ExecutorService threadPool; @Override public void setUp() { threadPool = newCachedThreadPool();
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Nov 04 17:24:58 GMT 2025 - 12.6K bytes - Click Count (0) -
src/test/java/jcifs/util/SecureCredentialStorageTest.java
// The important part is that the storage is marked as destroyed } assertTrue(storage.isDestroyed(), "Storage should be marked as destroyed"); // Operations should fail after destroy assertThrows(IllegalStateException.class, () -> { storage.encryptCredentials(plaintext); }, "Should throw IllegalStateException after destroy");Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 12.7K bytes - Click Count (0) -
docs/ja/docs/tutorial/query-params-str-validations.md
/// FastAPI は次を行います: * 最大長が 50 文字であることを確かめるようデータを **検証** する * データが有効でないときに、クライアントに **明確なエラー** を表示する * OpenAPI スキーマの *path operation* にパラメータを **ドキュメント化** する(その結果、**自動ドキュメント UI** に表示されます) ## 代替(古い方法): デフォルト値としての `Query` { #alternative-old-query-as-the-default-value }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 20.3K bytes - Click Count (0) -
cmd/object-handlers_test.go
t.Errorf("MinIO %s: Failed to create HTTP request for testing the response when object Layer is set to `nil`.", instanceType) } // execute the object layer set to `nil` test. // `ExecObjectLayerAPINilTest` manages the operation. ExecObjectLayerAPINilTest(t, nilBucket, nilObject, instanceType, apiRouter, nilReq) } func TestAPIHeadObjectHandlerWithEncryption(t *testing.T) { globalPolicySys = NewPolicySys()
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 163.1K bytes - Click Count (0) -
docs/fr/docs/tutorial/handling-errors.md
Ce client peut être un navigateur avec un frontend, un code d'un tiers, un appareil IoT, etc. Vous pourriez avoir besoin d'indiquer au client que : * Le client n'a pas les privilèges suffisants pour cette opération. * Le client n'a pas accès à cette ressource. * L'élément auquel le client tentait d'accéder n'existe pas. * etc. Dans ces cas, vous retournez normalement un **code d'état HTTP** dans la plage de **400** (de 400 à 499).
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 10K bytes - Click Count (0) -
docs/ja/docs/how-to/migrate-from-pydantic-v1-to-pydantic-v2.md
end end style V2 fill:#f9fff3 style V1 fill:#fff6f0 style V1Field fill:#fff6f0 style V2Field fill:#f9fff3 ``` 場合によっては、同じ FastAPI の path operation 内で、Pydantic v1 と v2 の両方のモデルを扱うことも可能です: {* ../../docs_src/pydantic_v1_in_v2/tutorial003_an_py310.py hl[2:3,6,12,21:22] *} 上の例では、入力モデルは Pydantic v1、出力モデル(`response_model=ItemV2` で定義)は Pydantic v2 です。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 6.2K bytes - Click Count (0) -
docs/pt/docs/advanced/openapi-callbacks.md
Primeiro crie um novo `APIRouter` que conterá um ou mais callbacks. {* ../../docs_src/openapi_callbacks/tutorial001_py310.py hl[1,23] *} ### Crie a *operação de rota* do callback { #create-the-callback-path-operation } Para criar a *operação de rota* do callback, use o mesmo `APIRouter` que você criou acima. Ela deve parecer exatamente como uma *operação de rota* normal do FastAPI:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 8.1K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/body.md
``` ...由於 `description` 與 `tax` 是選填(預設為 `None`),以下這個 JSON「`object`」也有效: ```JSON { "name": "Foo", "price": 45.2 } ``` ## 將它宣告為參數 { #declare-it-as-a-parameter } 要把它加到你的*路徑操作(path operation)*中,宣告方式與路徑與查詢參數相同: {* ../../docs_src/body/tutorial001_py310.py hl[16] *} ...並將其型別宣告為你建立的模型 `Item`。 ## 效果 { #results } 只靠這樣的 Python 型別宣告,**FastAPI** 會: - 將請求本文讀取為 JSON。 - (必要時)轉換為對應的型別。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 6K bytes - Click Count (0)