Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for dim_idx (0.08 sec)

  1. cmd/xl-storage.go

    		}
    		diskID := format.Erasure.This
    		if m != ep.SetIdx || n != ep.DiskIdx {
    			storageLogOnceIf(context.Background(),
    				fmt.Errorf("unexpected drive ordering on pool: %s: found drive at (set=%s, drive=%s), expected at (set=%s, drive=%s): %s(%s): %w",
    					humanize.Ordinal(ep.PoolIdx+1), humanize.Ordinal(m+1), humanize.Ordinal(n+1), humanize.Ordinal(ep.SetIdx+1), humanize.Ordinal(ep.DiskIdx+1),
    					s, s.diskID, errInconsistentDisk), "drive-order-format-json")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    			sa := &SockaddrNFC{
    				DeviceIdx:   pp.Dev_idx,
    				TargetIdx:   pp.Target_idx,
    				NFCProtocol: pp.Nfc_protocol,
    			}
    			return sa, nil
    		case NFC_SOCKPROTO_LLCP:
    			pp := (*RawSockaddrNFCLLCP)(unsafe.Pointer(rsa))
    			if uint64(pp.Service_name_len) > uint64(len(pp.Service_name)) {
    				return nil, EINVAL
    			}
    			sa := &SockaddrNFCLLCP{
    				DeviceIdx:      pp.Dev_idx,
    				TargetIdx:      pp.Target_idx,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  3. cmd/xl-storage_test.go

    }
    
    // Initialize a new storage disk.
    func newLocalXLStorageWithDiskIdx(path string, diskIdx int) (*xlStorage, error) {
    	u := url.URL{Path: path}
    	return newXLStorage(Endpoint{
    		URL:     &u,
    		IsLocal: true,
    		PoolIdx: 0,
    		SetIdx:  0,
    		DiskIdx: diskIdx,
    	}, true)
    }
    
    // creates a temp dir and sets up xlStorage layer.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/dwarf.go

    		// want to maintain that here.
    		file := path.Base(name)
    		dir := path.Dir(name)
    		dirIdx, ok := dirNums[dir]
    		if !ok && dir != "." {
    			dirIdx = len(dirNums) + 1
    			dirNums[dir] = dirIdx
    			dirs = append(dirs, dir)
    		}
    		files = append(files, fileDir{base: file, dir: dirIdx})
    
    		// We can't use something that may be dead-code
    		// eliminated from a binary here. proc.go contains
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  5. cmd/erasure-server-pool.go

    		}
    	}
    	return madmin.HealResultItem{}, ObjectNotFound{
    		Bucket: bucket,
    		Object: object,
    	}
    }
    
    func (z *erasureServerPools) getPoolAndSet(id string) (poolIdx, setIdx, diskIdx int, err error) {
    	for poolIdx := range z.serverPools {
    		format := z.serverPools[poolIdx].format
    		for setIdx, set := range format.Erasure.Sets {
    			for i, diskID := range set {
    				if diskID == id {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
Back to top