Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Murray (0.25 sec)

  1. cmd/object-handlers_test.go

    			if err != nil {
    				t.Errorf("MinIO %s: Error decoding the recorded response Body", instanceType)
    				return
    			}
    			// push the obtained upload ID from the response into the array.
    			testUploads.Lock()
    			testUploads.uploads = append(testUploads.uploads, multipartResponse.UploadID)
    			testUploads.Unlock()
    		}()
    	}
    	// Wait till all go routines finishes execution.
    	wg.Wait()
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 160K bytes
    - Viewed (0)
  2. internal/s3select/csv/testdata/testdata.zip

    11:54:59 N 1 -73.860214233398438 40.729549407958984 -73.982475280761719 40.75054931640625 1 7.40 25 0 0.5 0 0 25.5 1 196 170 green 0.00 0.0 0.0 54 40 8.05 1287 717.01 4 Queens 071701 4071701 I QN18 Rego Park 4108 1885 82 1 Manhattan 008200 1008200 I MN20 Murray Hill-Kips Bay 3808 3389316 2 2014-03-24 12:55:16 2014-03-24 12:59:11 N 1 -73.860298156738281 40.729576110839844 -73.852508544921875 40.729724884033203 6 0.99 5 0 0.5 0 0 5.5 2 1 196 95 green 0.00 0.0 0.0 35 21 6.71 1287 717.01 4 Queens 071701 4071701...
    ZIP Archive
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Tue Jun 01 21:59:40 GMT 2021
    - 111.6K bytes
    - Viewed (0)
  3. cmd/storage-datatypes_gen.go

    	if err != nil {
    		err = msgp.WrapError(err, "Error")
    		return
    	}
    	return
    }
    
    // EncodeMsg implements msgp.Encodable
    func (z *DiskInfo) EncodeMsg(en *msgp.Writer) (err error) {
    	// array header, size 18
    	err = en.Append(0xdc, 0x0, 0x12)
    	if err != nil {
    		return
    	}
    	err = en.WriteUint64(z.Total)
    	if err != nil {
    		err = msgp.WrapError(err, "Total")
    		return
    	}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Apr 23 17:15:52 GMT 2024
    - 127.5K bytes
    - Viewed (0)
  4. cmd/data-usage-cache_gen.go

    		err = msgp.WrapError(err, "ReplicaCount")
    		return
    	}
    	return
    }
    
    // EncodeMsg implements msgp.Encodable
    func (z *replicationAllStatsV1) EncodeMsg(en *msgp.Writer) (err error) {
    	// array header, size 3
    	err = en.Append(0x93)
    	if err != nil {
    		return
    	}
    	err = en.WriteMapHeader(uint32(len(z.Targets)))
    	if err != nil {
    		err = msgp.WrapError(err, "Targets")
    		return
    	}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Mar 21 17:21:35 GMT 2024
    - 100.8K bytes
    - Viewed (0)
  5. cmd/server_test.go

    		buffer.WriteString(data)
    	}
    	// String content which is used for put object range test.
    	putBytes := buffer.Bytes()
    	putBytes = putBytes[:randInt]
    	// randomize the order of bytes in the byte array and create a reader.
    	putBytes = randomizeBytes(putBytes, -1)
    	buf := bytes.NewReader(putBytes)
    	putContent := string(putBytes)
    	objectName := "test-big-file"
    	// HTTP request to upload the object.
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 108K bytes
    - Viewed (0)
Back to top