Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for chanType (0.18 sec)

  1. src/cmd/link/internal/ld/dwarf_test.go

    	dwarf, err := f.DWARF()
    	if err != nil {
    		t.Fatalf("error reading DWARF: %v", err)
    	}
    
    	want := map[string]bool{
    		"internal/abi.Type":          true,
    		"internal/abi.ArrayType":     true,
    		"internal/abi.ChanType":      true,
    		"internal/abi.FuncType":      true,
    		"internal/abi.MapType":       true,
    		"internal/abi.PtrType":       true,
    		"internal/abi.SliceType":     true,
    		"internal/abi.StructType":    true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_async.cc

      addOperations<
    #define GET_OP_LIST
    #include "tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_async.cpp.inc"
          >();
    }
    
    static Type GetChainType(Builder *builder) {
      return builder->getType<compiler::ChainType>();
    }
    
    LogicalResult CreateOp::verify() {
      return fallback_common::VerifyFallbackExecuteOp(*this);
    }
    LogicalResult ExecuteOp::verify() {
      return fallback_common::VerifyFallbackExecuteOp(*this);
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  3. src/debug/dwarf/type.go

    }
    
    func (b *BasicType) Basic() *BasicType { return b }
    
    func (t *BasicType) String() string {
    	if t.Name != "" {
    		return t.Name
    	}
    	return "?"
    }
    
    // A CharType represents a signed character type.
    type CharType struct {
    	BasicType
    }
    
    // A UcharType represents an unsigned character type.
    type UcharType struct {
    	BasicType
    }
    
    // An IntType represents a signed integer type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10TypeProvider.kt

            get() = withValidityAssertion { analysisContext.builtIns.booleanType.toKtType(analysisContext) }
    
        override val char: KaType
            get() = withValidityAssertion { analysisContext.builtIns.charType.toKtType(analysisContext) }
    
        override val string: KaType
            get() = withValidityAssertion { analysisContext.builtIns.stringType.toKtType(analysisContext) }
    
        override val unit: KaType
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 23.3K bytes
    - Viewed (0)
Back to top