Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ManageStatus0 (0.32 sec)

  1. src/go/printer/testdata/linebreaks.golden

    func _(x T)	{}
    func _(x T,
    	y T) {
    }
    func _(x T,
    	y T,
    ) {
    }
    func _(
    	x T,
    	y T) {
    }
    func _(
    	x T,
    	y T,
    ) {
    }
    
    // Example from issue #2597.
    func ManageStatus0(
    	in <-chan *Status,
    	req <-chan Request,
    	stat chan<- *TargetInfo,
    	TargetHistorySize int) {
    }
    
    func ManageStatus1(
    	in <-chan *Status,
    	req <-chan Request,
    	stat chan<- *TargetInfo,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 11 22:03:18 UTC 2018
    - 5.1K bytes
    - Viewed (0)
  2. src/go/printer/testdata/linebreaks.input

    func _(x T,
           y T) {}
    func _(x T,
           y T,
    ) {}
    func _(
           x T,
           y T) {}
    func _(
           x T,
           y T,
    ) {}
    
    // Example from issue #2597.
    func ManageStatus0(
    	in <-chan *Status,
    	req <-chan Request,
    	stat chan<- *TargetInfo,
    	TargetHistorySize int) {
    }
        
    func ManageStatus1(
    	in <-chan *Status,
    	req <-chan Request,
    	stat chan<- *TargetInfo,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 11 22:03:18 UTC 2018
    - 5.1K bytes
    - Viewed (0)
Back to top