Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 228 for iota (0.04 sec)

  1. src/cmd/compile/internal/ssa/poset.go

    	bs[idx/uintSize] &^= 1 << (idx % uintSize)
    }
    
    func (bs bitset) Test(idx uint32) bool {
    	return bs[idx/uintSize]&(1<<(idx%uintSize)) != 0
    }
    
    type undoType uint8
    
    const (
    	undoInvalid     undoType = iota
    	undoCheckpoint           // a checkpoint to group undo passes
    	undoSetChl               // change back left child of undo.idx to undo.edge
    	undoSetChr               // change back right child of undo.idx to undo.edge
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 17:23:05 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/printf.go

    	Run:        run,
    	ResultType: reflect.TypeOf((*Result)(nil)),
    	FactTypes:  []analysis.Fact{new(isWrapper)},
    }
    
    // Kind is a kind of fmt function behavior.
    type Kind int
    
    const (
    	KindNone   Kind = iota // not a fmt wrapper function
    	KindPrint              // function behaves like fmt.Print
    	KindPrintf             // function behaves like fmt.Printf
    	KindErrorf             // function behaves like fmt.Errorf
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/block.go

    const (
    	// These values are arranged in what seems to be order of increasing alignment importance.
    	// Currently only a few are relevant.  Implicitly, they are all in a loop.
    	HotNotFlowIn Hotness = 1 << iota // This block is only reached by branches
    	HotInitial                       // In the block order, the first one for a given loop.  Not necessarily topological header.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/lookup.go

    	methods := under(T).(*Interface).typeSet().methods // T must be an interface
    	if len(methods) == 0 {
    		return nil, false
    	}
    
    	const (
    		ok = iota
    		notFound
    		wrongName
    		unexported
    		wrongSig
    		ambigSel
    		ptrRecv
    		field
    	)
    
    	state := ok
    	var m *Func // method on T we're trying to implement
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/mod/sumdb/client.go

    		if err := c.ops.WriteConfig(c.name+"/latest", msg, latestMsg); err != ErrWriteConflict {
    			// Success or a non-write-conflict error.
    			return err
    		}
    	}
    }
    
    const (
    	msgPast = 1 + iota
    	msgNow
    	msgFuture
    )
    
    // mergeLatestMem is like mergeLatest but is only concerned with
    // updating the in-memory copy of the latest tree head (c.latest)
    // not the configuration file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:50:49 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  6. src/go/types/lookup.go

    	methods := under(T).(*Interface).typeSet().methods // T must be an interface
    	if len(methods) == 0 {
    		return nil, false
    	}
    
    	const (
    		ok = iota
    		notFound
    		wrongName
    		unexported
    		wrongSig
    		ambigSel
    		ptrRecv
    		field
    	)
    
    	state := ok
    	var m *Func // method on T we're trying to implement
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  7. src/go/printer/printer_test.go

    const (
    	dataDir  = "testdata"
    	tabwidth = 8
    )
    
    var update = flag.Bool("update", false, "update golden files")
    
    var fset = token.NewFileSet()
    
    type checkMode uint
    
    const (
    	export checkMode = 1 << iota
    	rawFormat
    	normNumber
    	idempotent
    	allowTypeParams
    )
    
    // format parses src, prints the corresponding AST, verifies the resulting
    // src is syntactically correct, and returns the resulting src or an error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  8. src/text/template/funcs.go

    	errBadComparison     = errors.New("incompatible types for comparison")
    	errNoComparison      = errors.New("missing argument for comparison")
    )
    
    type kind int
    
    const (
    	invalidKind kind = iota
    	boolKind
    	complexKind
    	intKind
    	floatKind
    	stringKind
    	uintKind
    )
    
    func basicKind(v reflect.Value) (kind, error) {
    	switch v.Kind() {
    	case reflect.Bool:
    		return boolKind, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ir/func.go

    	// Scope identifies the innermost scope to the right of Pos.
    	Scope ScopeID
    }
    
    // A ScopeID represents a lexical scope within a function.
    type ScopeID int32
    
    const (
    	funcDupok      = 1 << iota // duplicate definitions ok
    	funcWrapper                // hide frame from users (elide in tracebacks, don't count as a frame for recover())
    	funcABIWrapper             // is an ABI wrapper (also set flagWrapper)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  10. src/debug/gosym/pclntab.go

    /*
     * Line tables
     */
    
    package gosym
    
    import (
    	"bytes"
    	"encoding/binary"
    	"sort"
    	"sync"
    )
    
    // version of the pclntab
    type version int
    
    const (
    	verUnknown version = iota
    	ver11
    	ver12
    	ver116
    	ver118
    	ver120
    )
    
    // A LineTable is a data structure mapping program counters to line numbers.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 19:43:24 UTC 2024
    - 18.8K bytes
    - Viewed (0)
Back to top