Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for sact (0.29 sec)

  1. doc/asm.html

    on the <code>TEXT</code> instruction.
    The pointer information can also be omitted if the
    function contains no call instructions.
    Otherwise, the local stack frame must not contain pointers,
    and the assembly must confirm this fact by executing the
    pseudo-instruction <code>NO_LOCAL_POINTERS</code>.
    Because stack resizing is implemented by moving the stack,
    the stack pointer may change during any function call:
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  2. src/arena/arena.go

    error message, but this package reserves the right to not force a fault on
    freed memory. That means a valid implementation of this package is to just
    allocate all memory the way the runtime normally would, and in fact, it
    reserves the right to occasionally do so for some Go values.
    */
    package arena
    
    import (
    	"internal/reflectlite"
    	"unsafe"
    )
    
    // Arena represents a collection of Go values allocated and freed together.
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Oct 12 20:23:36 GMT 2022
    - 4.3K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    embedded field in a struct <code>x</code> is called <i>promoted</i> if
    <code>x.f</code> is a legal <a href="#Selectors">selector</a> that denotes
    that field or method <code>f</code>.
    </p>
    
    <p>
    Promoted fields act like ordinary fields
    of a struct except that they cannot be used as field names in
    <a href="#Composite_literals">composite literals</a> of the struct.
    </p>
    
    <p>
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  4. api/go1.1.txt

    pkg syscall (openbsd-386), const TCP_MAXWIN = 65535
    pkg syscall (openbsd-386), const TCP_MAX_SACK = 3
    pkg syscall (openbsd-386), const TCP_MAX_WINSHIFT = 14
    pkg syscall (openbsd-386), const TCP_MD5SIG = 4
    pkg syscall (openbsd-386), const TCP_MSS = 512
    pkg syscall (openbsd-386), const TCP_NSTATES = 11
    pkg syscall (openbsd-386), const TCP_SACK_ENABLE = 8
    pkg syscall (openbsd-386), const TCSAFLUSH = 2
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  5. doc/go_spec.html

    If either of these two types contains type parameters, type inference looks for the
    type arguments to substitute the type parameters with such that the assignability
    relationship is satisfied.
    Similarly, type inference uses the fact that a type argument must
    <a href="#Satisfying_a_type_constraint">satisfy</a> the constraint of its respective
    type parameter.
    </p>
    
    <p>
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  6. api/go1.2.txt

    pkg syscall (openbsd-386), const TCP_MAX_SACK ideal-int
    pkg syscall (openbsd-386), const TCP_MAX_WINSHIFT ideal-int
    pkg syscall (openbsd-386), const TCP_MD5SIG ideal-int
    pkg syscall (openbsd-386), const TCP_MSS ideal-int
    pkg syscall (openbsd-386), const TCP_NSTATES ideal-int
    pkg syscall (openbsd-386), const TCP_SACK_ENABLE ideal-int
    pkg syscall (openbsd-386), const TCSAFLUSH ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
  7. doc/go_mem.html

    	go func() { a = "hello" }()
    	print(a)
    }
    </pre>
    
    <p>
    the assignment to <code>a</code> is not followed by
    any synchronization event, so it is not guaranteed to be
    observed by any other goroutine.
    In fact, an aggressive compiler might delete the entire <code>go</code> statement.
    </p>
    
    <p>
    If the effects of a goroutine must be observed by another goroutine,
    use a synchronization mechanism such as a lock or channel
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Mar 04 15:54:42 GMT 2024
    - 26.6K bytes
    - Viewed (0)
  8. src/archive/tar/reader.go

    func discard(r io.Reader, n int64) error {
    	// If possible, Seek to the last byte before the end of the data section.
    	// Do this because Seek is often lazy about reporting errors; this will mask
    	// the fact that the stream may be truncated. We can rely on the
    	// io.CopyN done shortly afterwards to trigger any IO errors.
    	var seekSkipped int64 // Number of bytes skipped via Seek
    	if sr, ok := r.(io.Seeker); ok && n > 1 {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Mar 08 01:59:14 GMT 2024
    - 26.8K bytes
    - Viewed (0)
Back to top