Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for FooServer (0.16 sec)

  1. src/go/internal/gccgoimporter/testdata/issue29198.go

    )
    
    type A struct {
    	x int
    }
    
    func (a *A) AMethod(y int) *Server {
    	return nil
    }
    
    // FooServer is a server that provides Foo services
    type FooServer Server
    
    func (f *FooServer) WriteEvents(ctx context.Context, x int) error {
    	return errors.New("hey!")
    }
    
    type Server struct {
    	FooServer *FooServer
    	user      string
    	ctx       context.Context
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 12 23:01:16 UTC 2018
    - 693 bytes
    - Viewed (0)
  2. 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)
  3. src/go/internal/gccgoimporter/testdata/issue29198.gox

    type <type 1 "A" <type 2 struct { .issue29198.x <type -11>; }>
     func (a <esc:0x1> <type 3 *<type 1>>) AMethod (y <type -11>) <type 4 *<type 5 "Server" <type 6 struct { FooServer <type 7 *<type 8 "FooServer" <type 5>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 12 23:01:16 UTC 2018
    - 6.4K bytes
    - Viewed (0)
Back to top