Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 155 for iota (0.88 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/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)
  4. 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)
  5. src/go/ast/filter.go

    // The MergeMode flags control the behavior of [MergePackageFiles].
    type MergeMode uint
    
    const (
    	// If set, duplicate function declarations are excluded.
    	FilterFuncDuplicates MergeMode = 1 << iota
    	// If set, comments that are not associated with a specific
    	// AST node (as Doc or Comment) are excluded.
    	FilterUnassociatedComments
    	// If set, duplicate import declarations are excluded.
    	FilterImportDuplicates
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. src/net/http/cookie.go

    // some protection against cross-site request forgery attacks.
    //
    // See https://tools.ietf.org/html/draft-ietf-httpbis-cookie-same-site-00 for details.
    type SameSite int
    
    const (
    	SameSiteDefaultMode SameSite = iota + 1
    	SameSiteLaxMode
    	SameSiteStrictMode
    	SameSiteNoneMode
    )
    
    var (
    	errBlankCookie           = errors.New("http: blank cookie")
    	errEqualNotFoundInCookie = errors.New("http: '=' not found in cookie")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/internal/language/lookup.go

    		return m[i].From >= uint16(r)
    	})
    	if k < len(m) && m[k].From == uint16(r) {
    		return Region(m[k].To)
    	}
    	return 0
    }
    
    const (
    	iso3166UserAssigned = 1 << iota
    	ccTLD
    	bcp47Region
    )
    
    func (r Region) typ() byte {
    	return regionTypes[r]
    }
    
    // String returns the BCP 47 representation for the region.
    // It returns "ZZ" for an unspecified region.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. 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)
  9. src/crypto/tls/cipher_suites.go

    	// Diffie-Hellman. This means that it should only be selected when the
    	// client indicates that it supports ECC with a curve and point format
    	// that we're happy with.
    	suiteECDHE = 1 << iota
    	// suiteECSign indicates that the cipher suite involves an ECDSA or
    	// EdDSA signature and therefore may only be selected when the server's
    	// certificate is ECDSA or EdDSA. If this is not set then the cipher suite
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  10. src/text/tabwriter/tabwriter.go

    // Formatting can be controlled with these flags.
    const (
    	// Ignore html tags and treat entities (starting with '&'
    	// and ending in ';') as single characters (width = 1).
    	FilterHTML uint = 1 << iota
    
    	// Strip Escape characters bracketing escaped text segments
    	// instead of passing them through unchanged with the text.
    	StripEscape
    
    	// Force right-alignment of cell content.
    	// Default is left-alignment.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 16:46:34 UTC 2024
    - 17.8K bytes
    - Viewed (0)
Back to top