Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for 20 (0.12 sec)

  1. cmd/object-handlers.go

    const (
    	compressionAlgorithmV1 = "golang/snappy/LZ77"
    	compressionAlgorithmV2 = "klauspost/compress/s2"
    
    	// When an upload exceeds encryptBufferThreshold ...
    	encryptBufferThreshold = 1 << 20
    	// add an input buffer of this size.
    	encryptBufferSize = 1 << 20
    
    	// minCompressibleSize is the minimum size at which we enable compression.
    	minCompressibleSize = 4096
    )
    
    // setHeadGetRespHeaders - set any requested parameters as response headers.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu May 02 20:15:54 GMT 2024
    - 125.2K bytes
    - Viewed (0)
  2. cmd/metrics-v2.go

    			return
    		}
    
    		openFDs, _ := p.FileDescriptorsLen()
    		l, _ := p.Limits()
    		io, _ := p.IO()
    		stat, _ := p.Stat()
    		startTime, _ := stat.StartTime()
    
    		metrics = make([]MetricV2, 0, 20)
    
    		if openFDs > 0 {
    			metrics = append(metrics,
    				MetricV2{
    					Description: getMinioFDOpenMD(),
    					Value:       float64(openFDs),
    				},
    			)
    		}
    
    		if l.OpenFiles > 0 {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 132.6K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/callback.go

    func stack12()   { var buf [12]byte; use(buf[:]); C.callGoStackCheck() }
    func stack16()   { var buf [16]byte; use(buf[:]); C.callGoStackCheck() }
    func stack20()   { var buf [20]byte; use(buf[:]); C.callGoStackCheck() }
    func stack24()   { var buf [24]byte; use(buf[:]); C.callGoStackCheck() }
    func stack28()   { var buf [28]byte; use(buf[:]); C.callGoStackCheck() }
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri May 12 12:00:02 GMT 2023
    - 111.5K bytes
    - Viewed (0)
Back to top