Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for spotify (0.33 sec)

  1. src/cmd/cgo/godefs.go

    	fmt.Fprintf(&buf, "// %s %s\n", filepath.Base(args[0]), strings.Join(args[1:], " "))
    	fmt.Fprintf(&buf, "\n")
    
    	override := make(map[string]string)
    
    	// Allow source file to specify override mappings.
    	// For example, the socket data structures refer
    	// to in_addr and in_addr6 structs but we want to be
    	// able to treat them as byte arrays, so the godefs
    	// inputs in package syscall say
    	//
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Sep 08 14:33:35 GMT 2022
    - 4.5K bytes
    - Viewed (0)
  2. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const SYS_KLDUNLOADF = 444 #53466
    pkg syscall (freebsd-riscv64), const SYS_KLDUNLOADF ideal-int #53466
    pkg syscall (freebsd-riscv64), const SYS_KMQ_NOTIFY = 461 #53466
    pkg syscall (freebsd-riscv64), const SYS_KMQ_NOTIFY ideal-int #53466
    pkg syscall (freebsd-riscv64), const SYS_KMQ_OPEN = 457 #53466
    pkg syscall (freebsd-riscv64), const SYS_KMQ_OPEN ideal-int #53466
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    MethodSpec         = MethodName Signature .
    MethodName         = identifier .
    InterfaceTypeName  = TypeName .
    </pre>
    
    <p>
    An interface type may specify methods <i>explicitly</i> through method specifications,
    or it may <i>embed</i> methods of other interfaces through interface type names.
    </p>
    
    <pre>
    // A simple File interface.
    interface {
    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)
  4. src/cmd/cgo/doc.go

    "//go:build cgo".  Therefore, if cgo is disabled, files that import
    "C" will not be built by the go tool. (For more about build constraints
    see https://golang.org/pkg/go/build/#hdr-Build_Constraints).
    
    When cross-compiling, you must specify a C cross-compiler for cgo to
    use. You can do this by setting the generic CC_FOR_TARGET or the
    more specific CC_FOR_${GOOS}_${GOARCH} (for example, CC_FOR_linux_arm)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
  5. misc/ios/README

    which will output something similar to
    
    	export GOIOS_DEV_ID="iPhone Developer: ******@****.*** (XXXXXXXX)"
    	export GOIOS_APP_ID=YYYYYYYY.some.bundle.id
    	export GOIOS_TEAM_ID=ZZZZZZZZ
    
    If you have multiple devices connected, specify the device UDID with the GOIOS_DEVICE_ID
    variable. Use `idevice_id -l` to list all available UDIDs. Then, setting GOARCH to arm64
    will select the device:
    
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Dec 29 21:49:26 GMT 2020
    - 2.7K bytes
    - Viewed (0)
  6. src/archive/tar/common.go

    	// If the Format is unspecified, then Writer.WriteHeader rounds ModTime
    	// to the nearest second and ignores the AccessTime and ChangeTime fields.
    	//
    	// To use AccessTime or ChangeTime, specify the Format as PAX or GNU.
    	// To use sub-second resolution, specify the Format as PAX.
    	ModTime    time.Time // Modification time
    	AccessTime time.Time // Access time (requires either PAX or GNU support)
    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)
  7. api/go1.txt

    pkg syscall (windows-386), const FILE_NOTIFY_CHANGE_ATTRIBUTES ideal-int
    pkg syscall (windows-386), const FILE_NOTIFY_CHANGE_CREATION ideal-int
    pkg syscall (windows-386), const FILE_NOTIFY_CHANGE_DIR_NAME ideal-int
    pkg syscall (windows-386), const FILE_NOTIFY_CHANGE_FILE_NAME ideal-int
    pkg syscall (windows-386), const FILE_NOTIFY_CHANGE_LAST_ACCESS 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)
  8. src/cmd/cgo/gcc.go

    	gp := make([]*ast.Field, len(dtype.ParamType))
    	for i, f := range dtype.ParamType {
    		// gcc's DWARF generator outputs a single DotDotDotType parameter for
    		// function pointers that specify no parameters (e.g. void
    		// (*__cgo_0)()).  Treat this special case as void. This case is
    		// invalid according to ISO C anyway (i.e. void (*__cgo_1)(...) is not
    		// legal).
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  9. api/go1.14.txt

    pkg syscall (freebsd-arm64), const SYS_KLDUNLOADF = 444
    pkg syscall (freebsd-arm64), const SYS_KLDUNLOADF ideal-int
    pkg syscall (freebsd-arm64), const SYS_KMQ_NOTIFY = 461
    pkg syscall (freebsd-arm64), const SYS_KMQ_NOTIFY ideal-int
    pkg syscall (freebsd-arm64), const SYS_KMQ_OPEN = 457
    pkg syscall (freebsd-arm64), const SYS_KMQ_OPEN ideal-int
    pkg syscall (freebsd-arm64), const SYS_KMQ_SETATTR = 458
    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. src/builtin/builtin.go

    // the type:
    //
    //	Slice: The size specifies the length. The capacity of the slice is
    //	equal to its length. A second integer argument may be provided to
    //	specify a different capacity; it must be no smaller than the
    //	length. For example, make([]int, 0, 10) allocates an underlying array
    //	of size 10 and returns a slice of length 0 and capacity 10 that is
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 12.7K bytes
    - Viewed (0)
Back to top