Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for MarshalMsg (0.05 sec)

  1. cmd/storage-datatypes_gen.go

    	for za0003 := range z.Parts {
    		o, err = z.Parts[za0003].MarshalMsg(o)
    		if err != nil {
    			err = msgp.WrapError(err, "Parts", za0003)
    			return
    		}
    	}
    	o, err = z.Erasure.MarshalMsg(o)
    	if err != nil {
    		err = msgp.WrapError(err, "Erasure")
    		return
    	}
    	o = msgp.AppendBool(o, z.MarkDeleted)
    	o, err = z.ReplicationState.MarshalMsg(o)
    	if err != nil {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Oct 22 15:30:50 UTC 2024
    - 150.2K bytes
    - Viewed (0)
  2. cmd/bucket-replication.go

    	// Initialize the resync meta header.
    	binary.LittleEndian.PutUint16(data[0:2], resyncMetaFormat)
    	binary.LittleEndian.PutUint16(data[2:4], resyncMetaVersion)
    
    	buf, err := brs.MarshalMsg(data)
    	if err != nil {
    		return err
    	}
    
    	configFile := path.Join(bucketMetaPrefix, bucket, replicationDir, resyncFileName)
    	return saveConfig(ctx, objectAPI, configFile, buf)
    }
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Oct 10 06:49:55 UTC 2024
    - 116.1K bytes
    - Viewed (0)
  3. cmd/site-replication.go

    	// Initialize the resync meta header.
    	binary.LittleEndian.PutUint16(data[0:2], siteResyncMetaFormat)
    	binary.LittleEndian.PutUint16(data[2:4], siteResyncMetaVersion)
    
    	buf, err := ss.MarshalMsg(data)
    	if err != nil {
    		return err
    	}
    	return saveConfig(ctx, objectAPI, getSRResyncFilePath(ss.DeplID), buf)
    }
    
    func getSRResyncFilePath(dID string) string {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Aug 15 12:04:40 UTC 2024
    - 185.1K bytes
    - Viewed (0)
Back to top