Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for tags (0.23 sec)

  1. doc/go_spec.html

    	<code>*T</code>.
    	</li>
    </ul>
    
    <p>
    A field declaration may be followed by an optional string literal <i>tag</i>,
    which becomes an attribute for all the fields in the corresponding
    field declaration. An empty tag string is equivalent to an absent tag.
    The tags are made visible through a <a href="/pkg/reflect/#StructTag">reflection interface</a>
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  2. misc/chrome/gophertool/popup.js

    function openURL(url) {
      chrome.tabs.create({ "url": url })
    }
    
    function addLinks() {
      var links = document.getElementsByTagName("a");
      for (var i = 0; i < links.length; i++) {
        var url = links[i].getAttribute("url");
        if (url)
          links[i].addEventListener("click", function () {
            openURL(this.getAttribute("url"));
          });
      }
    }
    
    window.addEventListener("load", function () {
      addLinks();
    JavaScript
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Sun Oct 21 17:05:21 GMT 2012
    - 1020 bytes
    - Viewed (0)
  3. src/cmd/api/main_test.go

    	// for more detail.
    	tags = append(tags, context.GOOS, context.GOARCH)
    	sort.Strings(tags)
    
    	for _, tag := range tags {
    		if ctags[tag] {
    			key += "," + tag
    			ctags[tag] = false
    		}
    	}
    	return key
    }
    
    type listImports struct {
    	stdPackages []string                     // names, omitting "unsafe", internal, and vendored packages
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Apr 09 20:48:51 GMT 2024
    - 31.4K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    	<code>*T</code>.
    	</li>
    </ul>
    
    <p>
    A field declaration may be followed by an optional string literal <i>tag</i>,
    which becomes an attribute for all the fields in the corresponding
    field declaration. An empty tag string is equivalent to an absent tag.
    The tags are made visible through a <a href="/pkg/reflect/#StructTag">reflection interface</a>
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  5. src/cmd/cgo/gcc.go

    		// Have to give it a name to simulate C "struct foo" references.
    		tag := dt.StructName
    		if dt.ByteSize < 0 && tag == "" { // opaque unnamed struct - should not be possible
    			break
    		}
    		if tag == "" {
    			tag = anonymousStructTag[dt]
    			if tag == "" {
    				tag = "__" + strconv.Itoa(tagGen)
    				tagGen++
    				anonymousStructTag[dt] = tag
    			}
    		} else if t.C.Empty() {
    			t.C.Set(dt.Kind + " " + tag)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  6. misc/chrome/gophertool/background.js

    chrome.omnibox.onInputEntered.addListener(function(t) {
      var url = urlForInput(t);
      if (url) {
        chrome.tabs.query({ "active": true, "currentWindow": true }, function(tab) {
          if (!tab) return;
          chrome.tabs.update(tab.id, { "url": url, "selected": true });
        });
      }
    JavaScript
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Nov 18 18:14:37 GMT 2019
    - 286 bytes
    - Viewed (0)
  7. api/go1.txt

    pkg debug/dwarf, const TagInlinedSubroutine Tag
    pkg debug/dwarf, const TagInterfaceType Tag
    pkg debug/dwarf, const TagLabel Tag
    pkg debug/dwarf, const TagLexDwarfBlock Tag
    pkg debug/dwarf, const TagMember Tag
    pkg debug/dwarf, const TagModule Tag
    pkg debug/dwarf, const TagMutableType Tag
    pkg debug/dwarf, const TagNamelist Tag
    pkg debug/dwarf, const TagNamelistItem Tag
    pkg debug/dwarf, const TagNamespace Tag
    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. src/archive/tar/common.go

    var sysStat func(fi fs.FileInfo, h *Header, doNameLookups bool) error
    
    const (
    	// Mode constants from the USTAR spec:
    	// See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/pax.html#tag_20_92_13_06
    	c_ISUID = 04000 // Set uid
    	c_ISGID = 02000 // Set gid
    	c_ISVTX = 01000 // Save text (sticky bit)
    
    	// Common Unix mode constants; these are not defined in any common tar standard.
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Mar 15 16:01:50 GMT 2024
    - 24.7K bytes
    - Viewed (2)
  9. api/go1.14.txt

    pkg debug/dwarf, const TagAtomicType Tag
    pkg debug/dwarf, const TagCallSite = 72
    pkg debug/dwarf, const TagCallSite Tag
    pkg debug/dwarf, const TagCallSiteParameter = 73
    pkg debug/dwarf, const TagCallSiteParameter Tag
    pkg debug/dwarf, const TagCoarrayType = 68
    pkg debug/dwarf, const TagCoarrayType Tag
    pkg debug/dwarf, const TagDynamicType = 70
    pkg debug/dwarf, const TagDynamicType Tag
    pkg debug/dwarf, const TagGenericSubrange = 69
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  10. api/go1.16.txt

    pkg go/build/constraint, type SyntaxError struct, Err string
    pkg go/build/constraint, type SyntaxError struct, Offset int
    pkg go/build/constraint, type TagExpr struct
    pkg go/build/constraint, type TagExpr struct, Tag string
    pkg html/template, func ParseFS(fs.FS, ...string) (*Template, error)
    pkg html/template, method (*Template) ParseFS(fs.FS, ...string) (*Template, error)
    pkg io, func NopCloser(Reader) ReadCloser
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
Back to top