Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for MSVC (0.24 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. 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)
  3. 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)
  4. 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)
  5. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitorSpec.groovy

    \\??\\C:\\Windows\\system32\\conhost.exe "472490228-68470907838922115481214932-363220106-1296027029-1014590852-1678361664 7824
    "C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\Community\\VC\\Tools\\MSVC\\14.14.26428\\bin\\HostX64\\x86\\VCTIP.EXE"  11880
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/aot/codegen.cc

          return absl::InternalError(
              absl::StrCat("parameter ", i,
                           ": codegen requires XLA parameters to "
                           "be non-tuples."));
        }
        // Please some compilers (e.g. MSVC) by avoiding the initialization of an
        // array of unknown size an empty initializer. Use "-1" for this; note that
        // this value is never used (the size attribute is set to 0 in ShapeInfo).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  7. tensorflow/c/eager/tape.h

      // Else, only when this is destructed.
      bool persistent_;
    };
    
    // Describes a callback for special-cased and more efficient jvp computation.
    //
    // Could just be a simple typedef in ForwardAccumulator, but MSVC chokes on
    // that.
    template <typename Gradient>
    class ForwardFunction
        : public std::function<Status(const std::vector<Gradient*>&,
                                      std::vector<Gradient*>*, bool)> {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 12:40:29 UTC 2024
    - 47.2K bytes
    - Viewed (0)
Back to top