Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for AppendNil (0.07 sec)

  1. cmd/erasure-server-pool-decom_gen.go

    	// string "lu"
    	o = append(o, 0xa2, 0x6c, 0x75)
    	o = msgp.AppendTime(o, z.LastUpdate)
    	// string "dec"
    	o = append(o, 0xa3, 0x64, 0x65, 0x63)
    	if z.Decommission == nil {
    		o = msgp.AppendNil(o)
    	} else {
    		o, err = z.Decommission.MarshalMsg(o)
    		if err != nil {
    			err = msgp.WrapError(err, "Decommission")
    			return
    		}
    	}
    	return
    }
    
    // UnmarshalMsg implements msgp.Unmarshaler
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Jul 04 21:02:54 UTC 2022
    - 26.7K bytes
    - Viewed (0)
  2. internal/grid/msg_gen.go

    	// map header, size 3
    	// string "nf"
    	o = append(o, 0x83, 0xa2, 0x6e, 0x66)
    	o = msgp.AppendBool(o, z.NotFound)
    	// string "e"
    	o = append(o, 0xa1, 0x65)
    	if z.Err == nil {
    		o = msgp.AppendNil(o)
    	} else {
    		o = msgp.AppendString(o, *z.Err)
    	}
    	// string "t"
    	o = append(o, 0xa1, 0x74)
    	o = msgp.AppendTime(o, z.T)
    	return
    }
    
    // UnmarshalMsg implements msgp.Unmarshaler
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Jul 25 21:07:21 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  3. cmd/storage-datatypes_gen.go

    		return
    	}
    	if z.Data == nil { // allownil: if nil
    		o = msgp.AppendNil(o)
    	} else {
    		o = msgp.AppendBytes(o, z.Data)
    	}
    	o = msgp.AppendInt(o, z.NumVersions)
    	o = msgp.AppendTime(o, z.SuccessorModTime)
    	o = msgp.AppendBool(o, z.Fresh)
    	o = msgp.AppendInt(o, z.Idx)
    	if z.Checksum == nil { // allownil: if nil
    		o = msgp.AppendNil(o)
    	} else {
    		o = msgp.AppendBytes(o, z.Checksum)
    	}
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Oct 22 15:30:50 UTC 2024
    - 150.2K bytes
    - Viewed (0)
  4. cmd/data-usage-cache_gen.go

    		o = msgp.AppendUint64(o, z.ObjVersions[za0002])
    	}
    	if (zb0001Mask & 0x80) == 0 { // if not omitted
    		// string "ats"
    		o = append(o, 0xa3, 0x61, 0x74, 0x73)
    		if z.AllTierStats == nil {
    			o = msgp.AppendNil(o)
    		} else {
    			o, err = z.AllTierStats.MarshalMsg(o)
    			if err != nil {
    				err = msgp.WrapError(err, "AllTierStats")
    				return
    			}
    		}
    	}
    	// string "c"
    	o = append(o, 0xa1, 0x63)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Oct 22 15:30:50 UTC 2024
    - 75K bytes
    - Viewed (0)
  5. 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"
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 70.1K bytes
    - Viewed (0)
Back to top