Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Oobfree (0.09 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    		Locked uint32
    	}
    	NandOobinfo struct {
    		Useecc   uint32
    		Eccbytes uint32
    		Oobfree  [8][2]uint32
    		Eccpos   [32]uint32
    	}
    	NandOobfree struct {
    		Offset uint32
    		Length uint32
    	}
    	NandEcclayout struct {
    		Eccbytes uint32
    		Eccpos   [64]uint32
    		Oobavail uint32
    		Oobfree  [8]NandOobfree
    	}
    	MtdEccStats struct {
    		Corrected uint32
    		Failed    uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  2. src/runtime/metrics_test.go

    		}
    		if !t.Failed() {
    			var gotAlloc, gotFree uint64
    			want := objects.total
    			for i := range objects.alloc.Counts {
    				if objects.alloc.Counts[i] < objects.free.Counts[i] {
    					t.Errorf("found more allocs than frees in object dist bucket %d", i)
    					continue
    				}
    				gotAlloc += objects.alloc.Counts[i]
    				gotFree += objects.free.Counts[i]
    			}
    			if got := gotAlloc - gotFree; got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  3. cmd/xl-storage-format-v2.go

    			x.versions = append(x.versions[:i], x.versions[i+1:]...)
    			// if uv has tiered content we add a
    			// free-version to track it for
    			// asynchronous deletion via scanner.
    			if freeVersion, toFree := ver.ObjectV2.InitFreeVersion(fi); toFree {
    				err = x.addVersion(freeVersion)
    			}
    		}
    
    		if fi.Deleted {
    			err = x.addVersion(ventry)
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
Back to top