Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 69 for i0 (0.1 sec)

  1. src/cmd/compile/internal/test/testdata/reproducible/issue20272.go

    // Copyright 2017 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 p
    
    var (
    	i0 uint8
    	b0 byte
    
    	i1 *uint8
    	b1 *byte
    
    	i2 **uint8
    	b2 **byte
    
    	i3 ***uint8
    	b3 ***byte
    
    	i4 ****uint8
    	b4 ****byte
    
    	i5 *****uint8
    	b5 *****byte
    
    	i6 ******uint8
    	b6 ******byte
    
    	i7 *******uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 430 bytes
    - Viewed (0)
  2. src/go/doc/testdata/error2.1.golden

    // 
    PACKAGE error2
    
    IMPORTPATH
    	testdata/error2
    
    FILENAMES
    	testdata/error2.go
    
    TYPES
    	// 
    	type I0 interface {
    		// When embedded, the locally-declared error interface
    		// is only visible if all declarations are shown.
    		error
    	}
    
    	// 
    	type S0 struct {
    		// In struct types, an embedded error must only be visible
    		// if AllDecls is set.
    		error
    	}
    
    	// 
    	type T0 struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 565 bytes
    - Viewed (0)
  3. src/go/doc/testdata/error2.0.golden

    // 
    PACKAGE error2
    
    IMPORTPATH
    	testdata/error2
    
    FILENAMES
    	testdata/error2.go
    
    TYPES
    	// 
    	type I0 interface {
    		// contains filtered or unexported methods
    	}
    
    	// 
    	type S0 struct {
    		// contains filtered or unexported fields
    	}
    
    	// 
    	type T0 struct {
    		ExportedField interface {
    			// contains filtered or unexported methods
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 337 bytes
    - Viewed (0)
  4. src/go/doc/testdata/error1.0.golden

    // 
    PACKAGE error1
    
    IMPORTPATH
    	testdata/error1
    
    FILENAMES
    	testdata/error1.go
    
    TYPES
    	// 
    	type I0 interface {
    		// When embedded, the predeclared error interface
    		// must remain visible in interface types.
    		error
    	}
    
    	// 
    	type S0 struct {
    		// contains filtered or unexported fields
    	}
    
    	// 
    	type T0 struct {
    		ExportedField interface {
    			// error should be visible
    			error
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 390 bytes
    - Viewed (0)
  5. src/go/doc/testdata/error1.2.golden

    // 
    PACKAGE error1
    
    IMPORTPATH
    	testdata/error1
    
    FILENAMES
    	testdata/error1.go
    
    TYPES
    	// 
    	type I0 interface {
    		// When embedded, the predeclared error interface
    		// must remain visible in interface types.
    		error
    	}
    
    	// 
    	type S0 struct {
    		// contains filtered or unexported fields
    	}
    
    	// 
    	type T0 struct {
    		ExportedField interface {
    			// error should be visible
    			error
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 390 bytes
    - Viewed (0)
  6. src/image/image.go

    func (p *RGBA) Opaque() bool {
    	if p.Rect.Empty() {
    		return true
    	}
    	i0, i1 := 3, p.Rect.Dx()*4
    	for y := p.Rect.Min.Y; y < p.Rect.Max.Y; y++ {
    		for i := i0; i < i1; i += 4 {
    			if p.Pix[i] != 0xff {
    				return false
    			}
    		}
    		i0 += p.Stride
    		i1 += p.Stride
    	}
    	return true
    }
    
    // NewRGBA returns a new [RGBA] image with the given bounds.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 34.9K bytes
    - Viewed (0)
  7. test/fixedbugs/bug094.go

    	x := 0;
    	_ = x;
    }
    
    
    func main() {
    	f0();
    	f1();
    }
    
    /*
    uetli:~/Source/go1/test/bugs gri$ 6g bug094.go && 6l bug094.6 && 6.out
    bug094.go:11: left side of := must be a name
    bad top
    .   LITERAL-I0 l(343)
    bug094.go:11: fatal error: walktype: top=3 LITERAL
    uetli:~/Source/go1/test/bugs gri$
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 517 bytes
    - Viewed (0)
  8. src/go/doc/testdata/error2.go

    // Copyright 2012 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 error2
    
    type I0 interface {
    	// When embedded, the locally-declared error interface
    	// is only visible if all declarations are shown.
    	error
    }
    
    type T0 struct {
    	ExportedField interface {
    		// error should not be visible
    		error
    	}
    }
    
    type S0 struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 618 bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/printer.go

    }
    
    func (p *printer) printFieldList(fields []*Field, tags []*BasicLit, sep token) {
    	i0 := 0
    	var typ Expr
    	for i, f := range fields {
    		if f.Name == nil || f.Type != typ {
    			if i0 < i {
    				p.printFields(fields, tags, i0, i)
    				p.print(sep, newline)
    				i0 = i
    			}
    			typ = f.Type
    		}
    	}
    	p.printFields(fields, tags, i0, len(fields))
    }
    
    func (p *printer) printMethodList(methods []*Field) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 07:17:27 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  10. src/go/doc/testdata/error1.go

    // Copyright 2012 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 error1
    
    type I0 interface {
    	// When embedded, the predeclared error interface
    	// must remain visible in interface types.
    	error
    }
    
    type T0 struct {
    	ExportedField interface {
    		// error should be visible
    		error
    	}
    }
    
    type S0 struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 498 bytes
    - Viewed (0)
Back to top