- Sort Score
- Num 10 results
- Language All
Results 571 - 580 of 1,857 for notre (0.02 seconds)
-
android/guava/src/com/google/common/base/Verify.java
* // In case bug 12345 happens again we'd rather just die * Verify.verify(bill.status() == Status.UNPAID, * "Unexpected bill status: %s", bill.status()); * } * * <h3>Comparison to alternatives</h3> * * <p><b>Note:</b> In some cases the differences explained below can be subtle. When it's unclear * which approach to use, <b>don't worry</b> too much about it; just pick something that seems * reasonable and it will be fine. * * <ul>
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Dec 29 17:36:00 GMT 2025 - 18.5K bytes - Click Count (0) -
guava/src/com/google/common/collect/ContiguousSet.java
import java.util.Set; /** * A sorted set of contiguous values in a given {@link DiscreteDomain}. Example: * * {@snippet : * ContiguousSet.create(Range.closed(5, 42), DiscreteDomain.integers()) * } * * <p>Note that because bounded ranges over {@code int} and {@code long} values are so common, this * particular example can be written as just: * * {@snippet : * ContiguousSet.closed(5, 42) * } *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/pac/kerberos/KerberosTicketTest.java
} } @Test void testConstructorWithUnrecognizedField() throws IOException, GeneralSecurityException { // Test with an unrecognized field in the ticket // Note: In the actual implementation, field 99 would come after mandatory fields, // so decryption happens first. We test with a mocked successful decryption.Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 11.4K bytes - Click Count (0) -
docs/zh-hant/docs/advanced/additional-responses.md
**FastAPI** 會取用該模型、產生其 JSON Schema,並把它放到 OpenAPI 中正確的位置。 例如,要宣告一個狀態碼為 `404` 的額外回應,並使用 Pydantic 模型 `Message`,你可以這樣寫: {* ../../docs_src/additional_responses/tutorial001_py310.py hl[18,22] *} /// note | 注意 請記住你必須直接回傳 `JSONResponse`。 /// /// info | 說明 `model` 這個鍵不屬於 OpenAPI。 **FastAPI** 會從這裡取出 Pydantic 模型,產生 JSON Schema,並放到正確位置。 正確的位置是: * 在 `content` 這個鍵中,其值是一個 JSON 物件(`dict`),包含:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 8.6K bytes - Click Count (0) -
docs/en/docs/tutorial/request-forms.md
The way HTML forms (`<form></form>`) sends the data to the server normally uses a "special" encoding for that data, it's different from JSON. **FastAPI** will make sure to read that data from the right place instead of JSON. /// note | Technical Details Data from forms is normally encoded using the "media type" `application/x-www-form-urlencoded`.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 2.6K bytes - Click Count (0) -
docs/ja/docs/advanced/wsgi.md
/// `a2wsgi` から `WSGIMiddleware` をインポートします。 次に、そのミドルウェアで WSGI(例: Flask)アプリをラップします。 そして、それをあるパスの下にマウントします。 {* ../../docs_src/wsgi/tutorial001_py310.py hl[1,3,23] *} /// note | 備考 以前は `fastapi.middleware.wsgi` の `WSGIMiddleware` を使用することが推奨されていましたが、現在は非推奨です。 代わりに `a2wsgi` パッケージを使用することを推奨します。使い方は同じです。 `a2wsgi` パッケージがインストールされていることを確認し、`a2wsgi` から `WSGIMiddleware` を正しくインポートしてください。 ///Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 1.8K bytes - Click Count (0) -
docs/zh-hant/docs/advanced/response-cookies.md
請注意,如果你不是使用 `Response` 參數,而是直接回傳一個 `Response`,FastAPI 會原樣回傳它。 因此你必須確保資料型別正確;例如,如果你回傳的是 `JSONResponse`,就要確保資料可與 JSON 相容。 同時也要確認沒有送出原本應該由 `response_model` 過濾的資料。 /// ### 更多資訊 { #more-info } /// note | 技術細節 你也可以使用 `from starlette.responses import Response` 或 `from starlette.responses import JSONResponse`。 為了方便開發者,FastAPI 也將相同的 `starlette.responses` 透過 `fastapi.responses` 提供。不過,大多數可用的回應類別都直接來自 Starlette。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 2.1K bytes - Click Count (0) -
internal/disk/directio_unsupported.go
// the O_DIRECT symbol may not be exposed resulting in a failed build. // // // On illumos an explicit O_DIRECT flag is not necessary for two primary // reasons. Note that ZFS is effectively the default filesystem on illumos // systems. // // One benefit of using DirectIO on Linux is that the page cache will not be // polluted with single-access data. The ZFS read cache (ARC) is scan-resistant
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Wed Oct 18 18:08:15 GMT 2023 - 2.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/pager/UserPagerTest.java
userPager.setAllPageCount(10); userPager.setExistPrePage(true); userPager.setExistNextPage(true); userPager.clear(); assertNull(userPager.id); // Note: name is not cleared by clear() method assertNull(userPager.roles); assertNull(userPager.groups); assertNull(userPager.versionNo); assertEquals(0, userPager.getAllRecordCount());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 12:58:11 GMT 2026 - 3.4K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/CookieJar.kt
* * [rfc_6265_53]: https://tools.ietf.org/html/rfc6265#section-5.3 */ interface CookieJar { /** * Saves [cookies] from an HTTP response to this store according to this jar's policy. * * Note that this method may be called a second time for a single HTTP response if the response * includes a trailer. For this obscure HTTP feature, [cookies] contains only the trailer's * cookies. */ fun saveFromResponse(Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Wed Mar 19 19:25:20 GMT 2025 - 2.4K bytes - Click Count (0)