Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 871 for Cint (0.04 sec)

  1. src/runtime/abi_test.go

    var regConfirmRun atomic.Int32
    
    //go:registerparams
    func regFinalizerPointer(v *TintPointer) (int, float32, [10]byte) {
    	regConfirmRun.Store(int32(*(*int)(v.p)))
    	return 5151, 4.0, [10]byte{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
    }
    
    //go:registerparams
    func regFinalizerIface(v Tinter) (int, float32, [10]byte) {
    	regConfirmRun.Store(int32(*(*int)(v.(*TintPointer).p)))
    	return 5151, 4.0, [10]byte{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/topologymanager/policy_single_numa_node_test.go

    import (
    	"reflect"
    	"testing"
    )
    
    func TestPolicySingleNumaNodeCanAdmitPodResult(t *testing.T) {
    	tcases := []struct {
    		name     string
    		hint     TopologyHint
    		expected bool
    	}{
    		{
    			name:     "Preferred is set to false in topology hints",
    			hint:     TopologyHint{nil, false},
    			expected: false,
    		},
    	}
    	numaInfo := commonNUMAInfoTwoNodes()
    
    	for _, tc := range tcases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:25 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  3. src/internal/fuzz/trace.go

    func libfuzzerTraceCmp1(arg0, arg1 uint8, fakePC uint)  {}
    func libfuzzerTraceCmp2(arg0, arg1 uint16, fakePC uint) {}
    func libfuzzerTraceCmp4(arg0, arg1 uint32, fakePC uint) {}
    func libfuzzerTraceCmp8(arg0, arg1 uint64, fakePC uint) {}
    
    func libfuzzerTraceConstCmp1(arg0, arg1 uint8, fakePC uint)  {}
    func libfuzzerTraceConstCmp2(arg0, arg1 uint16, fakePC uint) {}
    func libfuzzerTraceConstCmp4(arg0, arg1 uint32, fakePC uint) {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 12 00:12:53 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/config.go

    	t.UInt8 = types.Types[types.TUINT8]
    	t.UInt16 = types.Types[types.TUINT16]
    	t.UInt32 = types.Types[types.TUINT32]
    	t.UInt64 = types.Types[types.TUINT64]
    	t.Int = types.Types[types.TINT]
    	t.Float32 = types.Types[types.TFLOAT32]
    	t.Float64 = types.Types[types.TFLOAT64]
    	t.UInt = types.Types[types.TUINT]
    	t.Uintptr = types.Types[types.TUINTPTR]
    	t.String = types.Types[types.TSTRING]
    	t.BytePtr = types.NewPtr(types.Types[types.TUINT8])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  5. pyproject.toml

    "docs_src/dependencies/tutorial008b.py" = ["B904"]
    "docs_src/dependencies/tutorial008b_an.py" = ["B904"]
    "docs_src/dependencies/tutorial008b_an_py39.py" = ["B904"]
    
    
    [tool.ruff.lint.isort]
    known-third-party = ["fastapi", "pydantic", "starlette"]
    
    [tool.ruff.lint.pyupgrade]
    # Preserve types, even if a file imports `from __future__ import annotations`.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/test/testdata/gen/cmpConstGen.go

    		Uint(maxU16 + 1),
    		Uint(maxU16),
    		Uint(maxU16 - 1),
    		Uint(maxI16 + 1),
    		Uint(maxI16),
    		Uint(maxI16 - 1),
    		Uint(maxU8 + 1),
    		Uint(maxU8),
    		Uint(maxU8 - 1),
    		Uint(maxI8 + 1),
    		Uint(maxI8),
    		Uint(maxI8 - 1),
    		Uint(0),
    		Int(minI8 + 1),
    		Int(minI8),
    		Int(minI8 - 1),
    		Int(minI16 + 1),
    		Int(minI16),
    		Int(minI16 - 1),
    		Int(minI32 + 1),
    		Int(minI32),
    		Int(minI32 - 1),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  7. src/crypto/internal/bigmod/nat_asm.go

    // TODO(filippo): file cmd/compile performance issue.
    
    var supportADX = cpu.X86.HasADX && cpu.X86.HasBMI2
    
    //go:noescape
    func addMulVVW1024(z, x *uint, y uint) (c uint)
    
    //go:noescape
    func addMulVVW1536(z, x *uint, y uint) (c uint)
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 07:52:41 UTC 2023
    - 942 bytes
    - Viewed (0)
  8. test/fixedbugs/issue19113.go

    	},
    	func(x int, s int16) int {
    		return x >> s
    	},
    	func(x int, s int8) int {
    		return x >> s
    	},
    	func(x uint, s int) uint {
    		return x << s
    	},
    	func(x uint, s int64) uint {
    		return x << s
    	},
    	func(x uint, s int32) uint {
    		return x << s
    	},
    	func(x uint, s int16) uint {
    		return x << s
    	},
    	func(x uint, s int8) uint {
    		return x << s
    	},
    	func(x uint, s int) uint {
    		return x >> s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 15 23:13:09 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_get_promote_implicit.txt

    # We can promote the implicit requirement by getting the importing package.
    # NOTE: the hint recommends getting the imported package (tested below) since
    # it's more obvious and doesn't require -d. However, that adds an '// indirect'
    # comment on the requirement.
    go get m/use-indirect
    cmp go.mod go.mod.use
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  10. test/fixedbugs/issue21979.go

    	_ = uint(true) // ERROR "cannot convert true \(.*untyped bool.*\) to type uint|invalid type conversion"
    	_ = uint(-1)   // ERROR "constant -1 overflows uint|integer constant overflow|cannot convert -1 \(untyped int constant\) to type uint"
    	_ = uint(1)
    	_ = uint(1.0)
    	// types1 reports extra error "truncated to integer"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 11 02:26:58 UTC 2022
    - 2.5K bytes
    - Viewed (0)
Back to top