- Sort Score
- Num 10 results
- Language All
Results 261 - 270 of 377 for 22 (0.02 seconds)
-
android/guava/src/com/google/common/net/UrlEscapers.java
* </ul> * * <p>This escaper is suitable for escaping parameter names and values even when <a * href="https://www.w3.org/TR/html401/appendix/notes.html#h-B.2.2">using the non-standard * semicolon</a>, rather than the ampersand, as a parameter delimiter. Nevertheless, we recommend * using the ampersand unless you must interoperate with systems that require semicolons. *
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Dec 21 03:10:51 GMT 2024 - 7.1K bytes - Click Count (0) -
docs/ru/docs/tutorial/extra-models.md
В этом случае мы можем определить только различия между моделями (с `password` в чистом виде, с `hashed_password` и без пароля): {* ../../docs_src/extra_models/tutorial002_py310.py hl[7,13:14,17:18,21:22] *} ## `Union` или `anyOf` { #union-or-anyof } Вы можете объявить HTTP-ответ как `Union` из двух или более типов. Это означает, что HTTP-ответ может быть любым из них. Он будет определён в OpenAPI как `anyOf`.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:56:20 GMT 2026 - 10.7K bytes - Click Count (0) -
docs/pt/docs/tutorial/extra-models.md
Dessa forma, podemos declarar apenas as diferenças entre os modelos (com `password` em texto claro, com `hashed_password` e sem senha): {* ../../docs_src/extra_models/tutorial002_py310.py hl[7,13:14,17:18,21:22] *} ## `Union` ou `anyOf` { #union-or-anyof } Você pode declarar uma resposta como o `Union` de dois ou mais tipos, o que significa que a resposta seria qualquer um deles. Isso será definido no OpenAPI com `anyOf`.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 7.1K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb1/net/NetShareEnumTest.java
int offset = 0; // 1. NET_SHARE_ENUM command (2 bytes) assertEquals(SmbComTransaction.NET_SHARE_ENUM, SMBUtil.readInt2(dst, offset)); offset += 2; // 2. Descriptor string (13 bytes) String descr = "WrLeh\u0000B13BWz\u0000"; byte[] descrBytes = descr.getBytes("ASCII"); for (int i = 0; i < descrBytes.length; i++) {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 15.8K bytes - Click Count (0) -
docs/pt/docs/advanced/advanced-dependencies.md
checker(q="somequery") ``` ...e passar o que quer que isso retorne como valor da dependência em nossa *função de operação de rota* como o parâmetro `fixed_content_included`: {* ../../docs_src/dependencies/tutorial011_an_py310.py hl[22] *} /// tip | Dica Tudo isso parece não ser natural. E pode não estar muito claro ou aparentar ser útil ainda. Estes exemplos são intencionalmente simples, porém mostram como tudo funciona.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 9.9K bytes - Click Count (0) -
docs/zh-hant/docs/advanced/events.md
在我們的範例中,並不是直接用它,而是把它傳給 FastAPI 來使用。 `FastAPI` 應用的 `lifespan` 參數需要一個**非同步內容管理器**,所以我們可以把剛寫好的 `lifespan` 非同步內容管理器傳給它。 {* ../../docs_src/events/tutorial003_py310.py hl[22] *} ## 替代事件(已棄用) { #alternative-events-deprecated } /// warning 目前建議使用上面所述,透過 `FastAPI` 應用的 `lifespan` 參數來處理 *startup* 與 *shutdown*。如果你提供了 `lifespan` 參數,`startup` 與 `shutdown` 事件處理器將不會被呼叫。要嘛全用 `lifespan`,要嘛全用事件,不能同時混用。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 7.2K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/tree/Smb2TreeConnectResponseTest.java
assertEquals("Structure size is not 16", exception.getMessage()); } @DisplayName("Should parse different share types correctly") @ParameterizedTest @CsvSource({ "1, 1", // DISK "2, 2", // PIPE "3, 3", // PRINT "0, 0", // Unknown "255, -1" // Byte overflow to signed })
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 19.3K bytes - Click Count (0) -
CHANGELOG/CHANGELOG-1.17.md
- [v1.17.0-alpha.3](#v1170-alpha3) - [Downloads for v1.17.0-alpha.3](#downloads-for-v1170-alpha3) - [Client Binaries](#client-binaries-22) - [Server Binaries](#server-binaries-22) - [Node Binaries](#node-binaries-22) - [Changelog since v1.17.0-alpha.2](#changelog-since-v1170-alpha2) - [Action Required](#action-required-2) - [Other notable changes](#other-notable-changes-6)Created: Fri Apr 03 09:05:14 GMT 2026 - Last Modified: Thu Jan 28 10:44:33 GMT 2021 - 346.2K bytes - Click Count (1) -
docs/de/docs/tutorial/extra-models.md
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 7.7K bytes - Click Count (0) -
guava-tests/test/com/google/common/primitives/UnsignedBytesTest.java
testSortDescending(new byte[] {1, 2}, new byte[] {2, 1}); testSortDescending(new byte[] {1, 3, 1}, new byte[] {3, 1, 1}); testSortDescending( new byte[] {GREATEST - 1, 1, GREATEST - 2, 2}, new byte[] {GREATEST - 1, GREATEST - 2, 2, 1}); } private static void testSortDescending(byte[] input, byte[] expectedOutput) { input = Arrays.copyOf(input, input.length);
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Mar 08 01:43:32 GMT 2026 - 14K bytes - Click Count (0)