Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 483 for iota (0.04 sec)

  1. src/internal/pkgbits/sync.go

    // written to export data to ensure the reader and writer stay
    // synchronized.
    type SyncMarker int
    
    //go:generate stringer -type=SyncMarker -trimprefix=Sync
    
    const (
    	_ SyncMarker = iota
    
    	// Public markers (known to go/types importers).
    
    	// Low-level coding markers.
    	SyncEOF
    	SyncBool
    	SyncInt64
    	SyncUint64
    	SyncString
    	SyncValue
    	SyncVal
    	SyncRelocs
    	SyncReloc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 04 17:12:28 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  2. src/html/template/context.go

    //go:generate stringer -type state
    
    const (
    	// stateText is parsed character data. An HTML parser is in
    	// this state when its parse position is outside an HTML tag,
    	// directive, comment, and special element body.
    	stateText state = iota
    	// stateTag occurs before an HTML attribute or the end of a tag.
    	stateTag
    	// stateAttrName occurs inside an attribute name.
    	// It occurs between the ^'s in ` ^name^ = value`.
    	stateAttrName
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/stdlib.go

    	Kind    Kind
    	Version Version // Go version that first included the symbol
    }
    
    // A Kind indicates the kind of a symbol:
    // function, variable, constant, type, and so on.
    type Kind int8
    
    const (
    	Invalid Kind = iota // Example name:
    	Type                // "Buffer"
    	Func                // "Println"
    	Var                 // "EOF"
    	Const               // "Pi"
    	Field               // "Point.X"
    	Method              // "(*Buffer).Grow"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. src/internal/goarch/goarch.go

    // by them is useful for defining GOARCH-specific constants.
    //
    //go:generate go run gengoarch.go
    
    type ArchFamilyType int
    
    const (
    	AMD64 ArchFamilyType = iota
    	ARM
    	ARM64
    	I386
    	LOONG64
    	MIPS
    	MIPS64
    	PPC64
    	RISCV64
    	S390X
    	WASM
    )
    
    // PtrSize is the size of a pointer in bytes - unsafe.Sizeof(uintptr(0)) but as an ideal constant.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 19:48:21 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  5. src/regexp/syntax/prog.go

    type Prog struct {
    	Inst   []Inst
    	Start  int // index of start instruction
    	NumCap int // number of InstCapture insts in re
    }
    
    // An InstOp is an instruction opcode.
    type InstOp uint8
    
    const (
    	InstAlt InstOp = iota
    	InstAltMatch
    	InstCapture
    	InstEmptyWidth
    	InstMatch
    	InstFail
    	InstNop
    	InstRune
    	InstRune1
    	InstRuneAny
    	InstRuneAnyNotNL
    )
    
    var instOpNames = []string{
    	"InstAlt",
    	"InstAltMatch",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/cases/trieval.go

    // cXORCase can result in large series of identical trie values. This, in turn,
    // allows us to better compress the trie blocks.
    const (
    	cUncased          info = iota // 000
    	cTitle                        // 001
    	cLower                        // 010
    	cUpper                        // 011
    	cIgnorableUncased             // 100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/link.go

    	//	for TYPE_FCONST, a float64
    	//	for TYPE_BRANCH, a *Prog (optional)
    	//	for TYPE_TEXTSIZE, an int32 (optional)
    	Val interface{}
    }
    
    type AddrName int8
    
    const (
    	NAME_NONE AddrName = iota
    	NAME_EXTERN
    	NAME_STATIC
    	NAME_AUTO
    	NAME_PARAM
    	// A reference to name@GOT(SB) is a reference to the entry in the global offset
    	// table for 'name'.
    	NAME_GOTREF
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  8. src/go/doc/testdata/b.go

    // Exported declarations associated with non-exported types must always be shown.
    
    type notExported int
    
    const C notExported = 0
    
    const (
    	C1 notExported = iota
    	C2
    	c3
    	C4
    	C5
    )
    
    var V notExported
    var V1, V2, v3, V4, V5 notExported
    
    var (
    	U1, U2, u3, U4, U5 notExported
    	u6                 notExported
    	U7                 notExported = 7
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 11 16:05:02 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  9. src/net/textproto/writer.go

    	return w.dot
    }
    
    func (w *Writer) closeDot() {
    	if w.dot != nil {
    		w.dot.Close() // sets w.dot = nil
    	}
    }
    
    type dotWriter struct {
    	w     *Writer
    	state int
    }
    
    const (
    	wstateBegin     = iota // initial state; must be zero
    	wstateBeginLine        // beginning of line
    	wstateCR               // wrote \r (possibly at end of line)
    	wstateData             // writing data in middle of line
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types/alg.go

    // AlgKind describes the kind of algorithms used for comparing and
    // hashing a Type.
    type AlgKind int8
    
    //go:generate stringer -type AlgKind -trimprefix A alg.go
    
    const (
    	AUNK   AlgKind = iota
    	ANOEQ          // Types cannot be compared
    	ANOALG         // implies ANOEQ, and in addition has a part that is marked Noalg
    	AMEM           // Type can be compared/hashed as regular memory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 15:30:00 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top