- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 63 for 410 (0.05 sec)
-
api/maven-api-model/src/main/mdo/maven.mdo
<li><a href="https://maven.apache.org/xsd/maven-4.0.0.xsd">https://maven.apache.org/xsd/maven-4.0.0.xsd</a> for Maven 2.0.</li> <li><a href="https://maven.apache.org/xsd/maven-4.1.0.xsd">https://maven.apache.org/xsd/maven-4.1.0.xsd</a> for Maven 4.0.</li> </ul> ]]> </description> <defaults> <default> <key>package</key> <value>org.apache.maven.model</value> </default> </defaults>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 09 11:07:31 UTC 2024 - 115.1K bytes - Viewed (0) -
docs/em/docs/tutorial/body-nested-models.md
🖼, `Image` 🏷 👥 ✔️ `url` 🏑, 👥 💪 📣 ⚫️ ↩️ `str`, Pydantic `HttpUrl`: //// tab | 🐍 3️⃣.6️⃣ & 🔛 ```Python hl_lines="4 10" {!> ../../docs_src/body_nested_models/tutorial005.py!} ``` //// //// tab | 🐍 3️⃣.9️⃣ & 🔛 ```Python hl_lines="4 10" {!> ../../docs_src/body_nested_models/tutorial005_py39.py!} ``` //// //// tab | 🐍 3️⃣.1️⃣0️⃣ & 🔛
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 9.1K bytes - Viewed (0) -
samples/tlssurvey/src/main/kotlin/okhttp3/survey/RunSurvey.kt
val safari12Osx = sslLabsClients.first { it.userAgent == "Safari" && it.platform == "MacOS 10.14.6 Beta" } val okhttp = currentOkHttp(ianaSuitesNew) val okHttp_4_10 = historicOkHttp("4.10") val okHttp_3_14 = historicOkHttp("3.14") val okHttp_3_13 = historicOkHttp("3.13") val okHttp_3_11 = historicOkHttp("3.11") val okHttp_3_9 = historicOkHttp("3.9") val currentVm = currentVm(ianaSuitesNew)
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Apr 10 19:46:48 UTC 2024 - 3.5K bytes - Viewed (0) -
docs/ru/docs/tutorial/body-nested-models.md
{!> ../../docs_src/body_nested_models/tutorial005_py310.py!} ``` //// //// tab | Python 3.9+ ```Python hl_lines="4 10" {!> ../../docs_src/body_nested_models/tutorial005_py39.py!} ``` //// //// tab | Python 3.8+ ```Python hl_lines="4 10" {!> ../../docs_src/body_nested_models/tutorial005.py!} ``` ////
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 14.8K bytes - Viewed (0) -
docs/en/docs/tutorial/body-nested-models.md
{!> ../../docs_src/body_nested_models/tutorial005_py310.py!} ``` //// //// tab | Python 3.9+ ```Python hl_lines="4 10" {!> ../../docs_src/body_nested_models/tutorial005_py39.py!} ``` //// //// tab | Python 3.8+ ```Python hl_lines="4 10" {!> ../../docs_src/body_nested_models/tutorial005.py!} ``` ////
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 9.4K bytes - Viewed (0) -
internal/grid/grid.go
const ( // minBufferSize is the minimum buffer size. // Buffers below this is not reused. minBufferSize = 1 << 10 // defaultBufferSize is the default buffer allocation size. defaultBufferSize = 4 << 10 // maxBufferSize is the maximum buffer size. // Buffers larger than this is not reused. maxBufferSize = 96 << 10 // This is the assumed size of bigger buffers and allocation size. biggerBufMin = 32 << 10
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Jul 29 18:10:04 UTC 2024 - 6.9K bytes - Viewed (0) -
docs/zh/docs/tutorial/body-nested-models.md
{!> ../../docs_src/body_nested_models/tutorial005_py310.py!} ``` //// //// tab | Python 3.9+ ```Python hl_lines="4 10" {!> ../../docs_src/body_nested_models/tutorial005_py39.py!} ``` //// //// tab | Python 3.8+ ```Python hl_lines="4 10" {!> ../../docs_src/body_nested_models/tutorial005.py!} ``` //// 该字符串将被检查是否为有效的 URL,并在 JSON Schema / OpenAPI 文档中进行记录。
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 9.2K bytes - Viewed (0) -
compat/maven-model/pom.xml
<configuration> <basedir>${project.basedir}/../../api/maven-api-model</basedir> <velocityBasedir>${project.basedir}/../../src/mdo</velocityBasedir> <version>4.1.0</version> <models> <model>src/main/mdo/maven.mdo</model> </models> <params> <param>forcedIOModelVersion=4.0.0</param>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.9K bytes - Viewed (0) -
internal/dsync/drwmutex_test.go
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) hammerRWMutex(t, 10, 5, n) } // Borrowed from rwmutex_test.go func TestUnlockPanic(t *testing.T) {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Dec 24 03:49:07 UTC 2022 - 9.7K bytes - Viewed (0) -
docs/changelogs/changelog_4x.md
the server to incorrectly interpret the stream as having completed normally. This is most useful when a request body needs to cancel its own call. ## Version 4.2.1 _2019-10-02_ * Fix: In 4.1.0 we introduced a performance regression that prevented connections from being pooled in certain situations. We have good test coverage for connection pooling but we missed
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Apr 17 13:25:31 UTC 2024 - 25.2K bytes - Viewed (0)