Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 5,774 for rain (0.04 sec)

  1. test/typeparam/issue49524.dir/main.go

    package main
    
    // Copyright 2021 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.
    
    import "./a"
    
    func main() {
    	a.F[int]()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 216 bytes
    - Viewed (0)
  2. test/fixedbugs/issue29610.dir/main.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 main
    
    import "./b"
    
    var v b.S
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 11 00:45:49 UTC 2019
    - 214 bytes
    - Viewed (0)
  3. test/typeparam/issue50561.dir/main.go

    // Copyright 2022 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 main
    
    import (
    	"./diameter"
    )
    
    func main() {
    	diameter.NewInboundHandler("hello", "world", "hi")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 268 bytes
    - Viewed (0)
  4. src/runtime/testdata/testwintls/main.go

    // Copyright 2023 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 main
    
    import "C"
    
    //export GoFunc
    func GoFunc() int { return 42 }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 25 15:37:00 UTC 2023
    - 250 bytes
    - Viewed (0)
  5. test/fixedbugs/issue54912.dir/main.go

    // Copyright 2022 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 main
    
    import "test/a"
    
    func main() {
    	a.F(new(int), 0)()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 17:26:34 UTC 2022
    - 227 bytes
    - Viewed (0)
  6. test/fixedbugs/issue22941.dir/main.go

    // Copyright 2017 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 main
    
    import p "./b"
    
    var G int
    
    func main() {
    	if G == 101 {
    		p.G(nil, nil)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 18:52:50 UTC 2017
    - 251 bytes
    - Viewed (0)
  7. test/fixedbugs/issue5259.dir/main.go

    // Copyright 2013 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 main
    
    import "./bug"
    
    type foo int
    
    func (f *foo) Bar() {
    }
    
    func main() {
    	bug.Foo(new(foo))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Apr 13 06:22:16 UTC 2013
    - 264 bytes
    - Viewed (0)
  8. test/typeparam/issue51219.dir/main.go

    // Copyright 2022 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 main
    
    import (
    	"./a"
    	"fmt"
    )
    
    func main() {
    	var x a.I[a.JsonRaw]
    
    	fmt.Printf("%v\n", x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 262 bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/swig/testdata/callback/main.go

    // Copyright 2012 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 main
    
    import (
    	"fmt"
    	"os"
    )
    
    func main() {
    	if len(os.Args) != 2 {
    		fatal("usage: callback testname")
    	}
    	switch os.Args[1] {
    	default:
    		fatal("unknown test %q", os.Args[1])
    	case "Call":
    		testCall()
    	case "Callback":
    		testCallback()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:07 UTC 2023
    - 1K bytes
    - Viewed (0)
  10. test/typeparam/issue50486.dir/main.go

    package main
    
    import fp "./goerror_fp"
    
    func Fold[A, B any](zero B, a A, f func(B, A) B) B {
    	return f(zero, a)
    }
    
    func main() {
    
    	var v any = "hello"
    	Fold(fp.Seq[any]{}, v, func(seq fp.Seq[any], v any) fp.Seq[any] {
    		return seq.Append(v)
    	})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 248 bytes
    - Viewed (0)
Back to top