Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for icons (0.15 sec)

  1. misc/chrome/gophertool/manifest.json

      "manifest_version": 2,
      "description": "Go Hacking utility",
      "background": {
        "page": "background.html"
      },
      "browser_action": {
        "default_icon": "gopher.png",
        "default_popup": "popup.html"
      },
      "omnibox": { "keyword": "golang" },
      "icons": {
        "16": "gopher.png"
      },
      "permissions": [
         "tabs"
      ]
    Json
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Jul 05 20:52:13 GMT 2012
    - 378 bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    		fmt.Fprintf(&b, "__typeof__(%s) *__cgo__%d;\n", n.C, i)
    		if n.Kind == "iconst" {
    			fmt.Fprintf(&b, "enum { __cgo_enum__%d = %s };\n", i, n.C)
    		}
    	}
    
    	// We create a data block initialized with the values,
    	// so we can read them out of the object file.
    	fmt.Fprintf(&b, "long long __cgodebug_ints[] = {\n")
    	for _, n := range names {
    		if n.Kind == "iconst" {
    			fmt.Fprintf(&b, "\t%s,\n", n.C)
    		} else {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
Back to top