Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 624 for IOTA (0.12 sec)

  1. src/go/doc/testdata/g.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // The package g is a go/doc test for mixed exported/unexported values.
    package g
    
    const (
    	A, b = iota, iota
    	c, D
    	E, f
    	G, H
    )
    
    var (
    	c1, C2, c3 = 1, 2, 3
    	C4, c5, C6 = 4, 5, 6
    	c7, C8, c9 = 7, 8, 9
    	xx, yy, zz = 0, 0, 0 // all unexported and hidden
    )
    
    var (
    	x, X = f()
    	y, z = f()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 16:29:17 UTC 2018
    - 449 bytes
    - Viewed (0)
  2. src/go/doc/testdata/issue16153.0.golden

    // 
    PACKAGE issue16153
    
    IMPORTPATH
    	testdata/issue16153
    
    FILENAMES
    	testdata/issue16153.go
    
    CONSTANTS
    	// 
    	const (
    		X3	int64	= iota
    		Y3		= 1
    	)
    
    	// 
    	const (
    		X4	int64	= iota
    		Y4
    	)
    
    	// original test case 
    	const (
    		Y1 = 256
    	)
    
    	// variations 
    	const (
    		Y2 uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 18:01:14 UTC 2017
    - 277 bytes
    - Viewed (0)
  3. src/go/doc/testdata/issue16153.2.golden

    // 
    PACKAGE issue16153
    
    IMPORTPATH
    	testdata/issue16153
    
    FILENAMES
    	testdata/issue16153.go
    
    CONSTANTS
    	// 
    	const (
    		X3	int64	= iota
    		Y3		= 1
    	)
    
    	// 
    	const (
    		X4	int64	= iota
    		Y4
    	)
    
    	// original test case 
    	const (
    		Y1 = 256
    	)
    
    	// variations 
    	const (
    		Y2 uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 18:01:14 UTC 2017
    - 277 bytes
    - Viewed (0)
  4. src/go/doc/testdata/issue16153.1.golden

    CONSTANTS
    	// original test case 
    	const (
    		x1	uint8	= 255
    		Y1		= 256
    	)
    
    	// variations 
    	const (
    		x2	uint8	= 255
    		Y2
    	)
    
    	// 
    	const (
    		X3	int64	= iota
    		Y3		= 1
    	)
    
    	// 
    	const (
    		X4	int64	= iota
    		Y4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 18:01:14 UTC 2017
    - 306 bytes
    - Viewed (0)
  5. src/go/doc/testdata/g.0.golden

    // The package g is a go/doc test for mixed exported/unexported ...
    PACKAGE g
    
    IMPORTPATH
    	testdata/g
    
    FILENAMES
    	testdata/g.go
    
    CONSTANTS
    	// 
    	const (
    		A, _	= iota, iota
    		_, D
    		E, _
    		G, H
    	)
    
    
    VARIABLES
    	// 
    	var (
    		_, C2, _	= 1, 2, 3
    		C4, _, C6	= 4, 5, 6
    		_, C8, _	= 7, 8, 9
    	)
    
    	// 
    	var (
    		_, X = f()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 16:29:17 UTC 2018
    - 318 bytes
    - Viewed (0)
  6. src/cmd/doc/testdata/pkg.go

    }{
    	{"FieldVal1", 1}: {},
    	{"FieldVal2", 2}: {},
    	{"FieldVal3", 3}: {},
    }
    
    const (
    	_, _ uint64 = 2 * iota, 1 << iota
    	constLeft1, constRight1
    	ConstLeft2, constRight2
    	constLeft3, ConstRight3
    	ConstLeft4, ConstRight4
    )
    
    const (
    	ConstGroup1 unexportedType = iota
    	ConstGroup2
    	ConstGroup3
    )
    
    const ConstGroup4 ExportedType = ExportedType{}
    
    func newLongLine(ss ...string)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:16:55 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. src/internal/pkgbits/codes.go

    func (c CodeVal) Value() int         { return int(c) }
    
    // Note: These values are public and cannot be changed without
    // updating the go/types importers.
    
    const (
    	ValBool CodeVal = iota
    	ValString
    	ValInt64
    	ValBigInt
    	ValBigRat
    	ValBigFloat
    )
    
    // A CodeType distinguishes among go/types.Type encodings.
    type CodeType int
    
    func (c CodeType) Marker() SyncMarker { return SyncType }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 16:15:47 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/tokens.go

    // not represent the literal kind well anymore. Remove it?
    const (
    	IntLit LitKind = iota
    	FloatLit
    	ImagLit
    	RuneLit
    	StringLit
    )
    
    type Operator uint
    
    //go:generate stringer -type Operator -linecomment tokens.go
    
    const (
    	_ Operator = iota
    
    	// Def is the : in :=
    	Def   // :
    	Not   // !
    	Recv  // <-
    	Tilde // ~
    
    	// precOrOr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. src/go/doc/testdata/g.2.golden

    // The package g is a go/doc test for mixed exported/unexported ...
    PACKAGE g
    
    IMPORTPATH
    	testdata/g
    
    FILENAMES
    	testdata/g.go
    
    CONSTANTS
    	// 
    	const (
    		A, _	= iota, iota
    		_, D
    		E, _
    		G, H
    	)
    
    
    VARIABLES
    	// 
    	var (
    		_, C2, _	= 1, 2, 3
    		C4, _, C6	= 4, 5, 6
    		_, C8, _	= 7, 8, 9
    	)
    
    	// 
    	var (
    		_, X = f()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 16:29:17 UTC 2018
    - 318 bytes
    - Viewed (0)
  10. pilot/pkg/networking/networking.go

    )
    
    // ListenerProtocol is the protocol associated with the listener.
    type ListenerProtocol int
    
    const (
    	// ListenerProtocolUnknown is an unknown type of listener.
    	ListenerProtocolUnknown = iota
    	// ListenerProtocolTCP is a TCP listener.
    	ListenerProtocolTCP
    	// ListenerProtocolHTTP is an HTTP listener.
    	ListenerProtocolHTTP
    	// ListenerProtocolAuto enables auto protocol detection
    	ListenerProtocolAuto
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 18 09:42:04 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top