Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for 11 (0.05 sec)

  1. .github/ISSUE_TEMPLATE/11-language-change.yml

    Dmitri Shuralyov <******@****.***> 1700681497 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 20:49:24 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/issue9510.go

    	"cmd/cgo/internal/test/issue9510b"
    )
    
    func test9510(t *testing.T) {
    	if runtime.GOARCH == "arm" {
    		t.Skip("skipping because libgcc may be a Thumb library")
    	}
    	issue9510a.F(1, 1)
    	issue9510b.F(1, 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 15:35:35 UTC 2024
    - 606 bytes
    - Viewed (0)
  3. api/go1.23.txt

    pkg runtime/debug, type CrashOptions struct #67182
    pkg slices, func All[$0 interface{ ~[]$1 }, $1 interface{}]($0) iter.Seq2[int, $1] #61899
    pkg slices, func AppendSeq[$0 interface{ ~[]$1 }, $1 interface{}]($0, iter.Seq[$1]) $0 #61899
    pkg slices, func Backward[$0 interface{ ~[]$1 }, $1 interface{}]($0) iter.Seq2[int, $1] #61899
    pkg slices, func Chunk[$0 interface{ ~[]$1 }, $1 interface{}]($0, int) iter.Seq[$0] #53987
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 20:48:49 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testplugin/testdata/forkexec/main.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"os"
    	"os/exec"
    	_ "plugin"
    	"sync"
    )
    
    func main() {
    	if os.Args[1] != "1" {
    		return
    	}
    
    	var wg sync.WaitGroup
    	for i := 0; i < 8; i++ {
    		wg.Add(1)
    		go func() {
    			defer wg.Done()
    			// does not matter what we exec, just exec itself
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 502 bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/magic_test.go

    			mul := Mul.Int64()
    
    			// Try some input values, mostly around multiples of c.
    			for _, x := range [...]int64{
    				-1, 1,
    				-c - 1, -c, -c + 1, c - 1, c, c + 1,
    				-2*c - 1, -2 * c, -2*c + 1, 2*c - 1, 2 * c, 2*c + 1,
    				-mul - 1, -mul, -mul + 1, mul - 1, mul, mul + 1,
    				int64(1)<<(n-1) - 1, -int64(1) << (n - 1),
    			} {
    				X := new(big.Int).SetInt64(x)
    				if X.Cmp(Min) < 0 || X.Cmp(Max) > 0 {
    					continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 22:02:07 UTC 2019
    - 9.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/const.go

    			case Int:
    				var s = uint(sizeof(typ)) * 8
    				return int64(-1)<<(s-1) <= x && x <= int64(1)<<(s-1)-1
    			case Int8:
    				const s = 8
    				return -1<<(s-1) <= x && x <= 1<<(s-1)-1
    			case Int16:
    				const s = 16
    				return -1<<(s-1) <= x && x <= 1<<(s-1)-1
    			case Int32:
    				const s = 32
    				return -1<<(s-1) <= x && x <= 1<<(s-1)-1
    			case Int64, UntypedInt:
    				return true
    			case Uint, Uintptr:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/token_string.go

    	_ = x[_EOF-1]
    	_ = x[_Name-2]
    	_ = x[_Literal-3]
    	_ = x[_Operator-4]
    	_ = x[_AssignOp-5]
    	_ = x[_IncOp-6]
    	_ = x[_Assign-7]
    	_ = x[_Define-8]
    	_ = x[_Arrow-9]
    	_ = x[_Star-10]
    	_ = x[_Lparen-11]
    	_ = x[_Lbrack-12]
    	_ = x[_Lbrace-13]
    	_ = x[_Rparen-14]
    	_ = x[_Rbrack-15]
    	_ = x[_Rbrace-16]
    	_ = x[_Comma-17]
    	_ = x[_Semi-18]
    	_ = x[_Colon-19]
    	_ = x[_Dot-20]
    	_ = x[_DotDotDot-21]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 29 02:28:24 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types/kind_string.go

    	_ = x[Txxx-0]
    	_ = x[TINT8-1]
    	_ = x[TUINT8-2]
    	_ = x[TINT16-3]
    	_ = x[TUINT16-4]
    	_ = x[TINT32-5]
    	_ = x[TUINT32-6]
    	_ = x[TINT64-7]
    	_ = x[TUINT64-8]
    	_ = x[TINT-9]
    	_ = x[TUINT-10]
    	_ = x[TUINTPTR-11]
    	_ = x[TCOMPLEX64-12]
    	_ = x[TCOMPLEX128-13]
    	_ = x[TFLOAT32-14]
    	_ = x[TFLOAT64-15]
    	_ = x[TBOOL-16]
    	_ = x[TPTR-17]
    	_ = x[TFUNC-18]
    	_ = x[TSLICE-19]
    	_ = x[TARRAY-20]
    	_ = x[TSTRUCT-21]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:56:38 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/testdata/scopes.go

    	fmt.Println(x, y)
    
    	for x := 0; x <= 1; x++ { // From delve scopetest.go
    		a := y
    		f1(a)
    		{
    			b := 0
    			f2(b)
    			if gretbool() {
    				c := 0
    				f3(c)
    			} else {
    				c := 1.1
    				f4(int(c))
    			}
    			f5(b)
    		}
    		f6(a)
    	}
    
    	{ // From delve testnextprog.go
    		var (
    			j = id(1)
    			f = id(2)
    		)
    		for i := 0; i <= 5; i++ {
    			j += j * (j ^ 3) / 100
    			if i == f {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 23 18:05:07 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/test/testdata/addressed_test.go

    		return v.x
    	}
    	if v.w == 1 {
    		return a.x
    	}
    	if v.w == 2 {
    		return b.x
    	}
    	b.p.p = &a // v.p in caller = &a
    
    	return -1
    }
    
    func test_autos(t *testing.T) {
    	test(t, 11)
    	test(t, 12)
    	test(t, 13)
    	test(t, 21)
    	test(t, 22)
    	test(t, 23)
    	test(t, 31)
    	test(t, 32)
    }
    
    func test(t *testing.T, which int64) {
    	output += fmt.Sprintln("test", which)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 4.4K bytes
    - Viewed (0)
Back to top