Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
  3. 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)
  4. src/cmd/dist/util.go

    	sort.Strings(out)
    	keep := out[:0]
    	for _, x := range out {
    		if len(keep) == 0 || keep[len(keep)-1] != x {
    			keep = append(keep, x)
    		}
    	}
    	return keep
    }
    
    const (
    	CheckExit = 1 << iota
    	ShowOutput
    	Background
    )
    
    var outputLock sync.Mutex
    
    // run is like runEnv with no additional environment.
    func run(dir string, mode int, cmd ...string) string {
    	return runEnv(dir, mode, nil, cmd...)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 17:50:29 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  5. src/runtime/error.go

    	}
    	return "interface conversion: " + cs + " is not " + as +
    		": missing method " + e.missingMethod
    }
    
    // itoa converts val to a decimal representation. The result is
    // written somewhere within buf and the location of the result is returned.
    // buf must be at least 20 bytes.
    //
    //go:nosplit
    func itoa(buf []byte, val uint64) []byte {
    	i := len(buf) - 1
    	for val >= 10 {
    		buf[i] = byte(val%10 + '0')
    		i--
    		val /= 10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/crypto/tls/boring_test.go

    				testClientCert(t, listName+"->"+rootName[1:]+" (fips, client cert)", pool, leaf.key, list, shouldVerifyFIPS)
    				fipstls.Abandon()
    			}
    		}
    	}
    }
    
    const (
    	boringCertCA = iota
    	boringCertLeaf
    	boringCertFIPSOK = 0x80
    )
    
    func boringRSAKey(t *testing.T, size int) *rsa.PrivateKey {
    	k, err := rsa.GenerateKey(rand.Reader, size)
    	if err != nil {
    		t.Fatal(err)
    	}
    	return k
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. src/crypto/tls/quic.go

    	"errors"
    	"fmt"
    )
    
    // QUICEncryptionLevel represents a QUIC encryption level used to transmit
    // handshake messages.
    type QUICEncryptionLevel int
    
    const (
    	QUICEncryptionLevelInitial = QUICEncryptionLevel(iota)
    	QUICEncryptionLevelEarly
    	QUICEncryptionLevelHandshake
    	QUICEncryptionLevelApplication
    )
    
    func (l QUICEncryptionLevel) String() string {
    	switch l {
    	case QUICEncryptionLevelInitial:
    		return "Initial"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  10. src/internal/trace/internal/oldtrace/parser.go

    type Frame struct {
    	PC uint64
    	// string ID of the function name
    	Fn uint64
    	// string ID of the file name
    	File uint64
    	Line int
    }
    
    const (
    	// Special P identifiers:
    	FakeP    = 1000000 + iota
    	TimerP   // contains timer unblocks
    	NetpollP // contains network unblocks
    	SyscallP // contains returns from syscalls
    	GCP      // contains GC state
    	ProfileP // contains recording of CPU profile samples
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
Back to top