Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for gggggggggggg (0.08 sec)

  1. src/go/printer/testdata/declarations.input

    	f()
    	fffffg()
    }
    
    type _ interface {  // this comment must not change indentation
    	EI  // here's a comment
    	f()  // no blank between identifier and ()
    	fffff()  // no blank between identifier and ()
    	gggggggggggg(x, y, z int) ()  // hurray
    }
    
    
    // formatting of variable declarations
    func _() {
    	type day struct { n int; short, long string }
    	var (
    		Sunday = day{ 0, "SUN", "Sunday" }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.5K bytes
    - Viewed (0)
  2. src/go/printer/testdata/declarations.golden

    	fffffg()
    }
    
    type _ interface {	// this comment must not change indentation
    	EI				// here's a comment
    	f()				// no blank between identifier and ()
    	fffff()				// no blank between identifier and ()
    	gggggggggggg(x, y, z int)	// hurray
    }
    
    // formatting of variable declarations
    func _() {
    	type day struct {
    		n		int
    		short, long	string
    	}
    	var (
    		Sunday		= day{0, "SUN", "Sunday"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/filters/warning_test.go

    	warningRecorder.AddWarning("", "ffffffffff") // long item to get truncated, 21 total
    	warningRecorder.AddWarning("", "ffffffffff") // duplicate item
    	warningRecorder.AddWarning("", "gggggggggg") // item to get truncated, 26 total
    	warningRecorder.AddWarning("", "h")          // item to get ignored since we're over our limit
    	// check that existing items are truncated, and order preserved
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 01 16:14:06 UTC 2020
    - 4K bytes
    - Viewed (0)
Back to top