Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for typefix (0.18 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

    #include "mlir/Support/DebugStringHelper.h"  // from @llvm-project
    #include "mlir/Support/LLVM.h"  // from @llvm-project
    #include "mlir/Support/LogicalResult.h"  // from @llvm-project
    #include "mlir/Support/TypeID.h"  // from @llvm-project
    #include "mlir/Transforms/FoldUtils.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_device.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_executor.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  2. src/reflect/all_test.go

    	if ovf := TypeFor[float32]().OverflowFloat(ovfFloat32); !ovf {
    		t.Errorf("%v should overflow float32", ovfFloat32)
    	}
    	if ovf := TypeFor[float32]().OverflowFloat(-ovfFloat32); !ovf {
    		t.Errorf("%v should overflow float32", -ovfFloat32)
    	}
    
    	maxInt32 := int64(0x7fffffff)
    	if ovf := TypeFor[int32]().OverflowInt(maxInt32); ovf {
    		t.Errorf("%v wrongly overflows int32", maxInt32)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h

    // the typed-test-only section below.
    template <typename T>
    std::string GetTypeName() {
    # if GTEST_HAS_RTTI
    
      const char* const name = typeid(T).name();
    #  if GTEST_HAS_CXXABI_H_ || defined(__HP_aCC)
      int status = 0;
      // gcc's implementation of typeid(T).name() mangles the type name,
      // so we have to demangle it.
    #   if GTEST_HAS_CXXABI_H_
      using abi::__cxa_demangle;
    #   endif  // GTEST_HAS_CXXABI_H_
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 181.3K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h

    // the typed-test-only section below.
    template <typename T>
    std::string GetTypeName() {
    # if GTEST_HAS_RTTI
    
      const char* const name = typeid(T).name();
    #  if GTEST_HAS_CXXABI_H_ || defined(__HP_aCC)
      int status = 0;
      // gcc's implementation of typeid(T).name() mangles the type name,
      // so we have to demangle it.
    #   if GTEST_HAS_CXXABI_H_
      using abi::__cxa_demangle;
    #   endif  // GTEST_HAS_CXXABI_H_
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 181.3K bytes
    - Viewed (0)
  5. src/database/sql/sql.go

    			name: names[i],
    		}
    		list[i] = ci
    
    		if prop, ok := rowsi.(driver.RowsColumnTypeScanType); ok {
    			ci.scanType = prop.ColumnTypeScanType(i)
    		} else {
    			ci.scanType = reflect.TypeFor[any]()
    		}
    		if prop, ok := rowsi.(driver.RowsColumnTypeDatabaseTypeName); ok {
    			ci.databaseType = prop.ColumnTypeDatabaseTypeName(i)
    		}
    		if prop, ok := rowsi.(driver.RowsColumnTypeLength); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    				wantParens = false
    			case isDelete:
    				wantParens = false
    			case op.Name == "alignof ":
    				wantParens = true
    			case op.Name == "sizeof ":
    				wantParens = true
    			case op.Name == "typeid ":
    				wantParens = true
    			default:
    				wantParens = true
    				if p, ok := expr.(hasPrec); ok {
    					if p.prec() < op.precedence {
    						wantParens = false
    					}
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  7. doc/go1.17_spec.html

    or specified using a <i>type literal</i>, which composes a type from existing types.
    </p>
    
    <pre class="ebnf">
    Type      = TypeName | TypeLit | "(" Type ")" .
    TypeName  = identifier | QualifiedIdent .
    TypeLit   = ArrayType | StructType | PointerType | FunctionType | InterfaceType |
    	    SliceType | MapType | ChannelType .
    </pre>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top