Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for driverPath (0.16 sec)

  1. pkg/volume/flexvolume/probe_test.go

    	// Call probe after a file is added. Should return 1 event.
    
    	// add driver
    	const driverName2 = "fake-driver2"
    	driverPath := filepath.Join(pluginDir, driverName2)
    	executablePath := filepath.Join(driverPath, driverName2)
    	installDriver(driverName2, fs)
    	watcher.TriggerEvent(fsnotify.Create, driverPath)
    	watcher.TriggerEvent(fsnotify.Create, executablePath)
    
    	// Act
    	events, err = prober.Probe()
    
    	// Assert
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 28 11:14:00 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    func (data *DrvInfoData) IsNewer(driverDate Filetime, driverVersion uint64) bool {
    	if data.DriverDate.HighDateTime > driverDate.HighDateTime {
    		return true
    	}
    	if data.DriverDate.HighDateTime < driverDate.HighDateTime {
    		return false
    	}
    
    	if data.DriverDate.LowDateTime > driverDate.LowDateTime {
    		return true
    	}
    	if data.DriverDate.LowDateTime < driverDate.LowDateTime {
    		return false
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  3. cluster/gce/gci/flexvolume_node_setup.sh

          driver_file=$(cd "$driver_dir"; find . -mindepth 1 -maxdepth 1 -print0 | xargs -0 -n1 basename | head -n 1)
    
          # driver_path points to the actual driver inside the mount utility image,
          # relative to image root.
          # wrapper_path is the wrapper script location, which is known to kubelet.
          driver_path=flexvolume/$( basename "$driver_dir" )/${driver_file}
          wrapper_dir=${VOLUME_PLUGIN_DIR}/$( basename "$driver_dir" )
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 13 17:58:51 UTC 2020
    - 5.8K bytes
    - Viewed (0)
  4. cmd/xl-storage.go

    			return dcinfo, err
    		},
    	)
    
    	// Success.
    	return s, nil
    }
    
    // getDiskInfo returns given disk information.
    func getDiskInfo(drivePath string) (di disk.Info, err error) {
    	if err = checkPathLength(drivePath); err == nil {
    		di, err = disk.GetInfo(drivePath, false)
    	}
    	switch {
    	case osIsNotExist(err):
    		err = errDiskNotFound
    	case isSysErrTooLong(err):
    		err = errFileNameTooLong
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
  5. cmd/erasure-multipart.go

    func (er erasureObjects) cleanupStaleUploadsOnDisk(ctx context.Context, disk StorageAPI, expiry time.Duration) {
    	drivePath := disk.Endpoint().Path
    
    	readDirFn(pathJoin(drivePath, minioMetaMultipartBucket), func(shaDir string, typ os.FileMode) error {
    		readDirFn(pathJoin(drivePath, minioMetaMultipartBucket, shaDir), func(uploadIDDir string, typ os.FileMode) error {
    			uploadIDPath := pathJoin(shaDir, uploadIDDir)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  6. cmd/erasure.go

    		wg.Add(1)
    		go func(disk StorageAPI) {
    			defer wg.Done()
    			drivePath := disk.Endpoint().Path
    			readDirFn(pathJoin(drivePath, minioMetaTmpDeletedBucket), func(ddir string, typ os.FileMode) error {
    				w := xioutil.NewDeadlineWorker(globalDriveConfig.GetMaxTimeout())
    				return w.Run(func() error {
    					wait := deleteCleanupSleeper.Timer(ctx)
    					removeAll(pathJoin(drivePath, minioMetaTmpDeletedBucket, ddir))
    					wait()
    					return nil
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. cmd/metrics-v3-system-drive.go

    	for _, disk := range driveMetrics.storageInfo.Disks {
    		labels := []string{
    			driveL, disk.DrivePath,
    			poolIndexL, strconv.Itoa(disk.PoolIndex),
    			setIndexL, strconv.Itoa(disk.SetIndex),
    			driveIndexL, strconv.Itoa(disk.DiskIndex),
    		}
    
    		m.setDriveBasicMetrics(disk, labels)
    		if dm, found := driveMetrics.ioStats[disk.DrivePath]; found {
    			m.setDriveIOStatMetrics(dm, labels)
    		}
    		m.setDriveAPIMetrics(disk, labels)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun May 12 17:23:50 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. cmd/metrics.go

    			float64(disk.UsedSpace),
    			disk.DrivePath,
    		)
    
    		// Total available space in the disk
    		ch <- prometheus.MustNewConstMetric(
    			prometheus.NewDesc(
    				prometheus.BuildFQName(diskNamespace, "storage", "available"),
    				"Total available space left on the drive",
    				[]string{"disk"}, nil),
    			prometheus.GaugeValue,
    			float64(disk.AvailableSpace),
    			disk.DrivePath,
    		)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. cmd/metrics-v2.go

    				Value:          float64(disk.UsedSpace),
    				VariableLabels: map[string]string{"drive": disk.DrivePath},
    			})
    
    			metrics = append(metrics, MetricV2{
    				Description:    getNodeDriveFreeBytesMD(),
    				Value:          float64(disk.AvailableSpace),
    				VariableLabels: map[string]string{"drive": disk.DrivePath},
    			})
    
    			metrics = append(metrics, MetricV2{
    				Description:    getNodeDriveTotalBytesMD(),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  10. cmd/admin-handlers.go

    }
    
    // anonymizeHost - Add entries related to given endpoint in the host anonymizer map
    // The health report data can contain the hostname in various forms e.g. host, host:port,
    // host:port/drivepath, full url (http://host:port/drivepath)
    // The anonymizer map will have mappings for all these variants for efficiently replacing
    // any of these strings to the anonymized versions at the time of health report generation.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
Back to top