Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 98 for colName (0.12 sec)

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

    func nametomib(name string) (mib []_C_int, err error) {
    	i := sort.Search(len(sysctlMib), func(i int) bool {
    		return sysctlMib[i].ctlname >= name
    	})
    	if i < len(sysctlMib) && sysctlMib[i].ctlname == name {
    		return sysctlMib[i].ctloid, nil
    	}
    	return nil, EINVAL
    }
    
    func direntIno(buf []byte) (uint64, bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 11K bytes
    - Viewed (0)
  2. cmd/erasure-sets.go

    					return nil
    				}
    				return err
    			}
    			for _, volName := range volsInfo {
    				vi, err := storageDisks[index].StatVol(ctx, pathJoin(minioMetaBucket, bucketMetaPrefix, deletedBucketsPrefix, volName))
    				if err == nil {
    					vi.Name = strings.TrimSuffix(volName, SlashSeparator)
    					mu.Lock()
    					if _, ok := delBuckets[volName]; !ok {
    						delBuckets[volName] = vi
    					}
    					mu.Unlock()
    				}
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  3. pkg/volume/iscsi/attacher.go

    		klog.Warningf("failed to get iscsi mounter: %v", err)
    		return "", err
    	}
    	if mounter.InitiatorName != "" {
    		// new iface name is <target portal>:<volume name>
    		mounter.Iface = mounter.Portals[0] + ":" + mounter.VolName
    	}
    	return attacher.manager.MakeGlobalPDName(*mounter.iscsiDisk), nil
    }
    
    func (attacher *iscsiAttacher) MountDevice(spec *volume.Spec, devicePath string, deviceMountPath string, mountArgs volume.DeviceMounterArgs) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 04 08:51:31 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  4. pkg/volume/csi/csi_attacher.go

    	return nil
    }
    
    // getAttachmentName returns csi-<sha256(volName,csiDriverName,NodeName)>
    func getAttachmentName(volName, csiDriverName, nodeName string) string {
    	result := sha256.Sum256([]byte(fmt.Sprintf("%s%s%s", volName, csiDriverName, nodeName)))
    	return fmt.Sprintf("csi-%x", result)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 07:38:14 UTC 2023
    - 25.9K bytes
    - Viewed (0)
  5. pkg/controller/volume/expand/expand_controller.go

    	return expc.kubeClient
    }
    
    func (expc *expandController) NewWrapperMounter(volName string, spec volume.Spec, pod *v1.Pod, opts volume.VolumeOptions) (volume.Mounter, error) {
    	return nil, fmt.Errorf("NewWrapperMounter not supported by expand controller's VolumeHost implementation")
    }
    
    func (expc *expandController) NewWrapperUnmounter(volName string, spec volume.Spec, podUID types.UID) (volume.Unmounter, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  6. pkg/volume/csi/csi_plugin.go

    	}
    
    	return mapper, nil
    }
    
    func (p *csiPlugin) NewBlockVolumeUnmapper(volName string, podUID types.UID) (volume.BlockVolumeUnmapper, error) {
    	klog.V(4).Infof(log("setting up block unmapper for [Spec=%v, podUID=%v]", volName, podUID))
    	unmapper := &csiBlockMapper{
    		plugin:   p,
    		podUID:   podUID,
    		specName: volName,
    	}
    
    	// load volume info from file
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_volumes_test.go

    	return nil
    }
    
    type stubBlockVolume struct {
    	dirPath string
    	volName string
    }
    
    func (f *stubBlockVolume) GetGlobalMapPath(spec *volume.Spec) (string, error) {
    	return "", nil
    }
    
    func (f *stubBlockVolume) GetPodDeviceMapPath() (string, string) {
    	return f.dirPath, f.volName
    }
    
    func (f *stubBlockVolume) SetUpDevice() (string, error) {
    	return "", nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 17 16:53:28 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  8. migrator/migrator.go

    		str := stmt.Quote(opt.DBName)
    		if opt.Expression != "" {
    			str = opt.Expression
    		} else if opt.Length > 0 {
    			str += fmt.Sprintf("(%d)", opt.Length)
    		}
    
    		if opt.Collate != "" {
    			str += " COLLATE " + opt.Collate
    		}
    
    		if opt.Sort != "" {
    			str += " " + opt.Sort
    		}
    		results = append(results, clause.Expr{SQL: str})
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Apr 26 07:15:49 UTC 2024
    - 29K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/devicemanager/manager_test.go

    	for podUID, containerDevices := range expectedPodDevices.devs {
    		for conName, resources := range containerDevices {
    			for resource := range resources {
    				expDevices := expectedPodDevices.containerDevices(podUID, conName, resource)
    				testDevices := testManager.podDevices.containerDevices(podUID, conName, resource)
    				as.True(reflect.DeepEqual(expDevices, testDevices))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_ppc.go

    	Max     int32
    	Min     int32
    	Posmult int32
    	Negmult int32
    	Clock   int32
    }
    
    type BlkpgPartition struct {
    	Start   int64
    	Length  int64
    	Pno     int32
    	Devname [64]uint8
    	Volname [64]uint8
    	_       [4]byte
    }
    
    const (
    	BLKPG = 0x20001269
    )
    
    type CryptoUserAlg struct {
    	Name        [64]uint8
    	Driver_name [64]uint8
    	Module_name [64]uint8
    	Type        uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.4K bytes
    - Viewed (0)
Back to top