Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 228 for iota (0.07 sec)

  1. src/sort/sort_test.go

    			data[i] = i ^ 0xcccc
    		}
    		b.StartTimer()
    		Stable(IntSlice(data))
    		b.StopTimer()
    	}
    }
    
    const (
    	_Sawtooth = iota
    	_Rand
    	_Stagger
    	_Plateau
    	_Shuffle
    	_NDist
    )
    
    const (
    	_Copy = iota
    	_Reverse
    	_ReverseFirstHalf
    	_ReverseSecondHalf
    	_Sorted
    	_Dither
    	_NMode
    )
    
    type testingData struct {
    	desc        string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:41:04 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  2. src/archive/tar/format.go

    //
    // The Writer currently provides no support for sparse files.
    type Format int
    
    // Constants to identify various tar formats.
    const (
    	// Deliberately hide the meaning of constants from public API.
    	_ Format = (1 << iota) / 4 // Sequence of 0, 0, 1, 2, 4, 8, etc...
    
    	// FormatUnknown indicates that the format is unknown.
    	FormatUnknown
    
    	// The format of the original Unix V7 tar tool prior to standardization.
    	formatV7
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 18:36:46 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  3. src/go/types/operand.go

    	"fmt"
    	"go/ast"
    	"go/constant"
    	"go/token"
    	. "internal/types/errors"
    )
    
    // An operandMode specifies the (addressing) mode of an operand.
    type operandMode byte
    
    const (
    	invalid   operandMode = iota // operand is invalid
    	novalue                      // operand represents no value (result of a function call w/o result)
    	builtin                      // operand is a built-in function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. src/unicode/letter.go

    // BUG(r): There is no mechanism for full case folding, that is, for
    // characters that involve multiple runes in the input or output.
    
    // Indices into the Delta arrays inside CaseRanges for case mapping.
    const (
    	UpperCase = iota
    	LowerCase
    	TitleCase
    	MaxCase
    )
    
    type d [MaxCase]rune // to make the CaseRanges text shorter
    
    // If the Delta field of a [CaseRange] is UpperLower, it means
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 10K bytes
    - Viewed (0)
  5. src/log/log.go

    			year, month, day := t.Date()
    			itoa(buf, year, 4)
    			*buf = append(*buf, '/')
    			itoa(buf, int(month), 2)
    			*buf = append(*buf, '/')
    			itoa(buf, day, 2)
    			*buf = append(*buf, ' ')
    		}
    		if flag&(Ltime|Lmicroseconds) != 0 {
    			hour, min, sec := t.Clock()
    			itoa(buf, hour, 2)
    			*buf = append(*buf, ':')
    			itoa(buf, min, 2)
    			*buf = append(*buf, ':')
    			itoa(buf, sec, 2)
    			if flag&Lmicroseconds != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 22:56:07 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  6. src/runtime/runtime2.go

    	// _Gscanwaiting -> _Gscanrunnable are actually okay because
    	// they don't affect stack ownership.
    
    	// _Gidle means this goroutine was just allocated and has not
    	// yet been initialized.
    	_Gidle = iota // 0
    
    	// _Grunnable means this goroutine is on a run queue. It is
    	// not currently executing user code. The stack is not owned.
    	_Grunnable // 1
    
    	// _Grunning means this goroutine may execute user code. The
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/nilcheck.go

    	// i.e. struct fields and array elements, even with non-constant
    	// indices: x is non-nil iff x.a.b[i].c is.
    
    	type walkState int
    	const (
    		Work     walkState = iota // process nil checks and traverse to dominees
    		ClearPtr                  // forget the fact that ptr is nil
    	)
    
    	type bp struct {
    		block *Block // block, or nil in ClearPtr state
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/x86/x86asm/inst.go

    // the interface value instead of requiring an allocation.
    
    // A Reg is a single register.
    // The zero Reg value has no name but indicates “no register.”
    type Reg uint8
    
    const (
    	_ Reg = iota
    
    	// 8-bit
    	AL
    	CL
    	DL
    	BL
    	AH
    	CH
    	DH
    	BH
    	SPB
    	BPB
    	SIB
    	DIB
    	R8B
    	R9B
    	R10B
    	R11B
    	R12B
    	R13B
    	R14B
    	R15B
    
    	// 16-bit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/arm/armasm/decode.go

    // The _offset and _postindex suffixes force the given addressing mode.
    // The rest should be somewhat self-explanatory, at least given
    // the decodeArg function.
    type instArg uint8
    
    const (
    	_ instArg = iota
    	arg_APSR
    	arg_FPSCR
    	arg_Dn_half
    	arg_R1_0
    	arg_R1_12
    	arg_R2_0
    	arg_R2_12
    	arg_R_0
    	arg_R_12
    	arg_R_12_nzcv
    	arg_R_16
    	arg_R_16_WB
    	arg_R_8
    	arg_R_rotate
    	arg_R_shift_R
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  10. 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)
Back to top