Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 228 for iota (0.04 sec)

  1. 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)
  2. src/encoding/xml/xml.go

    // ending a given tag are *below* it on the stack, which is
    // more work but forced on us by XML.
    type stack struct {
    	next *stack
    	kind int
    	name Name
    	ok   bool
    }
    
    const (
    	stkStart = iota
    	stkNs
    	stkEOF
    )
    
    func (d *Decoder) push(kind int) *stack {
    	s := d.free
    	if s != nil {
    		d.free = s.next
    	} else {
    		s = new(stack)
    	}
    	s.next = d.stk
    	s.kind = kind
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.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/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)
  7. 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)
  8. src/cmd/vendor/github.com/ianlancetaylor/demangle/rust.go

    		rst.backref(rst.demangleConst)
    		return
    	}
    
    	if rst.str[0] == 'p' {
    		rst.advance(1)
    		rst.writeByte('_')
    		return
    	}
    
    	typ := rst.str[0]
    
    	const (
    		invalid = iota
    		signedInt
    		unsignedInt
    		boolean
    		character
    	)
    
    	var kind int
    	switch typ {
    	case 'a', 's', 'l', 'x', 'n', 'i':
    		kind = signedInt
    	case 'h', 't', 'm', 'y', 'o', 'j':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 23.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/inline/inlheur/scoring.go

    // there may be control flow that could cause the benefit to be
    // bypassed.
    const (
    	// Category 1 adjustments (see above)
    	panicPathAdj scoreAdjustTyp = (1 << iota)
    	initFuncAdj
    	inLoopAdj
    
    	// Category 2 adjustments (see above).
    	passConstToIfAdj
    	passConstToNestedIfAdj
    	passConcreteToItfCallAdj
    	passConcreteToNestedItfCallAdj
    	passFuncToIndCallAdj
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
Back to top