- Sort Score
- Result 10 results
- Languages All
Results 1291 - 1300 of 1,405 for punt (0.06 sec)
-
okhttp/src/main/kotlin/okhttp3/internal/http2/Hpack.kt
private const val SETTINGS_HEADER_TABLE_SIZE = 4_096 /** * The decoder has ultimate control of the maximum size of the dynamic table but we can choose * to use less. We'll put a cap at 16K. This is arbitrary but should be enough for most purposes. */ private const val SETTINGS_HEADER_TABLE_SIZE_LIMIT = 16_384 val STATIC_HEADER_TABLE = arrayOf( Header(TARGET_AUTHORITY, ""),
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 22.5K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/Cache.kt
val response = entry.response(snapshot) if (!entry.matches(request, response)) { response.body.closeQuietly() return null } return response } internal fun put(response: Response): CacheRequest? { val requestMethod = response.request.method if (HttpMethod.invalidatesCache(response.request.method)) { try { remove(response.request)
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Apr 10 19:46:48 UTC 2024 - 26.8K bytes - Viewed (0) -
cmd/xl-storage-format-v2.go
func metaDataPoolGet() []byte { return metaDataPool.Get().([]byte)[:0] } // metaDataPoolPut will put an unused small buffer back into the pool. func metaDataPoolPut(buf []byte) { if cap(buf) >= metaDataReadDefault && cap(buf) < metaDataReadDefault*4 { //nolint:staticcheck // SA6002 we are fine with the tiny alloc metaDataPool.Put(buf) } } // readXLMetaNoData will load the metadata, but skip data segments.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 22 15:30:50 UTC 2024 - 64K bytes - Viewed (1) -
okhttp/src/test/java/okhttp3/InterceptorTest.kt
.build(), ) } val request = Request.Builder() .url(server.url("/")) .addHeader("Original-Header", "foo") .method("PUT", "abc".toRequestBody("text/plain".toMediaType())) .build() client.newCall(request).execute() val recordedRequest = server.takeRequest() assertThat(recordedRequest.body.readUtf8()).isEqualTo("ABC")
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Jan 14 10:20:09 UTC 2024 - 27.8K bytes - Viewed (0) -
cmd/bucket-replication-handlers.go
xhttp "github.com/minio/minio/internal/http" "github.com/minio/minio/internal/logger" "github.com/minio/mux" "github.com/minio/pkg/v3/policy" ) // PutBucketReplicationConfigHandler - PUT Bucket replication configuration. // ---------- // Add a replication configuration on the specified bucket as specified in https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketReplication.html
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 15 12:04:40 UTC 2024 - 23.3K bytes - Viewed (0) -
licenses/github.com/hashicorp/go-multierror/LICENSE
2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. If it is not possible or desirable to put the notice in a particular file, then You may include the notice in a location (such as a LICENSE file in a relevant directory) where a recipient would be likely to look for such a notice.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Sat Oct 26 02:47:39 UTC 2019 - 15.6K bytes - Viewed (0) -
docs/em/docs/tutorial/response-model.md
๐ ๐ผ, ๐ ๐ช โ๏ธ *โก ๐ ๏ธ ๐จโ๐จ* ๐ข `response_model` โฉ๏ธ ๐จ ๐. ๐ ๐ช โ๏ธ `response_model` ๐ข ๐ *โก ๐ ๏ธ*: * `@app.get()` * `@app.post()` * `@app.put()` * `@app.delete()` * โ๏ธ. //// tab | ๐ 3๏ธโฃ.6๏ธโฃ & ๐ ```Python hl_lines="17 22 24-27" {!> ../../docs_src/response_model/tutorial001.py!} ``` //// //// tab | ๐ 3๏ธโฃ.9๏ธโฃ & ๐
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 15.8K bytes - Viewed (0) -
docs/ko/docs/features.md
# ๊ธฐ๋ฅ ## FastAPI์ ๊ธฐ๋ฅ **FastAPI**๋ ๋ค์๊ณผ ๊ฐ์ ๊ธฐ๋ฅ์ ์ ๊ณตํฉ๋๋ค: ### ๊ฐ๋ฐฉํ ํ์ค์ ๊ธฐ๋ฐ์ผ๋ก * <abbr title="์๋ํฌ์ธํธ, ๋ผ์ฐํธ๋ก๋ ์๋ ค์ ธ ์์ต๋๋ค">๊ฒฝ๋ก</abbr><abbr title="POST, GET, PUT, DELETE์ ๊ฐ์ HTTP ๋ฉ์๋๋ก ์๋ ค์ ธ ์์ต๋๋ค">์๋</abbr>, ๋งค๊ฐ๋ณ์, ๋ณธ๋ฌธ ์์ฒญ, ๋ณด์ ๊ทธ ์ธ์ ์ ์ธ์ ํฌํจํ API ์์ฑ์ ์ํ <a href="https://github.com/OAI/OpenAPI-Specification" class="external-link" target="_blank"><strong>OpenAPI</strong></a>
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 11.8K bytes - Viewed (0) -
internal/logger/target/http/http.go
break drain } } } }() lastBatchProcess := time.Now() buf := bytebufferpool.Get() enc := jsoniter.ConfigCompatibleWithStandardLibrary.NewEncoder(buf) defer bytebufferpool.Put(buf) isDirQueue := h.config.QueueDir != "" // globalBuffer is always created or adjusted // before this method is launched. logChLock.Lock() globalBuffer := logChBuffers[name] logChLock.Unlock()
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Sep 11 22:20:42 UTC 2024 - 15.6K bytes - Viewed (0) -
docs/ru/docs/tutorial/response-model.md
ะะฐัะฐะผะตัั `response_model` ะผะพะถะตั ะฑััั ัะบะฐะทะฐะฝ ะดะปั ะปัะฑะพะน *ะพะฟะตัะฐัะธะธ ะฟััะธ*: * `@app.get()` * `@app.post()` * `@app.put()` * `@app.delete()` * ะธ ะดั. //// tab | Python 3.10+ ```Python hl_lines="17 22 24-27" {!> ../../docs_src/response_model/tutorial001_py310.py!} ``` //// //// tab | Python 3.9+
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 30.4K bytes - Viewed (0)