Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 228 for iota (0.61 sec)

  1. src/log/slog/value.go

    )
    
    // Kind is the kind of a [Value].
    type Kind int
    
    // The following list is sorted alphabetically, but it's also important that
    // KindAny is 0 so that a zero Value represents nil.
    
    const (
    	KindAny Kind = iota
    	KindBool
    	KindDuration
    	KindFloat64
    	KindInt64
    	KindString
    	KindTime
    	KindUint64
    	KindGroup
    	KindLogValuer
    )
    
    var kindStrings = []string{
    	"Any",
    	"Bool",
    	"Duration",
    	"Float64",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. src/runtime/pprof/proto.go

    //	1<<0 (lookupTried) : symbol lookup was performed
    //	1<<1 (lookupFailed): symbol lookup was performed but failed
    type symbolizeFlag uint8
    
    const (
    	lookupTried  symbolizeFlag = 1 << iota
    	lookupFailed symbolizeFlag = 1 << iota
    )
    
    const (
    	// message Profile
    	tagProfile_SampleType        = 1  // repeated ValueType
    	tagProfile_Sample            = 2  // repeated Sample
    	tagProfile_Mapping           = 3  // repeated Mapping
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 13 20:40:52 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/aenum.go

    // Code generated by x86avxgen. DO NOT EDIT.
    
    package x86
    
    import "cmd/internal/obj"
    
    //go:generate go run ../stringer.go -i $GOFILE -o anames.go -p x86
    
    const (
    	AAAA = obj.ABaseAMD64 + obj.A_ARCHSPECIFIC + iota
    	AAAD
    	AAAM
    	AAAS
    	AADCB
    	AADCL
    	AADCQ
    	AADCW
    	AADCXL
    	AADCXQ
    	AADDB
    	AADDL
    	AADDPD
    	AADDPS
    	AADDQ
    	AADDSD
    	AADDSS
    	AADDSUBPD
    	AADDSUBPS
    	AADDW
    	AADJSP
    	AADOXL
    	AADOXQ
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  4. src/cmd/internal/src/pos.go

    	//
    	// When code generation occurs any remaining default-marked positions are replaced with not-statement
    	// positions.
    	//
    	PosDefaultStmt uint = iota // Default; position is not a statement boundary, but might be if optimization removes the designated statement boundary
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  5. src/runtime/mgclimit.go

    // to execute its function.
    //
    // This type may use no more than limiterEventBits bits of information.
    type limiterEventType uint8
    
    const (
    	limiterEventNone           limiterEventType = iota // None of the following events.
    	limiterEventIdleMarkWork                           // Refers to an idle mark worker (see gcMarkWorkerMode).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/schedule.go

    // license that can be found in the LICENSE file.
    
    package ssa
    
    import (
    	"cmd/compile/internal/base"
    	"cmd/compile/internal/types"
    	"container/heap"
    	"sort"
    )
    
    const (
    	ScorePhi       = iota // towards top of block
    	ScoreArg              // must occur at the top of the entry block
    	ScoreInitMem          // after the args - used as mark by debug info generation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  7. src/text/template/parse/lex.go

    	case len(i.val) > 10:
    		return fmt.Sprintf("%.10q...", i.val)
    	}
    	return fmt.Sprintf("%q", i.val)
    }
    
    // itemType identifies the type of lex items.
    type itemType int
    
    const (
    	itemError        itemType = iota // error occurred; value is text of error
    	itemBool                         // boolean constant
    	itemChar                         // printable ASCII character; grab bag for comma etc.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 04 22:36:12 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  8. src/internal/trace/trace_test.go

    		// The goroutines are careful to call runtime.Gosched in between blocking,
    		// so there should never be a clean block/unblock on the goroutine unless
    		// the runtime was generating extraneous events.
    		const (
    			entered = iota
    			blocked
    			runnable
    			running
    		)
    		gs := make(map[trace.GoID]int)
    		seenSpecialGoroutines := false
    		r, err := trace.NewReader(bytes.NewReader(tb))
    		if err != nil {
    			t.Error(err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  9. src/runtime/syscall_windows.go

    	retPop uintptr  // For 386 cdecl, how many bytes to pop on return
    	abiMap abiDesc
    }
    
    // abiPartKind is the action an abiPart should take.
    type abiPartKind int
    
    const (
    	abiPartBad   abiPartKind = iota
    	abiPartStack             // Move a value from memory to the stack.
    	abiPartReg               // Move a value from memory to a register.
    )
    
    // abiPart encodes a step in translating between calling ABIs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. src/internal/coverage/cfile/emit.go

    	covProfileAlreadyEmitted bool
    )
    
    // fileType is used to select between counter-data files and
    // meta-data files.
    type fileType int
    
    const (
    	noFile = 1 << iota
    	metaDataFile
    	counterDataFile
    )
    
    // emitMetaData emits the meta-data output file for this coverage run.
    // This entry point is intended to be invoked by the compiler from
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
Back to top