Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 481 for iota (0.13 sec)

  1. src/crypto/x509/pem_decrypt.go

    	"crypto/md5"
    	"encoding/hex"
    	"encoding/pem"
    	"errors"
    	"io"
    	"strings"
    )
    
    type PEMCipher int
    
    // Possible values for the EncryptPEMBlock encryption algorithm.
    const (
    	_ PEMCipher = iota
    	PEMCipherDES
    	PEMCipher3DES
    	PEMCipherAES128
    	PEMCipherAES192
    	PEMCipherAES256
    )
    
    // rfc1423Algo holds a method for enciphering a PEM block.
    type rfc1423Algo struct {
    	cipher     PEMCipher
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/loopbce.go

    package ssa
    
    import (
    	"cmd/compile/internal/base"
    	"cmd/compile/internal/types"
    	"fmt"
    )
    
    type indVarFlags uint8
    
    const (
    	indVarMinExc    indVarFlags = 1 << iota // minimum value is exclusive (default: inclusive)
    	indVarMaxInc                            // maximum value is inclusive (default: exclusive)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 17:37:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  3. src/sort/sort.go

    	n := data.Len()
    	if n <= 1 {
    		return
    	}
    	limit := bits.Len(uint(n))
    	pdqsort(data, 0, n, limit)
    }
    
    type sortedHint int // hint for pdqsort when choosing the pivot
    
    const (
    	unknownHint sortedHint = iota
    	increasingHint
    	decreasingHint
    )
    
    // xorshift paper: https://www.jstatsoft.org/article/view/v008i14/xorshift.pdf
    type xorshift uint64
    
    func (r *xorshift) Next() uint64 {
    	*r ^= *r << 13
    	*r ^= *r >> 17
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 16:40:32 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  4. src/go/printer/printer.go

    	formfeed = whiteSpace('\f')
    	indent   = whiteSpace('>')
    	unindent = whiteSpace('<')
    )
    
    // A pmode value represents the current printer mode.
    type pmode int
    
    const (
    	noExtraBlank     pmode = 1 << iota // disables extra blank after /*-style comment
    	noExtraLinebreak                   // disables extra line break after /*-style comment
    )
    
    type commentInfo struct {
    	cindex         int               // current comment index
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  5. src/go/types/check.go

    	scope         *Scope                 // top-most scope for lookups
    	pos           token.Pos              // if valid, identifiers are looked up as if at position pos (used by Eval)
    	iota          constant.Value         // value of iota in a constant declaration; nil otherwise
    	errpos        positioner             // if set, identifier position of a constant with inherited initializer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  6. src/encoding/json/scanner.go

    // It is okay to ignore the return value of any particular
    // call to scanner.state: if one call returns scanError,
    // every subsequent call will return scanError too.
    const (
    	// Continue.
    	scanContinue     = iota // uninteresting byte
    	scanBeginLiteral        // end implied by next result != scanContinue
    	scanBeginObject         // begin object
    	scanObjectKey           // just finished object key (string)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  7. src/encoding/json/stream.go

    //   - bool, for JSON booleans
    //   - float64, for JSON numbers
    //   - [Number], for JSON numbers
    //   - string, for JSON string literals
    //   - nil, for JSON null
    type Token any
    
    const (
    	tokenTopValue = iota
    	tokenArrayStart
    	tokenArrayValue
    	tokenArrayComma
    	tokenObjectStart
    	tokenObjectKey
    	tokenObjectColon
    	tokenObjectValue
    	tokenObjectComma
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/rsc.io/markdown/entity.go

    	"&InvisibleComma;":                  "\u2063",
    	"&InvisibleTimes;":                  "\u2062",
    	"&Iogon;":                           "\u012e",
    	"&Iopf;":                            "\U0001d540",
    	"&Iota;":                            "\u0399",
    	"&Iscr;":                            "\u2110",
    	"&Itilde;":                          "\u0128",
    	"&Iukcy;":                           "\u0406",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/internal/archive/archive.go

    	Type  EntryType
    	Mtime int64
    	Uid   int
    	Gid   int
    	Mode  os.FileMode
    	Data
    	Obj *GoObj // nil if this entry is not a Go object file
    }
    
    type EntryType int
    
    const (
    	EntryPkgDef EntryType = iota
    	EntryGoObj
    	EntryNativeObj
    	EntrySentinelNonObj
    )
    
    func (e *Entry) String() string {
    	return fmt.Sprintf("%s %6d/%-6d %12d %s %s",
    		(e.Mode & 0777).String(),
    		e.Uid,
    		e.Gid,
    		e.Size,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 15:39:57 UTC 2023
    - 12.1K bytes
    - Viewed (0)
Back to top