Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 117 for xl (0.01 sec)

  1. buildscripts/cicd-corpus/disk4/bucket/testobj/xl.meta

    Harshavardhana <******@****.***> 1650484145 -0700
    Registered: 2025-05-25 19:28
    - Last Modified: 2022-04-20 19:49
    - 1K bytes
    - Viewed (0)
  2. cmd/xl-storage-format-utils_test.go

    		NumVersions:      1,
    		SuccessorModTime: time.Time{},
    	}
    	xl := xlMetaV2{}
    	var versions []FileInfo
    	var allVersionIDs, freeVersionIDs []string
    	for i := 0; i < 5; i++ {
    		fi := basefi
    		fi.VersionID = mustGetUUID()
    		fi.DataDir = mustGetUUID()
    		fi.ModTime = basefi.ModTime.Add(time.Duration(i) * time.Second)
    		if err := xl.AddVersion(fi); err != nil {
    			t.Fatalf("%d: Failed to add version %v", i+1, err)
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-08-08 15:29
    - 7.1K bytes
    - Viewed (0)
  3. cmd/xl-storage_noatime_notsupported.go

    package cmd
    
    import (
    	"os"
    )
    
    var (
    	// No special option for reads on windows
    	readMode = os.O_RDONLY
    
    	// Write with sync no buffering only used only for `xl.meta` writes
    	writeMode = os.O_SYNC
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-07-23 16:36
    - 1001 bytes
    - Viewed (0)
  4. buildscripts/cicd-corpus/disk2/bucket/testobj/xl.meta

    Harshavardhana <******@****.***> 1650484145 -0700
    Registered: 2025-05-25 19:28
    - Last Modified: 2022-04-20 19:49
    - 531 bytes
    - Viewed (0)
  5. buildscripts/cicd-corpus/disk5/bucket/testobj/xl.meta

    Harshavardhana <******@****.***> 1650484145 -0700
    Registered: 2025-05-25 19:28
    - Last Modified: 2022-04-20 19:49
    - 531 bytes
    - Viewed (0)
  6. cmd/xl-storage_noatime_supported.go

    var (
    	// Disallow updating access times
    	// Add non-block to avoid syscall to attempt to set epoll on files.
    	readMode = os.O_RDONLY | 0x40000 | syscall.O_NONBLOCK // O_NOATIME
    
    	// Write with data sync only used only for `xl.meta` writes
    	writeMode = 0x1000 | syscall.O_NONBLOCK // O_DSYNC
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-07-23 16:36
    - 1.1K bytes
    - Viewed (0)
  7. buildscripts/cicd-corpus/disk3/bucket/testobj/xl.meta

    Harshavardhana <******@****.***> 1650484145 -0700
    Registered: 2025-05-25 19:28
    - Last Modified: 2022-04-20 19:49
    - 531 bytes
    - Viewed (0)
  8. cmd/testdata/xl.meta

    Harshavardhana <******@****.***> 1610360824 -0800
    Registered: 2025-05-25 19:28
    - Last Modified: 2021-01-11 10:27
    - 303 bytes
    - Viewed (0)
  9. cmd/testdata/xl.meta-corrupt.gz

    xl.meta-corrupt...
    Registered: 2025-05-25 19:28
    - Last Modified: 2022-03-14 16:07
    - 1M bytes
    - Viewed (0)
  10. cmd/xl-storage.go

    	// bigFileThreshold is the point where we add readahead to put operations.
    	bigFileThreshold = 128 * humanize.MiByte
    
    	// XL metadata file carries per object metadata.
    	xlStorageFormatFile = "xl.meta"
    
    	// XL metadata file backup file carries previous per object metadata.
    	xlStorageFormatFileBackup = "xl.meta.bkp"
    )
    
    var alignedBuf []byte
    
    func init() {
    	alignedBuf = disk.AlignedBlock(xioutil.DirectioAlignSize)
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-04-25 05:41
    - 91.7K bytes
    - Viewed (0)
Back to top