Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 281 for original (0.26 sec)

  1. src/debug/elf/elf.go

    	DF_1_NOKSYMS DynFlag1 = 0x00080000
    	// Reserved for internal use by the kernel runtime-linker.
    	DF_1_NOHDR DynFlag1 = 0x00100000
    	// Indicates that this object has been edited or has been modified since the
    	// objects original construction by the link-editor.
    	DF_1_EDITED DynFlag1 = 0x00200000
    	// Reserved for internal use by the kernel runtime-linker.
    	DF_1_NORELOC DynFlag1 = 0x00400000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/stmt.go

    			continue L
    		}
    		check.convertUntyped(&v, x.typ)
    		if v.mode == invalid {
    			continue L
    		}
    		// Order matters: By comparing v against x, error positions are at the case values.
    		res := v // keep original v unchanged
    		check.comparison(&res, x, syntax.Eql, true)
    		if res.mode == invalid {
    			continue L
    		}
    		if v.mode != constant_ {
    			continue L // we're done
    		}
    		// look for duplicate values
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  3. doc/next/6-stdlib/99-minor/net/http/46443.md

    [Cookie] now preserves double quotes surrounding a cookie value.
    The new [Cookie.Quoted] field indicates whether the [Cookie.Value]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 14:33:17 UTC 2024
    - 155 bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    	FormatTag         func(int64, string) string // Function to format a sample tag value into a string
    	ObjNames          bool                       // Always preserve obj filename
    	OrigFnNames       bool                       // Preserve original (eg mangled) function names
    
    	CallTree     bool // Build a tree instead of a graph
    	DropNegative bool // Drop nodes with overall negative values
    
    	KeptNodes NodeSet // If non-nil, only use nodes in this set
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  5. src/fmt/print.go

    // itself contain the verb.) The result has a leading percent sign followed by any
    // flags, the width, and the precision. Missing flags, width, and precision are
    // omitted. This function allows a [Formatter] to reconstruct the original
    // directive triggering the call to Format.
    func FormatString(state State, verb rune) string {
    	var tmp [16]byte // Use a local buffer.
    	b := append(tmp[:0], '%')
    	for _, c := range " +-#0" { // All known flags
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:22:43 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  6. src/runtime/mgcsweep.go

    			atomic.Xadd64(&stats.largeFree, int64(size))
    			memstats.heapStats.release()
    
    			// Count the free in the inconsistent, internal stats.
    			gcController.totalFree.Add(int64(size))
    
    			// NOTE(rsc,dvyukov): The original implementation of efence
    			// in CL 22060046 used sysFree instead of sysFault, so that
    			// the operating system would eventually give the memory
    			// back to us again, so that an efence program could run
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/type.go

    // license that can be found in the LICENSE file.
    
    package syntax
    
    import "go/constant"
    
    // A Type represents a type of Go.
    // All types implement the Type interface.
    // (This type originally lived in types2. We moved it here
    // so we could depend on it from other packages without
    // introducing an import cycle.)
    type Type interface {
    	// Underlying returns the underlying type of a type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. doc/go_spec.html

    </p>
    <pre>
    type Point3D struct { x, y, z float64 }
    type Line struct { p, q Point3D }
    </pre>
    
    <p>
    one may write
    </p>
    
    <pre>
    origin := Point3D{}                            // zero value for Point3D
    line := Line{origin, Point3D{y: -4, z: 12.3}}  // zero value for line.q.x
    </pre>
    
    <p>
    For array and slice literals the following rules apply:
    </p>
    <ul>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  9. src/cmd/internal/obj/x86/asm6.go

    				// than the old cmd/internal/obj/i386 code did,
    				// which breaks our "same bits out" checks.
    				// In particular, CMPB AX, $0 encodes as 80 f8 00
    				// in the original obj/i386, and it would encode
    				// (using a valid, shorter form) as 3c 00 if we enabled
    				// the call to bytereg here.
    				if ctxt.Arch.Family == sys.AMD64 {
    					bytereg(&p.From, &p.Ft)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  10. src/internal/goexperiment/flags.go

    	//
    	// Requires wrappers (to do ABI translation), and reflect (so
    	// reflection calls use registers).
    	RegabiArgs bool
    
    	// HeapMinimum512KiB reduces the minimum heap size to 512 KiB.
    	//
    	// This was originally reduced as part of PacerRedesign, but
    	// has been broken out to its own experiment that is disabled
    	// by default.
    	HeapMinimum512KiB bool
    
    	// CoverageRedesign enables the new compiler-based code coverage
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 16:19:47 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top