Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for Segijn (0.21 sec)

  1. src/cmd/cgo/doc.go

    implicitly pinned for the duration of the call. Go memory reachable from
    these function arguments must be pinned as long as the C code has access
    to it. Whether Go memory is pinned is a dynamic property of that memory
    region; it has nothing to do with the type of the pointer.
    
    Go values created by calling new, by taking the address of a composite
    literal, or by taking the address of a local variable may also have their
    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/go1.17_spec.html

    signature for a function implemented outside Go, such as an assembly routine.
    </p>
    
    <pre>
    func min(x int, y int) int {
    	if x &lt; y {
    		return x
    	}
    	return y
    }
    
    func flushICache(begin, end uintptr)  // implemented externally
    </pre>
    
    <h3 id="Method_declarations">Method declarations</h3>
    
    <p>
    A method is a <a href="#Function_declarations">function</a> with a <i>receiver</i>.
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  3. src/README.vendor

    to preserve the invariant that all packages have distinct paths.
    This is necessary to avoid compiler and linker conflicts. Adding
    a "vendor/" prefix also maintains the invariant that standard
    library packages begin with a dotless path element.
    
    The module requirements of std and cmd do not influence version
    selection in other modules. They are only considered when running
    module commands like 'go get' and 'go mod vendor' from a directory
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Apr 02 02:20:05 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  4. src/archive/tar/common.go

    			return false // Negative values are never okay
    		case cur.Offset > math.MaxInt64-cur.Length:
    			return false // Integer overflow with large length
    		case cur.endOffset() > size:
    			return false // Region extends beyond the actual size
    		case pre.endOffset() > cur.Offset:
    			return false // Regions cannot overlap and must be in order
    		}
    		pre = cur
    	}
    	return true
    }
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Mar 15 16:01:50 GMT 2024
    - 24.7K bytes
    - Viewed (2)
  5. api/go1.16.txt

    pkg syscall (darwin-arm64), const SYS_SETXATTR ideal-int
    pkg syscall (darwin-arm64), const SYS_SHARED_REGION_CHECK_NP = 294
    pkg syscall (darwin-arm64), const SYS_SHARED_REGION_CHECK_NP ideal-int
    pkg syscall (darwin-arm64), const SYS_SHARED_REGION_MAP_AND_SLIDE_NP = 438
    pkg syscall (darwin-arm64), const SYS_SHARED_REGION_MAP_AND_SLIDE_NP ideal-int
    pkg syscall (darwin-arm64), const SYS_SHMAT = 262
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  6. src/cmd/cgo/gcc.go

    // returns an array of substrings of s or an empty list if s contains only white space.
    // Single quotes and double quotes are recognized to prevent splitting within the
    // quoted region, and are removed from the resulting substrings. If a quote in s
    // isn't closed err will be set and r will have the unclosed argument as the
    // last element. The backslash is used for escaping.
    //
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  7. api/go1.txt

    pkg syscall (darwin-386), const SYS_SETWGROUPS ideal-int
    pkg syscall (darwin-386), const SYS_SETXATTR ideal-int
    pkg syscall (darwin-386), const SYS_SHARED_REGION_CHECK_NP ideal-int
    pkg syscall (darwin-386), const SYS_SHARED_REGION_MAP_AND_SLIDE_NP ideal-int
    pkg syscall (darwin-386), const SYS_SHMAT ideal-int
    pkg syscall (darwin-386), const SYS_SHMCTL ideal-int
    pkg syscall (darwin-386), const SYS_SHMDT 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)
  8. src/bytes/bytes.go

    		return false
    	}
    	// Otherwise, all we can do for now is treat spaces as separators.
    	return unicode.IsSpace(r)
    }
    
    // Title treats s as UTF-8-encoded bytes and returns a copy with all Unicode letters that begin
    // words mapped to their title case.
    //
    // Deprecated: The rule Title uses for word boundaries does not handle Unicode
    // punctuation properly. Use golang.org/x/text/cases instead.
    func Title(s []byte) []byte {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Feb 19 19:51:15 GMT 2024
    - 33.8K bytes
    - Viewed (0)
  9. api/go1.1.txt

    pkg syscall (darwin-386), const SYS_SETUID = 23
    pkg syscall (darwin-386), const SYS_SETWGROUPS = 289
    pkg syscall (darwin-386), const SYS_SETXATTR = 236
    pkg syscall (darwin-386), const SYS_SHARED_REGION_CHECK_NP = 294
    pkg syscall (darwin-386), const SYS_SHARED_REGION_MAP_AND_SLIDE_NP = 438
    pkg syscall (darwin-386), const SYS_SHMAT = 262
    pkg syscall (darwin-386), const SYS_SHMCTL = 263
    pkg syscall (darwin-386), const SYS_SHMDT = 264
    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)
  10. doc/go_spec.html

    A function declaration without type parameters may omit the body.
    Such a declaration provides the signature for a function implemented outside Go,
    such as an assembly routine.
    </p>
    
    <pre>
    func flushICache(begin, end uintptr)  // implemented externally
    </pre>
    
    <h3 id="Method_declarations">Method declarations</h3>
    
    <p>
    A method is a <a href="#Function_declarations">function</a> with a <i>receiver</i>.
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 279.3K bytes
    - Viewed (0)
Back to top