- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 1,023 for Encoding (0.06 sec)
-
okhttp/src/main/kotlin/okhttp3/internal/cache/CacheInterceptor.kt
.networkResponse(networkResponse.stripBody()) .build() networkResponse.body.close() // Update the cache after combining headers but before stripping the // Content-Encoding header (as performed by initContentStream()). cache!!.trackConditionalCacheHit() cache.update(cacheResponse, response) return response.also { listener.cacheHit(call, it) }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Fri Mar 22 07:09:21 UTC 2024 - 10.2K bytes - Viewed (0) -
internal/s3select/select_test.go
// // You should have received a copy of the GNU Affero General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. package s3select import ( "bytes" "encoding/xml" "fmt" "io" "net/http" "os" "reflect" "strings" "testing" "github.com/klauspost/cpuid/v2" "github.com/minio/minio-go/v7" "github.com/minio/simdjson-go" )
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Dec 23 07:19:11 UTC 2023 - 76.2K bytes - Viewed (0) -
doc/next/6-stdlib/99-minor/net/url/62384.md
[URL] now also implements the [encoding.BinaryAppender] interface....
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Aug 08 19:43:18 UTC 2024 - 67 bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/HttpUrlTest.kt
UrlComponentEncodingTester.newInstance() .nonPrintableAscii(Encoding.FORBIDDEN) .nonAscii(Encoding.PUNYCODE) .override( Encoding.FORBIDDEN, '\t'.code, '\n'.code, '\u000c'.code, '\r'.code, ' '.code, ) .override( Encoding.FORBIDDEN, '#'.code, '%'.code, '/'.code,
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 67.9K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/RenderMarkdown.java
/** * The rendered HTML file */ @OutputFile public abstract RegularFileProperty getDestinationFile(); /** * Encoding of input file */ @Input public abstract Property<String> getInputEncoding(); /** * Encoding of output file */ @Input public abstract Property<String> getOutputEncoding(); @TaskAction public void process() {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 3.2K bytes - Viewed (0) -
doc/next/6-stdlib/99-minor/math/big/62384.md
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Aug 15 23:43:00 UTC 2024 - 78 bytes - Viewed (0) -
doc/next/6-stdlib/99-minor/crypto/md5/62384.md
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Aug 01 14:57:46 UTC 2024 - 93 bytes - Viewed (0) -
api/go1.5.txt
pkg debug/elf, type R_PPC64 int pkg encoding/base64, const NoPadding = -1 pkg encoding/base64, const NoPadding int32 pkg encoding/base64, const StdPadding = 61 pkg encoding/base64, const StdPadding int32 pkg encoding/base64, method (Encoding) WithPadding(int32) *Encoding pkg encoding/base64, var RawStdEncoding *Encoding pkg encoding/base64, var RawURLEncoding *Encoding pkg encoding/json, method (*Decoder) More() bool
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Jul 30 21:14:09 UTC 2015 - 46.6K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/http1/Http1ExchangeCodec.kt
private val Response.isChunked: Boolean get() = "chunked".equals(header("Transfer-Encoding"), ignoreCase = true) private val Request.isChunked: Boolean get() = "chunked".equals(header("Transfer-Encoding"), ignoreCase = true) /** * Received trailers. Null unless the response body uses chunked transfer-encoding and includes * trailers. Undefined until the end of the response body. */
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 16.2K bytes - Viewed (0) -
android/guava/src/com/google/common/io/ReaderInputStream.java
*/ private CharBuffer charBuffer; /** * byteBuffer holds encoded characters that have not yet been sent to the caller of the input * stream. When encoding it is "unflipped" (encoded bytes between 0 and position) and when * draining it is flipped (undrained bytes between position and limit). */ private ByteBuffer byteBuffer;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:26:48 UTC 2024 - 9.3K bytes - Viewed (0)