Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 101 for iota (0.06 sec)

  1. src/math/big/float.go

    const (
    	zero form = iota
    	finite
    	inf
    )
    
    // RoundingMode determines how a [Float] value is rounded to the
    // desired precision. Rounding may change the [Float] value; the
    // rounding error is described by the [Float]'s [Accuracy].
    type RoundingMode byte
    
    // These constants define supported rounding modes.
    const (
    	ToNearestEven RoundingMode = iota // == IEEE 754-2008 roundTiesToEven
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/action.go

    		return ""
    	}
    	return string(js)
    }
    
    // BuildMode specifies the build mode:
    // are we just building things or also installing the results?
    type BuildMode int
    
    const (
    	ModeBuild BuildMode = iota
    	ModeInstall
    	ModeBuggyInstall
    
    	ModeVetOnly = 1 << 8
    )
    
    // NewBuilder returns a new Builder ready for use.
    //
    // If workDir is the empty string, NewBuilder creates a WorkDir if needed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/macho.go

    var machohdr MachoHdr
    
    var load []MachoLoad
    
    var machoPlatform MachoPlatform
    
    var seg [16]MachoSeg
    
    var nseg int
    
    var ndebug int
    
    var nsect int
    
    const (
    	SymKindLocal = 0 + iota
    	SymKindExtdef
    	SymKindUndef
    	NumSymKind
    )
    
    var nkind [NumSymKind]int
    
    var sortsym []loader.Sym
    
    var nsortsym int
    
    // Amount of space left for adding load commands
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  4. src/net/url/url.go

    		return c - '0'
    	case 'a' <= c && c <= 'f':
    		return c - 'a' + 10
    	case 'A' <= c && c <= 'F':
    		return c - 'A' + 10
    	}
    	return 0
    }
    
    type encoding int
    
    const (
    	encodePath encoding = 1 + iota
    	encodePathSegment
    	encodeHost
    	encodeZone
    	encodeUserPassword
    	encodeQueryComponent
    	encodeFragment
    )
    
    type EscapeError string
    
    func (e EscapeError) Error() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  5. src/go/types/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)
  6. src/runtime/netpoll.go

    // mostly duplicating state that is manipulated under lock in pollDesc.
    // The one exception is the pollEventErr bit, which is maintained only
    // in the pollInfo.
    type pollInfo uint32
    
    const (
    	pollClosing = 1 << iota
    	pollEventErr
    	pollExpiredReadDeadline
    	pollExpiredWriteDeadline
    	pollFDSeq // 20 bit field, low 20 bits of fdseq field
    )
    
    const (
    	pollFDSeqBits = 20                   // number of bits in pollFDSeq
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  7. src/flag/flag.go

    // ErrorHandling defines how [FlagSet.Parse] behaves if the parse fails.
    type ErrorHandling int
    
    // These constants cause [FlagSet.Parse] to behave as described if the parse fails.
    const (
    	ContinueOnError ErrorHandling = iota // Return a descriptive error.
    	ExitOnError                          // Call os.Exit(2) or for -h/-help Exit(0).
    	PanicOnError                         // Call panic with a descriptive error.
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    		}
    	}
    	return score
    }
    
    // NodeOrder sets the ordering for a Sort operation
    type NodeOrder int
    
    // Sorting options for node sort.
    const (
    	FlatNameOrder NodeOrder = iota
    	FlatCumNameOrder
    	CumNameOrder
    	NameOrder
    	FileOrder
    	AddressOrder
    	EntropyOrder
    )
    
    // Sort returns a slice of the edges in the map, in a consistent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  9. src/runtime/panic.go

    // amount of detail printed to stderr. Higher values include more detail.
    type throwType uint32
    
    const (
    	// throwTypeNone means that we are not throwing.
    	throwTypeNone throwType = iota
    
    	// throwTypeUser is a throw due to a problem with the application.
    	//
    	// These throws do not include runtime frames, system goroutines, or
    	// frame metadata.
    	throwTypeUser
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  10. src/testing/fuzz.go

    }
    
    // fuzzContext holds fields common to all fuzz tests.
    type fuzzContext struct {
    	deps testDeps
    	mode fuzzMode
    }
    
    type fuzzMode uint8
    
    const (
    	seedCorpusOnly fuzzMode = iota
    	fuzzCoordinator
    	fuzzWorker
    )
    
    // runFuzzTests runs the fuzz tests matching the pattern for -run. This will
    // only run the (*F).Fuzz function for each seed corpus without using the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
Back to top