Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 481 for iota (0.04 sec)

  1. 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)
  2. 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)
  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/runtime/traceallocfree.go

    // Runtime -> tracer API for memory events.
    
    package runtime
    
    import (
    	"internal/abi"
    	"runtime/internal/sys"
    )
    
    // Batch type values for the alloc/free experiment.
    const (
    	traceAllocFreeTypesBatch = iota // Contains types. [{id, address, size, ptrspan, name length, name string} ...]
    	traceAllocFreeInfoBatch         // Contains info for interpreting events. [min heap addr, page size, min heap align, min stack align]
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:32:51 UTC 2024
    - 5.9K 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/vendor/rsc.io/markdown/entity.go

    	"&InvisibleComma;":                  "\u2063",
    	"&InvisibleTimes;":                  "\u2062",
    	"&Iogon;":                           "\u012e",
    	"&Iopf;":                            "\U0001d540",
    	"&Iota;":                            "\u0399",
    	"&Iscr;":                            "\u2110",
    	"&Itilde;":                          "\u0128",
    	"&Iukcy;":                           "\u0406",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  7. 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)
  8. src/runtime/mgc.go

    // gcBlackenEnabled is 1 if mutator assists and background mark
    // workers are allowed to blacken objects. This must only be set when
    // gcphase == _GCmark.
    var gcBlackenEnabled uint32
    
    const (
    	_GCoff             = iota // GC not running; sweeping in background, write barrier disabled
    	_GCmark                   // GC marking roots and workbufs: allocate black, write barrier ENABLED
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  9. src/net/interface.go

    	HardwareAddr HardwareAddr // IEEE MAC-48, EUI-48 and EUI-64 form
    	Flags        Flags        // e.g., FlagUp, FlagLoopback, FlagMulticast
    }
    
    type Flags uint
    
    const (
    	FlagUp           Flags = 1 << iota // interface is administratively up
    	FlagBroadcast                      // interface supports broadcast access capability
    	FlagLoopback                       // interface is a loopback interface
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. 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)
Back to top