Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for loadLegacy (0.14 sec)

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

    						ver.header = version.header()
    						ver.meta = meta
    					}
    				}
    			}
    		}
    		return nil
    	})
    }
    
    // loadLegacy will load content prior to v1.3
    // Note that references to the incoming buffer will be kept.
    func (x *xlMetaV2) loadLegacy(buf []byte) error {
    	buf, major, minor, err := checkXL2V1(buf)
    	if err != nil {
    		return fmt.Errorf("xlMetaV2.Load %w", err)
    	}
    	var allMeta []byte
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Apr 23 05:07:37 GMT 2024
    - 63.6K bytes
    - Viewed (1)
Back to top