Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for WindowsRegistry (0.16 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AvailableJavaHomes.java

            }
            return jvms;
        }
    
        private static List<InstallationSupplier> defaultInstallationSuppliers(ToolchainConfiguration toolchainConfiguration) {
            WindowsRegistry windowsRegistry = NativeServicesTestFixture.getInstance().get(WindowsRegistry.class);
            return Lists.newArrayList(
                new AsdfInstallationSupplier(toolchainConfiguration),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/services/NativeServices.java

            return new FallbackConsoleDetector();
        }
    
        @Provides
        protected WindowsRegistry createWindowsRegistry(OperatingSystem operatingSystem) {
            if (useNativeIntegrations && operatingSystem.isWindows()) {
                return net.rubygrapefruit.platform.Native.get(WindowsRegistry.class);
            }
            return notAvailable(WindowsRegistry.class, operatingSystem);
        }
    
        @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:39 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/version/DefaultVswhereVersionLocatorTest.groovy

     */
    
    package org.gradle.nativeplatform.toolchain.internal.msvcpp.version
    
    class DefaultVswhereVersionLocatorTest extends VswhereSpec {
        def locator = new DefaultVswhereVersionLocator(windowsRegistry, os)
    
        def "finds vswhere executable in Program Files"() {
            given:
            vswhereInProgramFiles()
    
            expect:
            locator.getVswhereInstall().absolutePath == vswhere.absolutePath
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3K bytes
    - Viewed (1)
  4. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/version/CommandLineToolVersionLocatorTest.groovy

            then:
            versionMetadata != null
            versionMetadata.size() == 0
            _ * vswhereLocator.getVswhereInstall() >> { new DefaultVswhereVersionLocator(windowsRegistry, os).getVswhereInstall() }
        }
    
        def "returns empty list if Program Files (X86) cannot be found in registry"() {
            given:
            vswhereNotFoundX86Registry()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.6K bytes
    - Viewed (2)
Back to top