Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DriverPath (0.09 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

    	_                        uint32
    	driverPath               [MAX_PATH]uint16
    }
    
    func (params *DevInstallParams) DriverPath() string {
    	return UTF16ToString(params.driverPath[:])
    }
    
    func (params *DevInstallParams) SetDriverPath(driverPath string) error {
    	str, err := UTF16FromString(driverPath)
    	if err != nil {
    		return err
    	}
    	copy(params.driverPath[:], str)
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
Back to top