Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for MSVC (0.04 sec)

  1. src/runtime/signal_windows.go

    		// If the exception does not originate from go, the go runtime
    		// should not take responsibility of crashing the process.
    		return _EXCEPTION_CONTINUE_SEARCH
    	}
    
    	// VEH is called before SEH, but arm64 MSVC DLLs use SEH to trap
    	// illegal instructions during runtime initialization to determine
    	// CPU features, so if we make it to the last handler and we're
    	// arm64 and it's an illegal instruction and this is coming from
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 20:32:29 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/link/internal/loadpe/ldpe.go

    	}
    
    	var s loader.Sym
    	var bld *loader.SymbolBuilder
    	// Microsoft's PE documentation is contradictory. It says that the symbol's complex type
    	// is stored in the pesym.Type most significant byte, but MSVC, LLVM, and mingw store it
    	// in the 4 high bits of the less significant byte.
    	switch uint8(pesym.Type&0xf0) >> 4 {
    	default:
    		return nil, 0, fmt.Errorf("%s: invalid symbol type %d", symname, pesym.Type)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/cmd/link/internal/ld/pe.go

    		switch t {
    		case sym.STEXT, sym.SDYNIMPORT, sym.SHOSTOBJ, sym.SUNDEFEXT:
    			// Microsoft's PE documentation is contradictory. It says that the symbol's complex type
    			// is stored in the pesym.Type most significant byte, but MSVC, LLVM, and mingw store it
    			// in the 4 high bits of the less significant byte. Also, the PE documentation says that
    			// the basic type for a function should be IMAGE_SYM_TYPE_VOID,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
Back to top