Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for AppendNil (0.24 sec)

  1. cmd/xl-storage-format-v2_gen.go

    		if z.ObjectV1 == nil {
    			o = msgp.AppendNil(o)
    		} else {
    			o, err = z.ObjectV1.MarshalMsg(o)
    			if err != nil {
    				err = msgp.WrapError(err, "ObjectV1")
    				return
    			}
    		}
    	}
    	if (zb0001Mask & 0x4) == 0 { // if not omitted
    		// string "V2Obj"
    		o = append(o, 0xa5, 0x56, 0x32, 0x4f, 0x62, 0x6a)
    		if z.ObjectV2 == nil {
    			o = msgp.AppendNil(o)
    		} else {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Apr 19 16:43:43 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  2. cmd/bucket-stats_gen.go

    	// string "lt"
    	o = append(o, 0xa2, 0x6c, 0x74)
    	if z.XferRateLrg == nil {
    		o = msgp.AppendNil(o)
    	} else {
    		o, err = z.XferRateLrg.MarshalMsg(o)
    		if err != nil {
    			err = msgp.WrapError(err, "XferRateLrg")
    			return
    		}
    	}
    	// string "st"
    	o = append(o, 0xa2, 0x73, 0x74)
    	if z.XferRateSml == nil {
    		o = msgp.AppendNil(o)
    	} else {
    		o, err = z.XferRateSml.MarshalMsg(o)
    		if err != nil {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Feb 06 06:00:45 GMT 2024
    - 57.5K bytes
    - Viewed (0)
  3. cmd/object-api-datatypes_gen.go

    	o = msgp.AppendInt64(o, z.Size)
    	// string "ActualSize"
    	o = append(o, 0xaa, 0x41, 0x63, 0x74, 0x75, 0x61, 0x6c, 0x53, 0x69, 0x7a, 0x65)
    	if z.ActualSize == nil {
    		o = msgp.AppendNil(o)
    	} else {
    		o = msgp.AppendInt64(o, *z.ActualSize)
    	}
    	// string "IsDir"
    	o = append(o, 0xa5, 0x49, 0x73, 0x44, 0x69, 0x72)
    	o = msgp.AppendBool(o, z.IsDir)
    	// string "ETag"
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Mar 08 19:08:18 GMT 2024
    - 69.8K bytes
    - Viewed (0)
Back to top