Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 102 for uncompressed (0.41 sec)

  1. internal/s3select/message.go

    //   - BytesScanned => Number of bytes that have been processed before being uncompressed (if the file is compressed).
    //   - BytesProcessed => Number of bytes that have been processed after being uncompressed (if the file is compressed).
    //   - BytesReturned => Current number of bytes of records payload data returned by S3.
    //
    // For uncompressed files, BytesScanned and BytesProcessed are equal.
    //
    // Example:
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 30 15:26:43 UTC 2022
    - 15.2K bytes
    - Viewed (0)
  2. src/net/http/response.go

    	// ReadResponse nor Response.Write ever closes a connection.
    	Close bool
    
    	// Uncompressed reports whether the response was sent compressed but
    	// was decompressed by the http package. When true, reading from
    	// Body yields the uncompressed content instead of the compressed
    	// content actually set from the server, ContentLength is set to -1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. src/crypto/elliptic/elliptic_test.go

    		_, x, y, _ := GenerateKey(curve, rand.Reader)
    		b.Run("Uncompressed", func(b *testing.B) {
    			b.ReportAllocs()
    			for i := 0; i < b.N; i++ {
    				buf := Marshal(curve, x, y)
    				xx, yy := Unmarshal(curve, buf)
    				if xx.Cmp(x) != 0 || yy.Cmp(y) != 0 {
    					b.Error("Unmarshal output different from Marshal input")
    				}
    			}
    		})
    		b.Run("Compressed", func(b *testing.B) {
    			b.ReportAllocs()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 27 02:00:03 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  4. src/net/http/roundtrip_js.go

    		}
    
    		code := result.Get("status").Int()
    
    		uncompressed := false
    		if ascii.EqualFold(header.Get("Content-Encoding"), "gzip") {
    			// The fetch api will decode the gzip, but Content-Encoding not be deleted.
    			header.Del("Content-Encoding")
    			header.Del("Content-Length")
    			contentLength = -1
    			uncompressed = true
    		}
    
    		respCh <- &Response{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. src/internal/zstd/zstd.go

    			return r.makeError(relativeOffset, "too many uncompressed bytes in frame")
    		}
    		r.remainingFrameSize -= uint64(len(r.buffer))
    	}
    
    	if r.hasChecksum {
    		r.checksum.update(r.buffer)
    	}
    
    	if !lastBlock {
    		r.window.save(r.buffer)
    	} else {
    		if !r.frameSizeUnknown && r.remainingFrameSize != 0 {
    			return r.makeError(relativeOffset, "not enough uncompressed bytes for frame")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 04:10:45 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. src/time/zoneinfo_read.go

    			return i
    		}
    	}
    	return -1
    }
    
    // loadTzinfoFromDirOrZip returns the contents of the file with the given name
    // in dir. dir can either be an uncompressed zip file, or a directory.
    func loadTzinfoFromDirOrZip(dir, name string) ([]byte, error) {
    	if len(dir) > 4 && dir[len(dir)-4:] == ".zip" {
    		return loadTzinfoFromZip(dir, name)
    	}
    	if dir != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/zip/zip.go

    //
    // • The total size in bytes of a module zip file may be at most [MaxZipFile]
    // bytes (500 MiB). The total uncompressed size of the files within the
    // zip may also be at most [MaxZipFile] bytes.
    //
    // • Each file's uncompressed size must match its declared 64-bit uncompressed
    // size in the zip file header.
    //
    // • If the zip contains files named "<module>@<version>/go.mod" or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 31K bytes
    - Viewed (0)
  8. src/compress/flate/inflate.go

    			f.stepState = stateDict
    			return
    		}
    		goto readLiteral
    	}
    }
    
    // Copy a single uncompressed data block from input to output.
    func (f *decompressor) dataBlock() {
    	// Uncompressed.
    	// Discard current half-byte.
    	f.nb = 0
    	f.b = 0
    
    	// Length then ones-complement of length.
    	nr, err := io.ReadFull(f.r, f.buf[0:4])
    	f.roffset += int64(nr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  9. src/crypto/internal/nistec/p256.go

    	p.z.One()
    	return p
    }
    
    // Set sets p = q and returns p.
    func (p *P256Point) Set(q *P256Point) *P256Point {
    	p.x.Set(q.x)
    	p.y.Set(q.y)
    	p.z.Set(q.z)
    	return p
    }
    
    // SetBytes sets p to the compressed, uncompressed, or infinity value encoded in
    // b, as specified in SEC 1, Version 2.0, Section 2.3.4. If the point is not on
    // the curve, it returns nil and an error, and the receiver is unchanged.
    // Otherwise, it returns p.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. src/crypto/internal/nistec/p256_asm.go

    	p.x, p.y, p.z = q.x, q.y, q.z
    	return p
    }
    
    const p256ElementLength = 32
    const p256UncompressedLength = 1 + 2*p256ElementLength
    const p256CompressedLength = 1 + p256ElementLength
    
    // SetBytes sets p to the compressed, uncompressed, or infinity value encoded in
    // b, as specified in SEC 1, Version 2.0, Section 2.3.4. If the point is not on
    // the curve, it returns nil and an error, and the receiver is unchanged.
    // Otherwise, it returns p.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
Back to top