Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for uuidgen (0.09 sec)

  1. src/cmd/cgo/internal/test/test.go

    			t.Errorf("%s: got %#v, want %#v", pair.Name, pair.Got, pair.Want)
    		}
    	}
    }
    
    // basic test cases
    
    const EINVAL = C.EINVAL /* test #define */
    
    var KILO = C.KILO
    
    func uuidgen() {
    	var uuid C.cgo_uuid_t
    	C.uuid_generate(&uuid[0])
    }
    
    func Strtol(s string, base int) (int, error) {
    	p := C.CString(s)
    	n, err := C.strtol(p, nil, C.int(base))
    	C.free(unsafe.Pointer(p))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  2. src/runtime/runtime2.go

    	pcache      pageCache
    	raceprocctx uintptr
    
    	deferpool    []*_defer // pool of available defer structs (see panic.go)
    	deferpoolbuf [32]*_defer
    
    	// Cache of goroutine ids, amortizes accesses to runtime·sched.goidgen.
    	goidcache    uint64
    	goidcacheend uint64
    
    	// Queue of runnable goroutines. Accessed without lock.
    	runqhead uint32
    	runqtail uint32
    	runq     [256]guintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
Back to top