Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for issue33555 (1.24 sec)

  1. test/fixedbugs/issue33555.go

    }
    
    func test() error {
    	var buf bytes.Buffer
    	buf.WriteString(start)
    	for i := 0; i < count; i++ {
    		fmt.Fprintf(&buf, fn, i, i + 1)
    	}
    	fmt.Fprintf(&buf, fnlast, count)
    
    	dir, err := ioutil.TempDir("", "issue33555")
    	if err != nil {
    		return err
    	}
    	defer os.RemoveAll(dir)
    
    	fn := filepath.Join(dir, "x.go")
    	if err := ioutil.WriteFile(fn, buf.Bytes(), 0644); err != nil {
    		return err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/issue23555.go

    //go:build cgo
    
    // Test that we can have two identical cgo packages in a single binary.
    // No runtime test; just make sure it compiles.
    
    package cgotest
    
    import (
    	_ "cmd/cgo/internal/test/issue23555a"
    	_ "cmd/cgo/internal/test/issue23555b"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 403 bytes
    - Viewed (0)
  3. test/fixedbugs/issue9355.go

    package main
    
    import (
    	"fmt"
    	"io/ioutil"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"regexp"
    )
    
    func main() {
    	err := os.Chdir(filepath.Join("fixedbugs", "issue9355.dir"))
    	check(err)
    
    	f, err := ioutil.TempFile("", "issue9355-*.o")
    	if err != nil {
    		fmt.Println(err)
    		os.Exit(1)
    	}
    	f.Close()
    
    	out := run("go", "tool", "compile", "-p=p", "-o", f.Name(), "-S", "a.go")
    	os.Remove(f.Name())
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. test/typeparam/issue39755.go

    // Copyright 2020 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.
    
    // copied from cmd/compile/internal/types2/testdata/fixedbugs/issue39755.go
    
    package p
    
    func _[T interface{ ~map[string]int }](x T) {
    	_ = x == nil
    }
    
    // simplified test case from issue
    
    type PathParamsConstraint interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 593 bytes
    - Viewed (0)
  5. test/fixedbugs/issue33355.go

    Keith Randall <******@****.***> 1564528460 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 01 02:15:18 UTC 2019
    - 2.5K bytes
    - Viewed (0)
  6. test/fixedbugs/issue39505.go

    Xiangdong Ji <******@****.***> 1592451372 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 28 16:40:32 UTC 2020
    - 613 bytes
    - Viewed (0)
  7. src/internal/types/testdata/fixedbugs/issue39755.go

    Robert Griesemer <******@****.***> 1662082688 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 507 bytes
    - Viewed (0)
  8. test/fixedbugs/issue23545.go

    Cherry Zhang <******@****.***> 1530837093 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 10 01:20:45 UTC 2018
    - 557 bytes
    - Viewed (0)
  9. test/fixedbugs/issue33158.go

    Than McIntosh <******@****.***> 1563452338 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 18 17:24:59 UTC 2019
    - 268 bytes
    - Viewed (0)
  10. test/fixedbugs/issue63505.go

    David Chase <******@****.***> 1697059682 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:48:31 UTC 2023
    - 736 bytes
    - Viewed (0)
Back to top