- Sort Score
- Result 10 results
- Languages All
Results 131 - 140 of 373 for 13 (0.02 sec)
-
android/guava/src/com/google/common/base/Ascii.java
* to the first printing position on the same printing line. (Applicable also to display devices.) * * @since 8.0 */ public static final byte CR = 13; /** * Shift Out: A control character indicating that the code combinations which follow shall be * interpreted as outside of the character set of the standard code table until a Shift In
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Aug 02 13:50:22 UTC 2024 - 21.7K bytes - Viewed (0) -
docs/ru/docs/python-types.md
называются **Generic-типами** или **Generics**. ### Классы как типы Вы также можете объявить класс как тип переменной. Допустим, у вас есть класс `Person` с полем `name`: ```Python hl_lines="1-3" {!../../docs_src/python_types/tutorial010.py!} ``` Тогда вы можете объявить переменную типа `Person`: ```Python hl_lines="6" {!../../docs_src/python_types/tutorial010.py!} ```
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 14.6K bytes - Viewed (0) -
docs/de/docs/tutorial/body-nested-models.md
```Python images: List[Image] ``` oder in Python 3.9 und darüber: ```Python images: list[Image] ``` so wie in: //// tab | Python 3.9+ ```Python hl_lines="13" {!> ../../docs_src/body_nested_models/tutorial008_py39.py!} ``` //// //// tab | Python 3.8+ ```Python hl_lines="15" {!> ../../docs_src/body_nested_models/tutorial008.py!} ``` ////
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 10.3K bytes - Viewed (0) -
internal/dsync/drwmutex_test.go
// Borrowed from rwmutex_test.go func TestRWMutex(t *testing.T) { defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(-1)) n := 100 if testing.Short() { n = 5 } hammerRWMutex(t, 1, 1, n) hammerRWMutex(t, 1, 3, n) hammerRWMutex(t, 1, 10, n) hammerRWMutex(t, 4, 1, n) hammerRWMutex(t, 4, 3, n) hammerRWMutex(t, 4, 10, n) hammerRWMutex(t, 10, 1, n) hammerRWMutex(t, 10, 3, n) hammerRWMutex(t, 10, 10, n)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Dec 24 03:49:07 UTC 2022 - 9.7K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/avx512enc/avx512_vbmi2.s
VPSHLDQ $13, Z3, Z27, K7, Z23 // 62e3a54771fb0d VPSHLDQ $13, Z0, Z27, K7, Z23 // 62e3a54771f80d VPSHLDQ $13, -17(BP)(SI*2), Z27, K7, Z23 // 62e3a54771bc75efffffff0d VPSHLDQ $13, 7(AX)(CX*2), Z27, K7, Z23 // 62e3a54771bc48070000000d VPSHLDQ $13, Z3, Z14, K7, Z23 // 62e38d4f71fb0d
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue May 22 14:57:15 UTC 2018 - 97.1K bytes - Viewed (0) -
cmd/storage-datatypes_gen.go
if z.APICalls != nil { for za0003, za0004 := range z.APICalls { _ = za0004 s += msgp.StringPrefixSize + len(za0003) + msgp.Uint64Size } } s += 13 + msgp.Uint32Size + 24 + msgp.Uint64Size + 19 + msgp.Uint64Size + 12 + msgp.Uint64Size + 13 + msgp.Uint64Size return } // DecodeMsg implements msgp.Decodable func (z *FileInfo) DecodeMsg(dc *msgp.Reader) (err error) { var zb0001 uint32
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 22 15:30:50 UTC 2024 - 150.2K bytes - Viewed (0) -
README.md
problems. If your service has multiple IP addresses, OkHttp will attempt alternate addresses if the first connect fails. This is necessary for IPv4+IPv6 and services hosted in redundant data centers. OkHttp supports modern TLS features (TLS 1.3, ALPN, certificate pinning). It can be configured to fall back for broad connectivity. Using OkHttp is easy. Its request/response API is designed with fluent builders and immutability. It
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Dec 20 23:27:07 UTC 2023 - 6.2K bytes - Viewed (0) -
src/main/webapp/js/suggestor.js
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Mar 30 05:45:24 UTC 2023 - 13.3K bytes - Viewed (0) -
docs/em/docs/tutorial/request-files.md
```Python hl_lines="7 14" {!> ../../docs_src/request_files/tutorial001_02_py310.py!} ``` //// ## `UploadFile` ⏮️ 🌖 🗃 👆 💪 ⚙️ `File()` ⏮️ `UploadFile`, 🖼, ⚒ 🌖 🗃: ```Python hl_lines="13" {!../../docs_src/request_files/tutorial001_03.py!} ``` ## 💗 📁 📂 ⚫️ 💪 📂 📚 📁 🎏 🕰. 👫 🔜 👨💼 🎏 "📨 🏑" 📨 ⚙️ "📨 💽". ⚙️ 👈, 📣 📇 `bytes` ⚖️ `UploadFile`:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 6.6K bytes - Viewed (0) -
docs/en/docs/tutorial/query-params-str-validations.md
//// tab | Python 3.10+ In Python 3.9 or above, `Annotated` is part of the standard library, so you can import it from `typing`. ```Python hl_lines="1 3" {!> ../../docs_src/query_params_str_validations/tutorial002_an_py310.py!} ``` //// //// tab | Python 3.8+ In versions of Python below Python 3.9 you import `Annotated` from `typing_extensions`.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 25.4K bytes - Viewed (0)