Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 228 for iota (0.04 sec)

  1. src/internal/trace/event/go122/event.go

    )
    
    // Experiments.
    const (
    	// AllocFree is the alloc-free events experiment.
    	AllocFree event.Experiment = 1 + iota
    )
    
    // Experimental events.
    const (
    	_ event.Type = 127 + iota
    
    	// Experimental events for AllocFree.
    
    	// Experimental heap span events. Added in Go 1.23.
    	EvSpan      // heap span exists [timestamp, id, npages, type/class]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. src/cmd/internal/goobj/objfile.go

    	ObjFlagStd                      // standard library package
    )
    
    // Sym.Flag
    const (
    	SymFlagDupok = 1 << iota
    	SymFlagLocal
    	SymFlagTypelink
    	SymFlagLeaf
    	SymFlagNoSplit
    	SymFlagReflectMethod
    	SymFlagGoType
    )
    
    // Sym.Flag2
    const (
    	SymFlagUsedInIface = 1 << iota
    	SymFlagItab
    	SymFlagDict
    	SymFlagPkgInit
    	SymFlagLinkname
    	SymFlagABIWrapper
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  3. src/internal/coverage/defs.go

    	Parent        uint32
    }
    
    // CounterMode tracks the "flavor" of the coverage counters being
    // used in a given coverage-instrumented program.
    type CounterMode uint8
    
    const (
    	CtrModeInvalid  CounterMode = iota
    	CtrModeSet                  // "set" mode
    	CtrModeCount                // "count" mode
    	CtrModeAtomic               // "atomic" mode
    	CtrModeRegOnly              // registration-only pseudo-mode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 12:51:16 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.go

    type Arg interface {
    	isArg()
    	String() string
    }
    
    // A Reg is a single register.
    // The zero value denotes W0, not the absence of a register.
    type Reg uint16
    
    const (
    	W0 Reg = iota
    	W1
    	W2
    	W3
    	W4
    	W5
    	W6
    	W7
    	W8
    	W9
    	W10
    	W11
    	W12
    	W13
    	W14
    	W15
    	W16
    	W17
    	W18
    	W19
    	W20
    	W21
    	W22
    	W23
    	W24
    	W25
    	W26
    	W27
    	W28
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/ppc64/a.out.go

    	BO_NOTBCR  = 4  // branch on not cr value
    )
    
    // Bit settings from the CR
    
    const (
    	C_COND_LT = iota // 0 result is negative
    	C_COND_GT        // 1 result is positive
    	C_COND_EQ        // 2 result is zero
    	C_COND_SO        // 3 summary overflow or FP compare w/ NaN
    )
    
    const (
    	C_NONE     = iota
    	C_REGP     /* An even numbered gpr which can be used a gpr pair argument */
    	C_REG      /* Any gpr register */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
  6. src/internal/trace/traceviewer/emitter.go

    	return float64(t) / float64(time.Microsecond)
    }
    
    type GState int
    
    const (
    	GDead GState = iota
    	GRunnable
    	GRunning
    	GWaiting
    	GWaitingGC
    
    	gStateCount
    )
    
    type ThreadState int
    
    const (
    	ThreadStateInSyscall ThreadState = iota
    	ThreadStateInSyscallRuntime
    	ThreadStateRunning
    
    	threadStateCount
    )
    
    type frameNode struct {
    	id       int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:58 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  7. src/go/doc/example.go

    	// However, if there is a constant group with iota, leave it all: later
    	// constant declarations in the group may have no value and so cannot stand
    	// on their own, and removing any constant from the group could change the
    	// values of subsequent ones.
    	// See testdata/examples/iota.go for a minimal example.
    	var ds []ast.Decl
    	for _, d := range depDecls {
    		switch d := d.(type) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/typexpr.go

    		return
    
    	case *Const:
    		check.addDeclDep(obj)
    		if !isValid(typ) {
    			return
    		}
    		if obj == universeIota {
    			if check.iota == nil {
    				check.error(e, InvalidIota, "cannot use iota outside constant declaration")
    				return
    			}
    			x.val = check.iota
    		} else {
    			x.val = obj.val
    		}
    		assert(x.val != nil)
    		x.mode = constant_
    
    	case *TypeName:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. src/syscall/types_windows.go

    )
    
    const (
    	// do not reorder
    	FILE_NOTIFY_CHANGE_FILE_NAME = 1 << iota
    	FILE_NOTIFY_CHANGE_DIR_NAME
    	FILE_NOTIFY_CHANGE_ATTRIBUTES
    	FILE_NOTIFY_CHANGE_SIZE
    	FILE_NOTIFY_CHANGE_LAST_WRITE
    	FILE_NOTIFY_CHANGE_LAST_ACCESS
    	FILE_NOTIFY_CHANGE_CREATION
    )
    
    const (
    	// do not reorder
    	FILE_ACTION_ADDED = iota + 1
    	FILE_ACTION_REMOVED
    	FILE_ACTION_MODIFIED
    	FILE_ACTION_RENAMED_OLD_NAME
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/walk/complit.go

    // that function to allow multiple instances of that function
    // to execute concurrently without clobbering each others' data.
    type initContext uint8
    
    const (
    	inInitFunction initContext = iota
    	inNonInitFunction
    )
    
    func (c initContext) String() string {
    	if c == inInitFunction {
    		return "inInitFunction"
    	}
    	return "inNonInitFunction"
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:03:54 UTC 2023
    - 19.5K bytes
    - Viewed (0)
Back to top