Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for dev (0.12 sec)

  1. doc/go_spec.html

    <p>
    This is the reference manual for the Go programming language.
    The pre-Go1.18 version, without generics, can be found
    <a href="/doc/go1.17_spec.html">here</a>.
    For more information and other documents, see <a href="/">go.dev</a>.
    </p>
    
    <p>
    Go is a general-purpose language designed with systems programming
    in mind. It is strongly typed and garbage-collected and has explicit
    support for concurrent programming.  Programs are constructed from
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    	ir.Syms.SigPanic = typecheck.LookupRuntimeFunc("sigpanic")
    }
    
    // AbiForBodylessFuncStackMap returns the ABI for a bodyless function's stack map.
    // This is not necessarily the ABI used to call it.
    // Currently (1.17 dev) such a stack map is always ABI0;
    // any ABI wrapper that is present is nosplit, hence a precise
    // stack map is not needed there (the parameters survive only long
    // enough to call the wrapped assembly function).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    type DmIoctl struct {
    	Version      [3]uint32
    	Data_size    uint32
    	Data_start   uint32
    	Target_count uint32
    	Open_count   int32
    	Flags        uint32
    	Event_nr     uint32
    	_            uint32
    	Dev          uint64
    	Name         [128]byte
    	Uuid         [129]byte
    	Data         [7]byte
    }
    
    type DmTargetSpec struct {
    	Sector_start uint64
    	Length       uint64
    	Status       int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
Back to top