Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 4,301 for main2 (0.05 sec)

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

    // 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.
    
    package main
    
    import "./a"
    
    func main() {
    	_ = a.S{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 215 bytes
    - Viewed (0)
  2. test/typeparam/issue47775.dir/main.go

    // 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.
    
    package main
    
    import "./b"
    
    func main() {
    	b.New[int]()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 218 bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top