Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for cinttypes (0.34 sec)

  1. tensorflow/compiler/mlir/lite/experimental/remat/rematerializer.h

    // (idealized) memory profile of a TFLite graph and simulate the effect of
    // re-inserting operations on that memory profile.
    
    #include <algorithm>
    #include <cinttypes>
    #include <tuple>
    #include <vector>
    
    namespace mlir {
    namespace TFL {
    
    // A class that
    // (1) Encodes in concise form the memory requirements of a computational graph
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 20:57:44 UTC 2023
    - 12K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/library/lists.go

    type namedCELType struct {
    	typeName string
    	celType  *cel.Type
    }
    
    var summableTypes = []namedCELType{
    	{typeName: "int", celType: cel.IntType},
    	{typeName: "uint", celType: cel.UintType},
    	{typeName: "double", celType: cel.DoubleType},
    	{typeName: "duration", celType: cel.DurationType},
    }
    
    var zeroValuesOfSummableTypes = map[string]ref.Val{
    	"int":      types.Int(0),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/composition.go

    	case cel.DurationType:
    		return apiservercel.DurationType
    	case cel.IntType:
    		return apiservercel.IntType
    	case cel.NullType:
    		return apiservercel.NullType
    	case cel.StringType:
    		return apiservercel.StringType
    	case cel.TimestampType:
    		return apiservercel.TimestampType
    	case cel.UintType:
    		return apiservercel.UintType
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 13 21:06:39 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/types.go

    		return DoubleType
    	case DurationType.TypeName():
    		return DurationType
    	case IntType.TypeName():
    		return IntType
    	case NullType.TypeName():
    		return NullType
    	case StringType.TypeName():
    		return StringType
    	case TimestampType.TypeName():
    		return TimestampType
    	case UintType.TypeName():
    		return UintType
    	case ListType.TypeName():
    		return ListType
    	case MapType.TypeName():
    		return MapType
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 15:52:31 UTC 2023
    - 18K bytes
    - Viewed (0)
  5. src/debug/dwarf/type.go

    type CharType struct {
    	BasicType
    }
    
    // A UcharType represents an unsigned character type.
    type UcharType struct {
    	BasicType
    }
    
    // An IntType represents a signed integer type.
    type IntType struct {
    	BasicType
    }
    
    // A UintType represents an unsigned integer type.
    type UintType struct {
    	BasicType
    }
    
    // A FloatType represents a floating point type.
    type FloatType struct {
    	BasicType
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  6. test/fixedbugs/bug388.go

    // license that can be found in the LICENSE file.
    
    // Issue 2231
    
    package main
    import "runtime"
    
    func foo(runtime.UintType, i int) {  // ERROR "cannot declare name runtime.UintType|mixed named and unnamed|undefined identifier"
    	println(i, runtime.UintType) // GCCGO_ERROR "undefined identifier"
    }
    
    func qux() {
    	var main.i	// ERROR "unexpected [.]|expected type"
    	println(main.i)
    }
    
    func corge() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 11 02:26:58 UTC 2022
    - 636 bytes
    - Viewed (0)
  7. test/fixedbugs/bug388a.go

    // license that can be found in the LICENSE file.
    
    // Issue 2231
    
    package main
    import "runtime"
    
    func bar(i int) {
    	runtime.UintType := i       // ERROR "non-name runtime.UintType|non-name on left side|undefined"
    	println(runtime.UintType)	// ERROR "invalid use of type|undefined"
    }
    
    func baz() {
    	main.i := 1	// ERROR "non-name main.i|non-name on left side|undefined"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 11 02:26:58 UTC 2022
    - 571 bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/branchelim_test.go

    	var testData = []struct {
    		arch    string
    		intType string
    		ok      bool
    	}{
    		{"arm64", "int32", true},
    		{"amd64", "int32", true},
    		{"amd64", "int8", false},
    	}
    
    	for _, data := range testData {
    		t.Run(data.arch+"/"+data.intType, func(t *testing.T) {
    			c := testConfigArch(t, data.arch)
    			boolType := c.config.Types.Bool
    			var intType *types.Type
    			switch data.intType {
    			case "int32":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 24 15:51:15 UTC 2018
    - 5.2K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/test/issue30527/a.go

    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package issue30527
    
    import "math"
    
    /*
    #include <inttypes.h>
    
    static void issue30527F(char **p, uint64_t mod, uint32_t unused) {}
    */
    import "C"
    
    func G(p **C.char) {
    	C.issue30527F(p, math.MaxUint64, 1)
    	C.issue30527F(p, 1<<64-1, Z)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 394 bytes
    - Viewed (0)
  10. test/typeparam/issue47710.go

    // license that can be found in the LICENSE file.
    
    package p
    
    type FooType[t any] interface {
    	Foo(BarType[t])
    }
    type BarType[t any] interface {
    	Int(IntType[t]) FooType[int]
    }
    
    type IntType[t any] int
    
    func (n IntType[t]) Foo(BarType[t]) {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 398 bytes
    - Viewed (0)
Back to top