Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for semantics (0.27 sec)

  1. src/cmd/cgo/doc.go

    The text above describes "internal" linking, in which cmd/link parses and
    links host object files (ELF, Mach-O, PE, and so on) into the final
    executable itself. Keeping cmd/link simple means we cannot possibly
    implement the full semantics of the host linker, so the kinds of
    objects that can be linked directly into the binary is limited (other
    code can only be used as a dynamic library). On the other hand, when
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
  2. doc/godebug.md

    reported at `runtime._LostContendedRuntimeLock`. Complete stack traces of
    runtime locks can be enabled with the [`runtimecontentionstacks`
    setting](/pkg/runtime#hdr-Environment_Variable). These stack traces have
    non-standard semantics, see setting documentation for details.
    
    Go 1.22 added a new [`crypto/x509.Certificate`](/pkg/crypto/x509/#Certificate)
    field, [`Policies`](/pkg/crypto/x509/#Certificate.Policies), which supports
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Apr 16 17:29:58 GMT 2024
    - 13.5K bytes
    - Viewed (0)
  3. api/go1.txt

    pkg syscall (windows-386), const FILE_BEGIN ideal-int
    pkg syscall (windows-386), const FILE_CURRENT ideal-int
    pkg syscall (windows-386), const FILE_END ideal-int
    pkg syscall (windows-386), const FILE_FLAG_BACKUP_SEMANTICS ideal-int
    pkg syscall (windows-386), const FILE_FLAG_OVERLAPPED ideal-int
    pkg syscall (windows-386), const FILE_LIST_DIRECTORY ideal-int
    pkg syscall (windows-386), const FILE_MAP_COPY ideal-int
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  4. src/archive/zip/reader.go

    func fileEntryLess(x, y string) bool {
    	xdir, xelem, _ := split(x)
    	ydir, yelem, _ := split(y)
    	return xdir < ydir || xdir == ydir && xelem < yelem
    }
    
    // Open opens the named file in the ZIP archive,
    // using the semantics of fs.FS.Open:
    // paths are always slash separated, with no
    // leading / or ../ elements.
    func (r *Reader) Open(name string) (fs.File, error) {
    	r.initFileList()
    
    	if !fs.ValidPath(name) {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 27.7K bytes
    - Viewed (0)
  5. api/go1.1.txt

    pkg syscall (windows-386), const FILE_BEGIN = 0
    pkg syscall (windows-386), const FILE_CURRENT = 1
    pkg syscall (windows-386), const FILE_END = 2
    pkg syscall (windows-386), const FILE_FLAG_BACKUP_SEMANTICS = 33554432
    pkg syscall (windows-386), const FILE_FLAG_OVERLAPPED = 1073741824
    pkg syscall (windows-386), const FILE_LIST_DIRECTORY = 1
    pkg syscall (windows-386), const FILE_MAP_COPY = 1
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  6. doc/go_mem.html

    </p>
    
    <p>
    Don't be clever.
    </p>
    
    <h3 id="overview">Informal Overview</h3>
    
    <p>
    Go approaches its memory model in much the same way as the rest of the language,
    aiming to keep the semantics simple, understandable, and useful.
    This section gives a general overview of the approach and should suffice for most programmers.
    The memory model is specified more formally in the next section.
    </p>
    
    <p>
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Mar 04 15:54:42 GMT 2024
    - 26.6K bytes
    - Viewed (0)
  7. src/archive/tar/format.go

    	// providing the ability to have sub-second resolution for timestamps.
    	//
    	// Some newer formats add their own extensions to PAX by defining their
    	// own keys and assigning certain semantic meaning to the associated values.
    	// For example, sparse file support in PAX is implemented using keys
    	// defined by the GNU manual (e.g., "GNU.sparse.map").
    	//
    	// Reference:
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 11.3K bytes
    - Viewed (0)
  8. doc/go1.22.html

    <p><!-- CL 539016, https://go.dev/issue/63888: cmd/vet: do not report variable capture for loop variables with the new lifetime rules -->
      The behavior of the <code>vet</code> tool has changed to match
      the new semantics (see above) of loop variables in Go 1.22.
      When analyzing a file that requires Go 1.22 or newer
      (due to its go.mod file or a per-file build constraint),
      <code>vet</code>code> no longer reports references to
    HTML
    - Registered: Tue Feb 06 11:13:10 GMT 2024
    - Last Modified: Wed Jan 31 20:51:56 GMT 2024
    - 45.6K bytes
    - Viewed (0)
Back to top