Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for issue30628 (0.19 sec)

  1. src/go/internal/gccgoimporter/importer_test.go

    	{pkgpath: "nointerface", name: "I", want: "type I int"},
    	{pkgpath: "issue29198", name: "FooServer", gccgoVersion: 7, want: "type FooServer struct{FooServer *FooServer; user string; ctx context.Context}"},
    	{pkgpath: "issue30628", name: "Apple", want: "type Apple struct{hey sync.RWMutex; x int; RQ [517]struct{Count uintptr; NumBytes uintptr; Last uintptr}}"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:17:57 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/issue30527.go

    //go:build cgo
    
    // Issue 30527: function call rewriting casts untyped
    // constants to int because of ":=" usage.
    
    package cgotest
    
    import "cmd/cgo/internal/test/issue30527"
    
    func issue30527G() {
    	issue30527.G(nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 376 bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testgodefs/testdata/issue37621.go

    Austin Clements <******@****.***> 1683216807 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 326 bytes
    - Viewed (0)
  4. src/internal/types/testdata/fixedbugs/issue67628.go

    Robert Griesemer <******@****.***> 1716918824 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:51 UTC 2024
    - 406 bytes
    - Viewed (0)
  5. src/internal/types/testdata/fixedbugs/issue60688.go

    Robert Griesemer <******@****.***> 1702346058 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 12 18:44:59 UTC 2023
    - 607 bytes
    - Viewed (0)
  6. test/fixedbugs/issue30908.go

    Dmitri Shuralyov <******@****.***> 1697569678 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 240 bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/issue30527/b.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 issue30527
    
    const (
    	X = 1 << iota
    	Y
    	Z
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 211 bytes
    - Viewed (0)
  8. src/cmd/compile/internal/test/reproduciblebuilds_test.go

    	tmpdir := t.TempDir()
    
    	src := filepath.Join("testdata", "reproducible", "issue38068.go")
    	for i := range scenarios {
    		s := &scenarios[i]
    		s.libpath = filepath.Join(tmpdir, s.tag+".a")
    		// Note: use of "-p" required in order for DWARF to be generated.
    		cmd := testenv.Command(t, testenv.GoToolPath(t), "tool", "compile", "-p=issue38068", "-buildid=", s.args, "-o", s.libpath, src)
    		out, err := cmd.CombinedOutput()
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 18:07:35 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/test/issue30527/a.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 issue30527
    
    import "math"
    
    /*
    #include <inttypes.h>
    
    static void issue30527F(char **p, uint64_t mod, uint32_t unused) {}
    */
    import "C"
    
    func G(p **C.char) {
    	C.issue30527F(p, math.MaxUint64, 1)
    	C.issue30527F(p, 1<<64-1, Z)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 394 bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/testshared/testdata/issue30768/x_test.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 issue30768_test
    
    import (
    	"testing"
    
    	"testshared/issue30768/issue30768lib"
    )
    
    type s struct {
    	s issue30768lib.S
    }
    
    func Test30768(t *testing.T) {
    	// Calling t.Log will convert S to an empty interface,
    	// which will force a reference to the generated hash function,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 487 bytes
    - Viewed (0)
Back to top