Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for vSphere (0.18 sec)

  1. pkg/volume/util/hostutil/hostutil.go

    	PathIsDevice(pathname string) (bool, error)
    	// GetDeviceNameFromMount finds the device name by checking the mount path
    	// to get the global mount path within its plugin directory.
    	// TODO: Remove this method once the rbd and vsphere plugins are removed from in-tree.
    	GetDeviceNameFromMount(mounter mount.Interface, mountPath, pluginMountDir string) (string, error)
    	// MakeRShared checks that given path is on a mount with 'rshared' mount
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 13:38:40 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/version/DefaultVswhereVersionLocatorTest.groovy

        }
    
        def "finds vswhere executable in system path"() {
            given:
            vswhereInPath()
    
            expect:
            locator.getVswhereInstall().absolutePath == vswhere.absolutePath
        }
    
        def "finds vswhere executable in system path if vswhere executable in Program Files is not a file"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/version/VswhereSpec.groovy

            x86Registry()
            vswhere = programFiles.createDir("Microsoft Visual Studio/Installer").createFile("vswhere.exe")
        }
    
        void vswhereInProgramFilesX86() {
            x64Registry()
            vswhere = programFilesX86.createDir("Microsoft Visual Studio/Installer").createFile("vswhere.exe")
        }
    
        void vswhereNotFound() {
            x64Registry()
        }
    
        void vswhereNotFoundX86Registry() {
            x86Registry()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/version/CommandLineToolVersionLocatorTest.groovy

        def locator = new CommandLineToolVersionLocator(execActionFactory, visualCppMetadataProvider, vswhereLocator)
    
        def setup() {
            _ * vswhereLocator.getVswhereInstall() >> { vswhere }
        }
    
        def "finds all versions of visual studio using vswhere"() {
            given:
            validInstallations()
            vswhereInProgramFiles()
            vswhereResults(vsWhereManyVersions(localRoot))
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/fixtures/MSBuildVersionLocator.java

            } else {
                vsVersion = VersionNumber.version(15);
            }
    
            File vswhere = vswhereLocator.getVswhereInstall();
            if (vswhere == null) {
                throw new IllegalStateException("vswhere tool is required to be installed");
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/version/DefaultVswhereVersionLocator.java

        private static final String VISUAL_STUDIO_INSTALLER = "Microsoft Visual Studio/Installer";
        private static final String VSWHERE_EXE = "vswhere.exe";
    
        public DefaultVswhereVersionLocator(WindowsRegistry windowsRegistry, OperatingSystem os) {
            this.windowsRegistry = windowsRegistry;
            this.os = os;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/version/CommandLineToolVersionLocator.java

            ExecResult result = exec.execute();
    
            int exitValue = result.getExitValue();
            if (exitValue == 0) {
                return buffer.readAsString("UTF-8");
            } else {
                LOGGER.debug("vswhere.exe returned a non-zero exit value ({}) - ignoring", result.getExitValue());
                return null;
            }
        }
    
        private List<VisualStudioInstallCandidate> parseJson(String json) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.1K bytes
    - Viewed (0)
Back to top