Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for popular (0.27 sec)

  1. doc/go1.17_spec.html

    the identifier, it serves as an <i>alias</i> for the type.
    </p>
    
    <pre>
    type (
    	nodeList = []*Node  // nodeList and []*Node are identical types
    	Polar    = polar    // Polar and polar denote identical types
    )
    </pre>
    
    
    <h4 id="Type_definitions">Type definitions</h4>
    
    <p>
    A type definition creates a new, distinct type with the same
    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)
  2. doc/go_spec.html

    the identifier, it serves as an <i>alias</i> for the type.
    </p>
    
    <pre>
    type (
    	nodeList = []*Node  // nodeList and []*Node are identical types
    	Polar    = polar    // Polar and polar denote identical types
    )
    </pre>
    
    
    <h4 id="Type_definitions">Type definitions</h4>
    
    <p>
    A type definition creates a new, distinct type with the same
    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)
  3. api/go1.1.txt

    pkg syscall (linux-386), const MAP_LOCKED = 8192
    pkg syscall (linux-386), const MAP_NONBLOCK = 65536
    pkg syscall (linux-386), const MAP_NORESERVE = 16384
    pkg syscall (linux-386), const MAP_POPULATE = 32768
    pkg syscall (linux-386), const MAP_PRIVATE = 2
    pkg syscall (linux-386), const MAP_SHARED = 1
    pkg syscall (linux-386), const MAP_STACK = 131072
    pkg syscall (linux-386), const MAP_TYPE = 15
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  4. api/go1.2.txt

    pkg syscall (linux-arm-cgo), const MAP_LOCKED ideal-int
    pkg syscall (linux-arm-cgo), const MAP_NONBLOCK ideal-int
    pkg syscall (linux-arm-cgo), const MAP_NORESERVE ideal-int
    pkg syscall (linux-arm-cgo), const MAP_POPULATE ideal-int
    pkg syscall (linux-arm-cgo), const MAP_PRIVATE ideal-int
    pkg syscall (linux-arm-cgo), const MAP_SHARED ideal-int
    pkg syscall (linux-arm-cgo), const MAP_TYPE ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
  5. src/archive/tar/common.go

    		h.Mode |= c_ISGID
    	}
    	if fm&fs.ModeSticky != 0 {
    		h.Mode |= c_ISVTX
    	}
    	// If possible, populate additional fields from OS-specific
    	// FileInfo fields.
    	if sys, ok := fi.Sys().(*Header); ok {
    		// This FileInfo came from a Header (not the OS). Use the
    		// original Header to populate all remaining fields.
    		h.Uid = sys.Uid
    		h.Gid = sys.Gid
    		h.Uname = sys.Uname
    		h.Gname = sys.Gname
    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)
  6. api/go1.txt

    pkg syscall (linux-386), const MAP_LOCKED ideal-int
    pkg syscall (linux-386), const MAP_NONBLOCK ideal-int
    pkg syscall (linux-386), const MAP_NORESERVE ideal-int
    pkg syscall (linux-386), const MAP_POPULATE ideal-int
    pkg syscall (linux-386), const MAP_PRIVATE ideal-int
    pkg syscall (linux-386), const MAP_SHARED ideal-int
    pkg syscall (linux-386), const MAP_STACK ideal-int
    pkg syscall (linux-386), const MAP_TYPE ideal-int
    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)
  7. src/archive/tar/writer_test.go

    			t.Errorf("splitUSTARPath(%q):\ngot  (%q, %q, %v)\nwant (%q, %q, %v)",
    				v.input, prefix, suffix, ok, v.prefix, v.suffix, v.ok)
    		}
    	}
    }
    
    // TestIssue12594 tests that the Writer does not attempt to populate the prefix
    // field when encoding a header in the GNU format. The prefix field is valid
    // in USTAR and PAX, but not GNU.
    func TestIssue12594(t *testing.T) {
    	names := []string{
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Feb 27 16:39:23 GMT 2024
    - 38.7K bytes
    - Viewed (0)
Back to top