- Sort Score
- Num 10 results
- Language All
Results 3941 - 3950 of 4,047 for Created (0.17 seconds)
-
src/main/java/jcifs/audit/SecurityAuditLogger.java
entry.eventType = type; entry.severity = severity; entry.message = maskSensitiveData ? maskSensitiveData(message) : message; // Reuse context map or create new entry.context = getContextMap(); if (context != null) { entry.context.putAll(maskContext(context)); } // Add MDC context efficientlyCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 26.6K bytes - Click Count (0) -
docs/ja/docs/tutorial/path-params.md
パスは最初にマッチしたものが常に使われるため、最初のものが常に使用されます。 ## 定義済みの値 { #predefined-values } *パスパラメータ*を受け取る *path operation* をもち、有効な*パスパラメータ*の値を事前に定義したい場合は、標準のPython <abbr title="Enumeration - 列挙型">`Enum`</abbr> を利用できます。 ### `Enum` クラスの作成 { #create-an-enum-class } `Enum` をインポートし、 `str` と `Enum` を継承したサブクラスを作成します。 `str` を継承することで、APIドキュメントは値が `string` 型でなければいけないことを知り、正確にレンダリングできるようになります。 そして、固定値のクラス属性を作ります。すると、その値が使用可能な値となります:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 10.8K bytes - Click Count (0) -
docs/zh-hant/docs/help-fastapi.md
* 幫我確認 PR 有**測試**。 * 檢查在 PR 之前,測試會**失敗**。🚨 * 然後檢查在 PR 之後,測試會**通過**。✅ * 很多 PR 並沒有測試,你可以**提醒**他們加上測試,或甚至**建議**一些測試。這是最花時間的事之一,而你可以在這方面幫上很大的忙。 * 接著也請留言你嘗試了什麼,這樣我就知道你有檢查過。🤓 ## 建立 Pull Request { #create-a-pull-request } 你可以透過 Pull Request 來[貢獻](contributing.md)原始碼,例如: * 修正文檔中你發現的錯字。 * 分享你建立或發現的 FastAPI 相關文章、影片或 podcast,方法是[編輯這個檔案](https://github.com/fastapi/fastapi/edit/master/docs/en/data/external_links.yml)。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 11.9K bytes - Click Count (0) -
docs/ko/docs/help-fastapi.md
* 많은 PR에는 테스트가 없습니다. 테스트를 추가하도록 **상기**시켜줄 수도 있고, 직접 테스트를 **제안**할 수도 있습니다. 이는 시간이 가장 많이 드는 것들 중 하나이며, 그 부분을 많이 도와줄 수 있습니다. * 그리고 시도한 내용을 댓글로 남겨주세요. 그러면 제가 확인했다는 걸 알 수 있습니다. 🤓 ## Pull Request 만들기 { #create-a-pull-request } Pull Requests를 이용하여 소스 코드에 [기여](contributing.md)할 수 있습니다. 예를 들면 다음과 같습니다: * 문서에서 발견한 오타를 수정할 때.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 15.4K bytes - Click Count (0) -
docs/ja/docs/advanced/advanced-dependencies.md
そして、`__init__` を使って、依存関係を「パラメータ化」するために利用できるインスタンスのパラメータを宣言できます: {* ../../docs_src/dependencies/tutorial011_an_py310.py hl[9] *} この場合、**FastAPI** は `__init__` に触れたり気にかけたりすることはありません。私たちがコード内で直接使います。 ## インスタンスの作成 { #create-an-instance } このクラスのインスタンスは次のように作成できます: {* ../../docs_src/dependencies/tutorial011_an_py310.py hl[18] *} このようにして依存関係を「パラメータ化」できます。いまや `"bar"` が属性 `checker.fixed_content` として中に保持されています。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 11.4K bytes - Click Count (0) -
docs/uk/docs/index.md
---> 100% ``` </div> **Примітка**: переконайтеся, що ви взяли `"fastapi[standard]"` у лапки, щоб це працювало в усіх терміналах. ## Приклад { #example } ### Створіть { #create-it } Створіть файл `main.py` з: ```Python from fastapi import FastAPI app = FastAPI() @app.get("/") def read_root(): return {"Hello": "World"}
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 29.1K bytes - Click Count (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
}; if (oldHash != null) { dgst.update(oldHash); } dgst.update(input, off, len); return dgst.digest(); } /** * Create encryption context for SMB3 encrypted communication * * @param sessionKey the session key from GSS-API authentication * @param preauthHash the pre-authentication integrity hash (SMB 3.1.1 only)Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 69.8K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/info/Smb2QueryInfoResponseTest.java
createInfoMethod.setAccessible(true); Decodable result = (Decodable) createInfoMethod.invoke(null, infoType, infoClass); assertNotNull(result, String.format("Should create information for type %d, class %d", infoType, infoClass)); } @Test @DisplayName("Test readBytesWireFormat preserves buffer content") void testReadBytesWireFormatPreservesBuffer() throws Exception {
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 24.5K bytes - Click Count (0) -
docs/fr/docs/help-fastapi.md
* Commentez aussi ce que vous avez essayé, ainsi je saurai que vous l'avez vérifié. 🤓 ## Créer une Pull Request { #create-a-pull-request } Vous pouvez [contribuer](contributing.md) au code source avec des Pull Requests, par exemple : * Corriger une coquille que vous avez trouvée dans la documentation.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 14.6K bytes - Click Count (0) -
src/archive/zip/zip_test.go
85, 84, 5, 0, 3, 154, 144, 195, 77, // tag 21589 size 5 85, 120, 0, 0, // tag 30805 size 0 }, } testValidHeader(&h, t) } // Just benchmarking how fast the Zip64 test above is. Not related to // our zip performance, since the test above disabled CRC32 and flate. func BenchmarkZip64Test(b *testing.B) { for i := 0; i < b.N; i++ { testZip64(b, 1<<26) } }
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Thu May 23 01:00:11 GMT 2024 - 19.6K bytes - Click Count (0)