Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 34 for MSVC (0.03 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-spi.h

    // catches that.
    //
    // For the same reason, we have to write
    //   if (::testing::internal::AlwaysTrue()) { statement; }
    // instead of
    //   GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement)
    // to avoid an MSVC warning on unreachable code.
    #define EXPECT_NONFATAL_FAILURE(statement, substr) \
      do {\
        ::testing::TestPartResultArray gtest_failures;\
        ::testing::internal::SingleFailureChecker gtest_checker(\
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-spi.h

    // catches that.
    //
    // For the same reason, we have to write
    //   if (::testing::internal::AlwaysTrue()) { statement; }
    // instead of
    //   GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement)
    // to avoid an MSVC warning on unreachable code.
    #define EXPECT_NONFATAL_FAILURE(statement, substr) \
      do {\
        ::testing::TestPartResultArray gtest_failures;\
        ::testing::internal::SingleFailureChecker gtest_checker(\
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.7K 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. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-message.h

    //   std::cout << foo;
    //
    // will print "1 != 2".
    //
    // Message is not intended to be inherited from.  In particular, its
    // destructor is not virtual.
    //
    // Note that stringstream behaves differently in gcc and in MSVC.  You
    // can stream a NULL char pointer to it in the former, but not in the
    // latter (it causes an access violation if you do).  The Message
    // class hides this difference by treating a NULL char pointer as
    // "(null)".
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-message.h

    //   std::cout << foo;
    //
    // will print "1 != 2".
    //
    // Message is not intended to be inherited from.  In particular, its
    // destructor is not virtual.
    //
    // Note that stringstream behaves differently in gcc and in MSVC.  You
    // can stream a NULL char pointer to it in the former, but not in the
    // latter (it causes an access violation if you do).  The Message
    // class hides this difference by treating a NULL char pointer as
    // "(null)".
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top