Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 32 of 32 for Cursor (0.07 sec)

  1. src/runtime/syscall_windows_test.go

    	})
    	type Wndclassex struct {
    		Size       uint32
    		Style      uint32
    		WndProc    uintptr
    		ClsExtra   int32
    		WndExtra   int32
    		Instance   syscall.Handle
    		Icon       syscall.Handle
    		Cursor     syscall.Handle
    		Background syscall.Handle
    		MenuName   *uint16
    		ClassName  *uint16
    		IconSm     syscall.Handle
    	}
    	name := syscall.StringToUTF16Ptr("test_window")
    	wc := Wndclassex{
    		WndProc:   cb,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 31 16:31:35 UTC 2023
    - 32.5K bytes
    - Viewed (0)
  2. src/crypto/ecdsa/ecdsa.go

    	// under standard cryptographic assumptions (see [Larsson] for examples).
    	//
    	// [Coron]: https://cs.nyu.edu/~dodis/ps/merkle.pdf
    	// [Larsson]: https://web.archive.org/web/20040719170906/https://www.nada.kth.se/kurser/kth/2D1441/semteo03/lecturenotes/assump.pdf
    
    	// Get 256 bits of entropy from rand.
    	entropy := make([]byte, 32)
    	if _, err := io.ReadFull(rand, entropy); err != nil {
    		return nil, err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
Back to top