Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for BRS (0.01 sec)

  1. test/fixedbugs/issue33013.dir/c.go

    // license that can be found in the LICENSE file.
    
    package c
    
    import (
    	"./a"
    	"./b"
    )
    
    type BI interface {
    	Something(s int64) int64
    	Another(pxp a.G) int32
    }
    
    func BRS(sd *b.ServiceDesc, server BI, xyz int) *b.Service {
    	return b.RS(sd, server, 7)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 361 bytes
    - Viewed (0)
  2. test/fixedbugs/issue33013.dir/d.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package d
    
    import (
    	"./b"
    	"./c"
    )
    
    var GA b.Service
    
    func C() {
    	c.BRS(nil, nil, 22)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 249 bytes
    - Viewed (0)
  3. test/fixedbugs/issue33219.dir/c.go

    // license that can be found in the LICENSE file.
    
    package c
    
    import (
    	"./a"
    	"./b"
    )
    
    type BI interface {
    	Another(pxp a.A) int32
    }
    
    //go:noinline
    func BRS(sd a.A, xyz int) *b.Service {
    	x := b.Yes(sd, nil)
    	return b.No(x, 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 339 bytes
    - Viewed (0)
Back to top