Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 481 for iota (0.05 sec)

  1. src/cmd/internal/goobj/objfile.go

    	ObjFlagStd                      // standard library package
    )
    
    // Sym.Flag
    const (
    	SymFlagDupok = 1 << iota
    	SymFlagLocal
    	SymFlagTypelink
    	SymFlagLeaf
    	SymFlagNoSplit
    	SymFlagReflectMethod
    	SymFlagGoType
    )
    
    // Sym.Flag2
    const (
    	SymFlagUsedInIface = 1 << iota
    	SymFlagItab
    	SymFlagDict
    	SymFlagPkgInit
    	SymFlagLinkname
    	SymFlagABIWrapper
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/config.go

    //
    // Possible build modes are the same as those for the -buildmode flag
    // in cmd/go, and are documented in 'go help buildmode'.
    type BuildMode uint8
    
    const (
    	BuildModeUnset BuildMode = iota
    	BuildModeExe
    	BuildModePIE
    	BuildModeCArchive
    	BuildModeCShared
    	BuildModeShared
    	BuildModePlugin
    )
    
    // Set implements flag.Value to set the build mode based on the argument
    // to the -buildmode flag.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:14:11 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. src/internal/coverage/defs.go

    	Parent        uint32
    }
    
    // CounterMode tracks the "flavor" of the coverage counters being
    // used in a given coverage-instrumented program.
    type CounterMode uint8
    
    const (
    	CtrModeInvalid  CounterMode = iota
    	CtrModeSet                  // "set" mode
    	CtrModeCount                // "count" mode
    	CtrModeAtomic               // "atomic" mode
    	CtrModeRegOnly              // registration-only pseudo-mode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 12:51:16 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.go

    type Arg interface {
    	isArg()
    	String() string
    }
    
    // A Reg is a single register.
    // The zero value denotes W0, not the absence of a register.
    type Reg uint16
    
    const (
    	W0 Reg = iota
    	W1
    	W2
    	W3
    	W4
    	W5
    	W6
    	W7
    	W8
    	W9
    	W10
    	W11
    	W12
    	W13
    	W14
    	W15
    	W16
    	W17
    	W18
    	W19
    	W20
    	W21
    	W22
    	W23
    	W24
    	W25
    	W26
    	W27
    	W28
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/search.go

    	"cmd/go/internal/search"
    	"cmd/go/internal/str"
    	"cmd/go/internal/trace"
    	"cmd/internal/pkgpattern"
    
    	"golang.org/x/mod/module"
    )
    
    type stdFilter int8
    
    const (
    	omitStd = stdFilter(iota)
    	includeStd
    )
    
    // matchPackages is like m.MatchPackages, but uses a local variable (rather than
    // a global) for tags, can include or exclude packages in the standard library,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:15 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  6. src/go/printer/testdata/comments.input

    const c0 = 0  // zero
    const (
    	c1 = iota  // c1
    	c2  // c2
    )
    
    // Alignment of comments in declarations>
    const (
    	_ T = iota  // comment
    	_  // comment
    	_  // comment
    	_ = iota+10
    	_  // comments
    
    	_ = 10  // comment
    	_ T = 20  // comment
    )
    
    const (
    	_____ = iota // foo
    	_ // bar
    	_  = 0    // bal
    	_ // bat
    )
    
    const (
    	_ T = iota // comment
    	_ // comment
    	_ // comment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 23:11:14 UTC 2022
    - 11.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/validate.go

    func Validate(analyzers []*Analyzer) error {
    	// Map each fact type to its sole generating analyzer.
    	factTypes := make(map[reflect.Type]*Analyzer)
    
    	// Traverse the Requires graph, depth first.
    	const (
    		white = iota
    		grey
    		black
    		finished
    	)
    	color := make(map[*Analyzer]uint8)
    	var visit func(a *Analyzer) error
    	visit = func(a *Analyzer) error {
    		if a == nil {
    			return fmt.Errorf("nil *Analyzer")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:52:54 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. src/runtime/metrics/value.go

    	"math"
    	"unsafe"
    )
    
    // ValueKind is a tag for a metric [Value] which indicates its type.
    type ValueKind int
    
    const (
    	// KindBad indicates that the Value has no type and should not be used.
    	KindBad ValueKind = iota
    
    	// KindUint64 indicates that the type of the Value is a uint64.
    	KindUint64
    
    	// KindFloat64 indicates that the type of the Value is a float64.
    	KindFloat64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 16:59:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. src/crypto/x509/internal/macos/security.go

    type SecTrustSettingsResult int32
    
    const (
    	SecTrustSettingsResultInvalid SecTrustSettingsResult = iota
    	SecTrustSettingsResultTrustRoot
    	SecTrustSettingsResultTrustAsRoot
    	SecTrustSettingsResultDeny
    	SecTrustSettingsResultUnspecified
    )
    
    type SecTrustResultType int32
    
    const (
    	SecTrustResultInvalid SecTrustResultType = iota
    	SecTrustResultProceed
    	SecTrustResultConfirm // deprecated
    	SecTrustResultDeny
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 21 20:05:17 UTC 2022
    - 9.1K bytes
    - Viewed (0)
  10. src/crypto/x509/boring_test.go

    	"crypto/elliptic"
    	"crypto/internal/boring/fipstls"
    	"crypto/rand"
    	"crypto/rsa"
    	"crypto/x509/pkix"
    	"fmt"
    	"math/big"
    	"strings"
    	"testing"
    	"time"
    )
    
    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: Thu Nov 17 17:38:47 UTC 2022
    - 3.7K bytes
    - Viewed (0)
Back to top