Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 288 for iota (0.13 sec)

  1. src/debug/gosym/pclntab.go

    /*
     * Line tables
     */
    
    package gosym
    
    import (
    	"bytes"
    	"encoding/binary"
    	"sort"
    	"sync"
    )
    
    // version of the pclntab
    type version int
    
    const (
    	verUnknown version = iota
    	ver11
    	ver12
    	ver116
    	ver118
    	ver120
    )
    
    // A LineTable is a data structure mapping program counters to line numbers.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 19:43:24 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  2. src/text/template/parse/parse.go

    	actionLine int // line of left delim starting action
    	rangeDepth int
    }
    
    // A mode value is a set of flags (or 0). Modes control parser behavior.
    type Mode uint
    
    const (
    	ParseComments Mode = 1 << iota // parse comments and add them to AST
    	SkipFuncCheck                  // do not check that functions are defined
    )
    
    // Copy returns a copy of the [Tree]. Any parsing state is discarded.
    func (t *Tree) Copy() *Tree {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  3. src/os/file_unix.go

    }
    
    // newFileKind describes the kind of file to newFile.
    type newFileKind int
    
    const (
    	// kindNewFile means that the descriptor was passed to us via NewFile.
    	kindNewFile newFileKind = iota
    	// kindOpenFile means that the descriptor was opened using
    	// Open, Create, or OpenFile.
    	kindOpenFile
    	// kindPipe means that the descriptor was opened using Pipe.
    	kindPipe
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  4. src/reflect/abi.go

    	freg   int     // FP register index, used if kind == abiStepFloatReg
    }
    
    // abiStepKind is the "op-code" for an abiStep instruction.
    type abiStepKind int
    
    const (
    	abiStepBad      abiStepKind = iota
    	abiStepStack                // copy to/from stack
    	abiStepIntReg               // copy to/from integer register
    	abiStepPointer              // copy pointer to/from integer register
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. src/runtime/select.go

    	val unsafe.Pointer // ptr to data (SendDir) or ptr to receive buffer (RecvDir)
    }
    
    // These values must match ../reflect/value.go:/SelectDir.
    type selectDir int
    
    const (
    	_             selectDir = iota
    	selectSend              // case Chan <- Send
    	selectRecv              // case <-Chan:
    	selectDefault           // default
    )
    
    //go:linkname reflect_rselect reflect.rselect
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 13 21:36:04 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. src/runtime/traceevent.go

    //     are suffixes reserved for scheduling resources.
    //
    // NOTE: If you add an event type, make sure you also update all
    // tables in this file!
    type traceEv uint8
    
    const (
    	traceEvNone traceEv = iota // unused
    
    	// Structural events.
    	traceEvEventBatch // start of per-M batch of events [generation, M ID, timestamp, batch length]
    	traceEvStacks     // start of a section of the stack table [...traceEvStack]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. src/internal/types/errors/codes.go

    	//  of an assignment."
    	//
    	// Example:
    	//  var x = _
    	InvalidBlank
    
    	// InvalidIota occurs when the predeclared identifier iota is used outside
    	// of a constant declaration.
    	//
    	// Example:
    	//  var x = iota
    	InvalidIota
    
    	// MissingInitBody occurs when an init function is missing its body.
    	//
    	// Example:
    	//  func init()
    	MissingInitBody
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:50:48 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  8. src/text/scanner/scanner.go

    	GoTokens       = ScanIdents | ScanFloats | ScanChars | ScanStrings | ScanRawStrings | ScanComments | SkipComments
    )
    
    // The result of Scan is one of these tokens or a Unicode character.
    const (
    	EOF = -(iota + 1)
    	Ident
    	Int
    	Float
    	Char
    	String
    	RawString
    	Comment
    
    	// internal use only
    	skipComment
    )
    
    var tokenString = map[rune]string{
    	EOF:       "EOF",
    	Ident:     "Ident",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/cases/map.go

    		c.writeBytes(b[:sz])
    		i = len(b[sz:]) / 2 // Greek modifiers are always of length 2.
    	}
    
    	for ; i < maxIgnorable && c.next(); i++ {
    		switch r, _ := utf8.DecodeRune(c.src[c.pSrc:]); r {
    		// Above and Iota Subscript
    		case 0x0300, // U+0300 COMBINING GRAVE ACCENT
    			0x0301, // U+0301 COMBINING ACUTE ACCENT
    			0x0304, // U+0304 COMBINING MACRON
    			0x0306, // U+0306 COMBINING BREVE
    			0x0308, // U+0308 COMBINING DIAERESIS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types/type.go

    type Object interface {
    	Pos() src.XPos
    	Sym() *Sym
    	Type() *Type
    }
    
    //go:generate stringer -type Kind -trimprefix T type.go
    
    // Kind describes a kind of type.
    type Kind uint8
    
    const (
    	Txxx Kind = iota
    
    	TINT8
    	TUINT8
    	TINT16
    	TUINT16
    	TINT32
    	TUINT32
    	TINT64
    	TUINT64
    	TINT
    	TUINT
    	TUINTPTR
    
    	TCOMPLEX64
    	TCOMPLEX128
    
    	TFLOAT32
    	TFLOAT64
    
    	TBOOL
    
    	TPTR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
Back to top