Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for AppendUint8 (0.42 sec)

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

    	o = append(o, 0x97)
    	o = msgp.AppendBytes(o, (z.VersionID)[:])
    	o = msgp.AppendInt64(o, z.ModTime)
    	o = msgp.AppendBytes(o, (z.Signature)[:])
    	o = msgp.AppendUint8(o, uint8(z.Type))
    	o = msgp.AppendUint8(o, uint8(z.Flags))
    	o = msgp.AppendUint8(o, z.EcN)
    	o = msgp.AppendUint8(o, z.EcM)
    	return
    }
    
    // UnmarshalMsg implements msgp.Unmarshaler
    func (z *xlMetaV2VersionHeader) UnmarshalMsg(bts []byte) (o []byte, err error) {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sun Dec 15 22:50:12 UTC 2024
    - 56K bytes
    - Viewed (0)
  2. cmd/metacache_gen.go

    	o = msgp.AppendBool(o, z.fileNotFound)
    	// string "stat"
    	o = append(o, 0xa4, 0x73, 0x74, 0x61, 0x74)
    	o = msgp.AppendUint8(o, uint8(z.status))
    	// string "rec"
    	o = append(o, 0xa3, 0x72, 0x65, 0x63)
    	o = msgp.AppendBool(o, z.recursive)
    	// string "v"
    	o = append(o, 0xa1, 0x76)
    	o = msgp.AppendUint8(o, z.dataVersion)
    	return
    }
    
    // UnmarshalMsg implements msgp.Unmarshaler
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Mon Nov 08 18:26:08 UTC 2021
    - 10K bytes
    - Viewed (0)
  3. cmd/erasure-server-pool-rebalance_gen.go

    		err = msgp.WrapError(err)
    		return
    	}
    	return
    }
    
    // MarshalMsg implements msgp.Marshaler
    func (z rebalSaveOpts) MarshalMsg(b []byte) (o []byte, err error) {
    	o = msgp.Require(b, z.Msgsize())
    	o = msgp.AppendUint8(o, uint8(z))
    	return
    }
    
    // UnmarshalMsg implements msgp.Unmarshaler
    func (z *rebalSaveOpts) UnmarshalMsg(bts []byte) (o []byte, err error) {
    	{
    		var zb0001 uint8
    		zb0001, bts, err = msgp.ReadUint8Bytes(bts)
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  4. cmd/object-api-interface_gen.go

    	o = msgp.AppendString(o, z.AskDisks)
    	// string "VersionsSort"
    	o = append(o, 0xac, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x53, 0x6f, 0x72, 0x74)
    	o = msgp.AppendUint8(o, uint8(z.VersionsSort))
    	// string "Limit"
    	o = append(o, 0xa5, 0x4c, 0x69, 0x6d, 0x69, 0x74)
    	o = msgp.AppendInt(o, z.Limit)
    	return
    }
    
    // UnmarshalMsg implements msgp.Unmarshaler
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Thu Aug 22 21:57:20 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top