Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 34 of 34 for MSVC (0.04 sec)

  1. 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)
  2. tensorflow/c/experimental/filesystem/filesystem_interface.h

    typedef struct TF_TransactionToken {
      void* token;
      TF_Filesystem* owner;
    } TF_TransactionToken;
    
    // The named union is needed here (as opposed to
    // inside the `TF_Filesystem_Option_Value` struct)
    // as MSVC does not recognize `typeof`.
    typedef union TF_Filesystem_Option_Value_Union {
      int64_t int_val;
      double real_val;
      struct {
        char* buf;
        int buf_length;
      } buffer_val;
    } TF_Filesystem_Option_Value_Union;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  3. src/cmd/cgo/out.go

    				}
    			}
    		}
    		if def := typedef[t.Name]; def != nil {
    			if defgo, ok := def.Go.(*ast.Ident); ok {
    				switch defgo.Name {
    				case "complex64", "complex128":
    					// MSVC does not support the _Complex keyword
    					// nor the complex macro.
    					// Use GoComplex64 and GoComplex128 instead,
    					// which are typedef-ed to a compatible type.
    					// See go.dev/issues/36233.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. RELEASE.md

            version is LLVM/clang 17. The official Wheels-published on PyPI will be
            based on Clang; however, users retain the option to build wheels using
            the MSVC compiler following the steps mentioned in
            https://www.tensorflow.org/install/source_windows as has been the case
            before
    
    ### Breaking Changes
    
    *   <DOCUMENT BREAKING CHANGES HERE>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top