Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for mock (0.18 sec)

  1. api/go1.3.txt

    pkg syscall (freebsd-386), const SIGLIBRT = 33
    pkg syscall (freebsd-386), const SIGLIBRT Signal
    pkg syscall (freebsd-386), const SOCK_CLOEXEC = 268435456
    pkg syscall (freebsd-386), const SOCK_CLOEXEC ideal-int
    pkg syscall (freebsd-386), const SOCK_NONBLOCK = 536870912
    pkg syscall (freebsd-386), const SOCK_NONBLOCK ideal-int
    pkg syscall (freebsd-386), const SO_VENDOR = 2147483648
    pkg syscall (freebsd-386), const SO_VENDOR ideal-int
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Jun 02 02:45:00 GMT 2014
    - 117K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/callback.go

    	// callback(x) calls goCallback(x)
    	callbackMutex.Lock()
    	callbackToken++
    	i := callbackToken
    	callbackFuncs[i] = f
    	callbackMutex.Unlock()
    
    	// Pass the address of i because the C function was written to
    	// take a pointer.  We could pass an int if we felt like
    	// rewriting the C code.
    	C.callback(unsafe.Pointer(&i))
    
    	callbackMutex.Lock()
    	delete(callbackFuncs, i)
    	callbackMutex.Unlock()
    }
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri May 12 12:00:02 GMT 2023
    - 111.5K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    of an interface type or of elements of a composite type remains unchanged:
    </p>
    
    <pre>
    // A Mutex is a data type with two methods, Lock and Unlock.
    type Mutex struct         { /* Mutex fields */ }
    func (m *Mutex) Lock()    { /* Lock implementation */ }
    func (m *Mutex) Unlock()  { /* Unlock implementation */ }
    
    // NewMutex has the same composition as Mutex but its method set is empty.
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
Back to top