Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Farina (0.22 sec)

  1. src/arena/arena.go

    //go:linkname runtime_arena_newArena
    func runtime_arena_newArena() unsafe.Pointer
    
    //go:linkname runtime_arena_arena_New
    func runtime_arena_arena_New(arena unsafe.Pointer, typ any) any
    
    // Mark as noescape to avoid escaping the slice header.
    //
    //go:noescape
    //go:linkname runtime_arena_arena_Slice
    func runtime_arena_arena_Slice(arena unsafe.Pointer, slice any, cap int)
    
    //go:linkname runtime_arena_arena_Free
    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)
  2. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VALID = 5632
    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VALID ideal-int
    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VARIAN = 32989
    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VARIAN ideal-int
    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VAXELN = 32827
    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_VAXELN ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  3. api/go1.1.txt

    pkg syscall (netbsd-386), const ETHERTYPE_UBNIU = 28673
    pkg syscall (netbsd-386), const ETHERTYPE_UBNMC = 28675
    pkg syscall (netbsd-386), const ETHERTYPE_VALID = 5632
    pkg syscall (netbsd-386), const ETHERTYPE_VARIAN = 32989
    pkg syscall (netbsd-386), const ETHERTYPE_VAXELN = 32827
    pkg syscall (netbsd-386), const ETHERTYPE_VEECO = 32871
    pkg syscall (netbsd-386), const ETHERTYPE_VEXP = 32859
    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)
  4. src/arena/arena_test.go

    // license that can be found in the LICENSE file.
    
    //go:build goexperiment.arenas
    
    package arena_test
    
    import (
    	"arena"
    	"testing"
    )
    
    type T1 struct {
    	n int
    }
    type T2 [1 << 20]byte // 1MiB
    
    func TestSmoke(t *testing.T) {
    	a := arena.NewArena()
    	defer a.Free()
    
    	tt := arena.New[T1](a)
    	tt.n = 1
    
    	ts := arena.MakeSlice[T1](a, 99, 100)
    	if len(ts) != 99 {
    		t.Errorf("Slice() len = %d, want 99", len(ts))
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Oct 12 20:23:36 GMT 2022
    - 742 bytes
    - Viewed (0)
  5. api/go1.2.txt

    pkg syscall (netbsd-386), const ETHERTYPE_UBNIU ideal-int
    pkg syscall (netbsd-386), const ETHERTYPE_UBNMC ideal-int
    pkg syscall (netbsd-386), const ETHERTYPE_VALID ideal-int
    pkg syscall (netbsd-386), const ETHERTYPE_VARIAN ideal-int
    pkg syscall (netbsd-386), const ETHERTYPE_VAXELN ideal-int
    pkg syscall (netbsd-386), const ETHERTYPE_VEECO ideal-int
    pkg syscall (netbsd-386), const ETHERTYPE_VEXP 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)
  6. lib/time/zoneinfo.zip

    Europe/Ljubljana Europe/London Europe/Luxembourg Europe/Madrid Europe/Malta Europe/Mariehamn Europe/Minsk Europe/Monaco Europe/Moscow Europe/Nicosia Europe/Oslo Europe/Paris Europe/Podgorica Europe/Prague Europe/Riga Europe/Rome Europe/Samara Europe/San_Marino Europe/Sarajevo Europe/Saratov Europe/Simferopol Europe/Skopje Europe/Sofia Europe/Stockholm Europe/Tallinn Europe/Tirane Europe/Tiraspol Europe/Ulyanovsk Europe/Uzhgorod Europe/Vaduz Europe/Vatican Europe/Vienna Europe/Vilnius Europe/Volgograd Europe/Warsaw...
    ZIP Archive
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 02 18:20:41 GMT 2024
    - 392.3K bytes
    - Viewed (1)
  7. api/go1.txt

    pkg encoding/binary, func ReadVarint(io.ByteReader) (int64, error)
    pkg encoding/binary, func Size(interface{}) int
    pkg encoding/binary, func Uvarint([]uint8) (uint64, int)
    pkg encoding/binary, func Varint([]uint8) (int64, int)
    pkg encoding/binary, func Write(io.Writer, ByteOrder, interface{}) error
    pkg encoding/binary, type ByteOrder interface { PutUint16, PutUint32, PutUint64, String, Uint16, Uint32, Uint64 }
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  8. doc/go_mem.html

    </p>
    
    <h2 id="model">Memory Model</h2>
    
    <p>
    The following formal definition of Go's memory model closely follows
    the approach presented by Hans-J. Boehm and Sarita V. Adve in
    “<a href="https://www.hpl.hp.com/techreports/2008/HPL-2008-56.pdf">Foundations of the C++ Concurrency Memory Model</a>”,
    published in PLDI 2008.
    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)
Back to top