Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for MSVC (0.03 sec)

  1. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/version/VisualStudioVersionDeterminerTest.groovy

            and:
            metadata.version == VersionNumber.parse("15.3.26730.16")
            metadata.installDir == dir1
            metadata.visualCppDir == new File(dir1, "VC/Tools/MSVC/1.2.3.4")
            metadata.visualCppVersion == VersionNumber.parse("1.2.3.4")
            metadata.compatibility == VS2017_OR_LATER
        }
    
        def "can determine a legacy version of an install from command line"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/DefaultVisualStudioLocatorTest.groovy

        }
    
        def "finds correct VS2017 paths for #targetPlatform on #os operating system (64-bit install: #is64BitInstall)"() {
            def vsDir = fullVs2017Dir("vs", is64BitInstall)
            def vcDir = new File(vsDir, "VC/Tools/MSVC/1.2.3.4")
    
            given:
            systemInfo.getArchitecture() >> systemArchitecture
            1 * commandLineLocator.getVisualStudioInstalls() >> []
            1 * windowsRegistryLocator.getVisualStudioInstalls() >> []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 25.1K bytes
    - Viewed (0)
  3. operator/pkg/translate/translate.go

    		// keys instead of just the merging by port.
    		if inPathParts[len(inPathParts)-1] == "Service" {
    			if msvc, ok := m.(*v1alpha1.ServiceSpec); ok {
    				mergedObj, err = t.fixMergedObjectWithCustomServicePortOverlay(oo, msvc, mergedObj)
    				if err != nil {
    					return "", err
    				}
    			}
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:43:09 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

      // implicitly converted to type To.
      static char Helper(To);
      static char (&Helper(...))[2];  // NOLINT
    
      // We have to put the 'public' section after the 'private' section,
      // or MSVC refuses to compile the code.
     public:
      // MSVC warns about implicitly converting from double to int for
      // possible loss of data, so we need to temporarily disable the
      // warning.
    #ifdef _MSC_VER
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

      // implicitly converted to type To.
      static char Helper(To);
      static char (&Helper(...))[2];  // NOLINT
    
      // We have to put the 'public' section after the 'private' section,
      // or MSVC refuses to compile the code.
     public:
      // MSVC warns about implicitly converting from double to int for
      // possible loss of data, so we need to temporarily disable the
      // warning.
    #ifdef _MSC_VER
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/BinaryConfigurationIntegrationTest.groovy

        @RequiresInstalledToolChain(VISUALCPP)
        @Requires(UnitTestPreconditions.CanInstallExecutable)
        @ToBeFixedForConfigurationCache
        def "can configure output file for shared library on MSVC"() {
            given:
            def app = new CppHelloWorldApp()
            app.writeSources(file("src/main"))
            app.library.writeSources(file("src/hello"))
    
            and:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

      PrintTo(ImplicitCast_<const void*>(s), os);
    }
    inline void PrintTo(unsigned char* s, ::std::ostream* os) {
      PrintTo(ImplicitCast_<const void*>(s), os);
    }
    
    // MSVC can be configured to define wchar_t as a typedef of unsigned
    // short.  It defines _NATIVE_WCHAR_T_DEFINED when wchar_t is a native
    // type.  When wchar_t is a typedef, defining an overload for const
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

      PrintTo(ImplicitCast_<const void*>(s), os);
    }
    inline void PrintTo(unsigned char* s, ::std::ostream* os) {
      PrintTo(ImplicitCast_<const void*>(s), os);
    }
    
    // MSVC can be configured to define wchar_t as a typedef of unsigned
    // short.  It defines _NATIVE_WCHAR_T_DEFINED when wchar_t is a native
    // type.  When wchar_t is a typedef, defining an overload for const
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  9. src/internal/syscall/windows/syscall_windows.go

    	//
    	// Without this padding, TestChmod fails due to an argument validation error
    	// in SetFileInformationByHandle on windows/386.
    	//
    	// https://learn.microsoft.com/en-us/cpp/build/reference/zp-struct-member-alignment?view=msvc-170
    	// says that “The C/C++ headers in the Windows SDK assume the platform's
    	// default alignment is used.” What we see here is padding rather than
    	// alignment, but maybe it is related.
    	_ uint32
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  10. ci/devinfra/docker_windows/Dockerfile

        $old_path = [Environment]::GetEnvironmentVariable(\"PATH\", \"Machine\"); \
        [Environment]::SetEnvironmentVariable(\"PATH\", $old_path + \";C:\VS\VC\Tools\MSVC\14.33.31629\bin\Hostx64\x64;C:\VS\Common7\Tools;C:\VS\MSBuild\Current\Bin\", \"Machine\");
    
    # Add signtool.exe to the PATH. Note this path may need to be edited if updates
    # are made to the Windows 10 SDK.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 18 17:24:20 UTC 2023
    - 13.6K bytes
    - Viewed (0)
Back to top