Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 228 for iota (0.07 sec)

  1. src/internal/trace/gc.go

    type UtilFlags int
    
    const (
    	// UtilSTW means utilization should account for STW events.
    	// This includes non-GC STW events, which are typically user-requested.
    	UtilSTW UtilFlags = 1 << iota
    	// UtilBackground means utilization should account for
    	// background mark workers.
    	UtilBackground
    	// UtilAssist means utilization should account for mark
    	// assists.
    	UtilAssist
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/unify.go

    type unifyMode uint
    
    const (
    	// If assign is set, we are unifying types involved in an assignment:
    	// they may match inexactly at the top, but element types must match
    	// exactly.
    	assign unifyMode = 1 << iota
    
    	// If exact is set, types unify if they are identical (or can be
    	// made identical with suitable arguments for type parameters).
    	// Otherwise, a named type and a type literal unify if their
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  3. src/go/scanner/scanner_test.go

    package scanner
    
    import (
    	"go/token"
    	"os"
    	"path/filepath"
    	"runtime"
    	"strings"
    	"testing"
    )
    
    var fset = token.NewFileSet()
    
    const /* class */ (
    	special = iota
    	literal
    	operator
    	keyword
    )
    
    func tokenclass(tok token.Token) int {
    	switch {
    	case tok.IsLiteral():
    		return literal
    	case tok.IsOperator():
    		return operator
    	case tok.IsKeyword():
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 15:38:31 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/object.go

    type color uint32
    
    // An object may be painted in one of three colors.
    // Color values other than white or black are considered grey.
    const (
    	white color = iota
    	black
    	grey // must be > white and black
    )
    
    func (c color) String() string {
    	switch c {
    	case white:
    		return "white"
    	case black:
    		return "black"
    	default:
    		return "grey"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  5. src/runtime/profbuf.go

    			notewakeup(&b.wait)
    		}
    		break
    	}
    }
    
    // profBufReadMode specifies whether to block when no data is available to read.
    type profBufReadMode int
    
    const (
    	profBufBlocking profBufReadMode = iota
    	profBufNonBlocking
    )
    
    var overflowTag [1]unsafe.Pointer // always nil
    
    func (b *profBuf) read(mode profBufReadMode) (data []uint64, tags []unsafe.Pointer, eof bool) {
    	if b == nil {
    		return nil, nil, true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  6. src/runtime/sema.go

    	if s.releasetime != 0 {
    		s.releasetime = cputicks()
    	}
    	goready(s.g, traceskip)
    }
    
    type semaProfileFlags int
    
    const (
    	semaBlockProfile semaProfileFlags = 1 << iota
    	semaMutexProfile
    )
    
    // Called from runtime.
    func semacquire(addr *uint32) {
    	semacquire1(addr, false, 0, 0, waitReasonSemacquire)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. src/go/doc/doc.go

    // Mode values control the operation of [New] and [NewFromFiles].
    type Mode int
    
    const (
    	// AllDecls says to extract documentation for all package-level
    	// declarations, not just exported ones.
    	AllDecls Mode = 1 << iota
    
    	// AllMethods says to show all embedded methods, not just the ones of
    	// invisible (unexported) anonymous fields.
    	AllMethods
    
    	// PreserveAST says to leave the AST unmodified. Originally, pieces of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/codehost/git.go

    	refs    map[string]string
    	refsErr error
    
    	localTagsOnce sync.Once
    	localTags     sync.Map // map[string]bool
    }
    
    const (
    	// How much have we fetched into the git repo (in this process)?
    	fetchNone = iota // nothing yet
    	fetchSome        // shallow fetches of individual hashes
    	fetchAll         // "fetch -t origin": get all remote branches and tags
    )
    
    // loadLocalTags loads tag references from the local git cache
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modindex/read.go

    	onceReadImports sync.Once
    	savedImports    []rawImport // saved imports so that they're only read once
    }
    
    // Offsets for fields in the sourceFile.
    const (
    	sourceFileError = 4 * iota
    	sourceFileParseError
    	sourceFileSynopsis
    	sourceFileName
    	sourceFilePkgName
    	sourceFileIgnoreFile
    	sourceFileBinaryOnly
    	sourceFileCgoDirectives
    	sourceFileGoBuildConstraint
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  10. src/debug/dwarf/entry.go

    // offsets to one of the Class*Ptr classes, even though these classes
    // were only defined in DWARF 3.
    type Class int
    
    const (
    	// ClassUnknown represents values of unknown DWARF class.
    	ClassUnknown Class = iota
    
    	// ClassAddress represents values of type uint64 that are
    	// addresses on the target machine.
    	ClassAddress
    
    	// ClassBlock represents values of type []byte whose
    	// interpretation depends on the attribute.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 30.7K bytes
    - Viewed (0)
Back to top