Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for heddle (0.29 sec)

  1. cmd/object-handlers.go

    		if opts.PartNumber > 0 {
    			writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrInvalidRangePartNumber), r.URL)
    			return
    		}
    
    		rs, rangeErr = parseRequestRangeSpec(rangeHeader)
    		// Handle only errInvalidRange. Ignore other
    		// parse error and treat it as regular Get
    		// request like Amazon S3.
    		if errors.Is(rangeErr, errInvalidRange) {
    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. internal/s3select/csv/testdata/testdata.zip

    N 1 -73.861488342285156 40.7301025390625 -73.870231628417969 40.725795745849609 1 1.10 6.5 0 0.5 1.75 0 8.75 1 196 160 green 1.81 0.0 0.0 59 43 10.74 1287 717.01 4 Queens 071701 4071701 I QN18 Rego Park 4108 738 679 4 Queens 067900 4067900 I QN21 Middle Village 4110 3389287 2 2014-03-14 19:56:46 2014-03-14 20:04:00 N 1 -73.862480163574219 40.730445861816406 -73.842384338378906 40.722946166992187 1 2.60 9 1 0.5 0 0 10.5 2 1 196 95 green 0.00 0.0 0.0 46 22 5.59 1287 717.01 4 Queens 071701 4071701 I...
    ZIP Archive
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Jun 01 21:59:40 GMT 2021
    - 111.6K bytes
    - Viewed (0)
  3. cmd/bucket-replication.go

    	pool.ResizeFailedWorkers(failedWorkers)
    	go pool.resyncer.PersistToDisk(ctx, o)
    	go pool.processMRF()
    	go pool.persistMRF()
    	return pool
    }
    
    // AddMRFWorker adds a pending/failed replication worker to handle requests that could not be queued
    // to the other workers
    func (p *ReplicationPool) AddMRFWorker() {
    	for {
    		select {
    		case <-p.ctx.Done():
    			return
    		case oi, ok := <-p.mrfReplicaCh:
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 112.2K bytes
    - Viewed (1)
  4. cmd/object-handlers_test.go

    				"bytes=1-",
    				// Read first half of object
    				fmt.Sprintf("bytes=%d-%d", 0, objLen/2),
    				// Read last half of object
    				fmt.Sprintf("bytes=-%d", objLen/2),
    				// Read middle half of object
    				fmt.Sprintf("bytes=%d-%d", objLen/4, objLen*3/4),
    				// Read 100MiB of the object from the beginning
    				fmt.Sprintf("bytes=%d-%d", 0, 100*humanize.MiByte),
    				// Read 100MiB of the object from the end
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 160K bytes
    - Viewed (0)
Back to top