Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 54 for uncompressed (0.21 sec)

  1. okhttp/src/main/kotlin/okhttp3/WebSocket.kt

      fun request(): Request
    
      /**
       * Returns the size in bytes of all messages enqueued to be transmitted to the server. This
       * doesn't include framing overhead. If compression is enabled, uncompressed messages size
       * is used to calculate this value. It also doesn't include any bytes buffered by the operating
       * system or network intermediaries. This method returns 0 if no messages are waiting in the
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. src/compress/gzip/gzip.go

    // A Writer is an io.WriteCloser.
    // Writes to a Writer are compressed and written to w.
    type Writer struct {
    	Header      // written at first call to Write, Flush, or Close
    	w           io.Writer
    	level       int
    	wroteHeader bool
    	closed      bool
    	buf         [10]byte
    	compressor  *flate.Writer
    	digest      uint32 // CRC-32, IEEE polynomial (section 8)
    	size        uint32 // Uncompressed size (section 2.3.1)
    	err         error
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/core-plugins/distribution_plugin.adoc

    The files will be created at `__layout.buildDirectory.dir__("distributions/__${project.name}__-__${project.version}__.__«ext»__")`.
    
    You can run `gradle installDist` to assemble the uncompressed distribution into `__layout.buildDirectory.dir__("install/__${project.name}__")`.
    
    [[sec:distribution_tasks]]
    == Tasks
    
    The Distribution Plugin adds a number of tasks to your project, as shown below.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  4. src/crypto/ecdh/ecdh.go

    	NewPrivateKey(key []byte) (*PrivateKey, error)
    
    	// NewPublicKey checks that key is valid and returns a PublicKey.
    	//
    	// For NIST curves, this decodes an uncompressed point according to SEC 1,
    	// Version 2.0, Section 2.3.4. Compressed encodings and the point at
    	// infinity are rejected.
    	//
    	// For X25519, this only checks the u-coordinate length. Adversarially
    	// selected public keys can cause ECDH to return an error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. src/compress/lzw/reader.go

    		r.bits |= uint32(x) << (24 - r.nBits)
    		r.nBits += 8
    	}
    	code := uint16(r.bits >> (32 - r.width))
    	r.bits <<= r.width
    	r.nBits -= r.width
    	return code, nil
    }
    
    // Read implements io.Reader, reading uncompressed bytes from its underlying [Reader].
    func (r *Reader) Read(b []byte) (int, error) {
    	for {
    		if len(r.toRead) > 0 {
    			n := copy(b, r.toRead)
    			r.toRead = r.toRead[n:]
    			return n, nil
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 14:39:39 UTC 2023
    - 8K bytes
    - Viewed (0)
  6. okhttp-brotli/src/main/kotlin/okhttp3/brotli/internal/Uncompress.kt

    import okhttp3.ResponseBody.Companion.asResponseBody
    import okhttp3.internal.http.promisesBody
    import okio.GzipSource
    import okio.buffer
    import okio.source
    import org.brotli.dec.BrotliInputStream
    
    fun uncompress(response: Response): Response {
      if (!response.promisesBody()) {
        return response
      }
      val body = response.body
      val encoding = response.header("Content-Encoding") ?: return response
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 01 13:19:01 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. src/compress/zlib/reader.go

    // license that can be found in the LICENSE file.
    
    /*
    Package zlib implements reading and writing of zlib format compressed data,
    as specified in RFC 1950.
    
    The implementation provides filters that uncompress during reading
    and compress during writing.  For example, to write compressed data
    to a buffer:
    
    	var b bytes.Buffer
    	w := zlib.NewWriter(&b)
    	w.Write([]byte("hello, world\n"))
    	w.Close()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/DefaultDecompressionCoordinator.java

    import org.gradle.cache.internal.ProducerGuard;
    import org.gradle.cache.scopes.ScopedCacheBuilderFactory;
    
    import java.io.File;
    
    /**
     * The default implementation of {@link DecompressionCoordinator} that can be used to store decompressed data extracted from archive files like zip and tars.
     *
     * Will manage access to the cache, so that access to the archive's contents are only permitted to one client at a time.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. src/internal/zstd/literals.go

    	if totalStreamsSize < 6 {
    		return nil, r.makeError(off, "total streams size too small for jump table")
    	}
    	// RFC 3.1.1.3.1.6.
    	// "The decompressed size of each stream is equal to (Regenerated_Size+3)/4,
    	// except for the last stream, which may be up to 3 bytes smaller,
    	// to reach a total decompressed size as specified in Regenerated_Size."
    	regeneratedStreamSize := (regeneratedSize + 3) / 4
    	if regeneratedSize < regeneratedStreamSize*3 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 14:30:10 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  10. docs/distributed/decom-compressed-sse-s3.sh

    Harshavardhana <******@****.***> 1716837466 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top