Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for devices (0.56 sec)

  1. src/cmd/cgo/doc.go

    invoking the C compiler to compile the C parts of the package.
    
    The following options are available when running cgo directly:
    
    	-V
    		Print cgo version and exit.
    	-debug-define
    		Debugging option. Print #defines.
    	-debug-gcc
    		Debugging option. Trace C compiler execution and output.
    	-dynimport file
    		Write list of symbols imported by file. Write to
    		-dynout argument or to standard output. Used by go
    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)
  2. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_PPPOE_ATM ideal-int
    pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_PPPOE ideal-int
    pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_SERVICES = 136
    pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_SERVICES ideal-int
    pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_ST = 200
    pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_ST ideal-int
    pkg syscall (netbsd-arm64-cgo), const DLT_JUNIPER_VP = 183
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    unicode_digit  = /* a Unicode code point classified as "Number, decimal digit" */ .
    </pre>
    
    <p>
    In <a href="https://www.unicode.org/versions/Unicode8.0.0/">The Unicode Standard 8.0</a>,
    Section 4.5 "General Category" defines a set of character categories.
    Go treats all characters in any of the Letter categories Lu, Ll, Lt, Lm, or Lo
    as Unicode letters, and those in the Number category Nd as Unicode digits.
    </p>
    
    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. misc/ios/README

    	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:
    
    	GOOS=ios GOARCH=arm64 CGO_ENABLED=1 CC_FOR_TARGET=$(pwd)/../misc/ios/clangwrap.sh ./all.bash
    
    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)
  5. misc/ios/detect.go

    func main() {
    	udids := getLines(exec.Command("idevice_id", "-l"))
    	if len(udids) == 0 {
    		fail("no udid found; is a device connected?")
    	}
    
    	mps := detectMobileProvisionFiles(udids)
    	if len(mps) == 0 {
    		fail("did not find mobile provision matching device udids %q", udids)
    	}
    
    	fmt.Println("# Available provisioning profiles below.")
    	fmt.Println("# NOTE: Any existing app on the device with the app id specified by GOIOS_APP_ID")
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Oct 19 23:33:30 GMT 2023
    - 3.2K bytes
    - Viewed (0)
  6. doc/next/6-stdlib/99-minor/debug/elf/66054.md

    The `debug/elf` package now defines [PT_OPENBSD_NOBTCFI]. This [ProgType] is
    used to disable Branch Tracking Control Flow Integrity (BTCFI) enforcement
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 12 20:57:18 GMT 2024
    - 173 bytes
    - Viewed (0)
  7. src/cmd/asm/internal/lex/input.go

    		beginningOfLine: true,
    		macros:          predefine(flags.D),
    	}
    }
    
    // predefine installs the macros set by the -D flag on the command line.
    func predefine(defines flags.MultiFlag) map[string]*Macro {
    	macros := make(map[string]*Macro)
    	for _, name := range defines {
    		value := "1"
    		i := strings.IndexRune(name, '=')
    		if i > 0 {
    			name, value = name[:i], name[i+1:]
    		}
    		tokens := Tokenize(name)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 29 07:48:38 GMT 2023
    - 12.6K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/parse.go

    //
    // The symabis format is documented at
    // cmd/compile/internal/ssagen.ReadSymABIs.
    func (p *Parser) symDefRef(w io.Writer, word string, operands [][]lex.Token) {
    	switch word {
    	case "TEXT":
    		// Defines text symbol in operands[0].
    		if len(operands) > 0 {
    			p.start(operands[0])
    			if name, abi, ok := p.funcAddress(); ok {
    				fmt.Fprintf(w, "def %s %s\n", name, abi)
    			}
    		}
    		return
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 36.9K bytes
    - Viewed (0)
  9. doc/go_spec.html

    unicode_digit  = /* a Unicode code point categorized as "Number, decimal digit" */ .
    </pre>
    
    <p>
    In <a href="https://www.unicode.org/versions/Unicode8.0.0/">The Unicode Standard 8.0</a>,
    Section 4.5 "General Category" defines a set of character categories.
    Go treats all characters in any of the Letter categories Lu, Ll, Lt, Lm, or Lo
    as Unicode letters, and those in the Number category Nd as Unicode digits.
    </p>
    
    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)
  10. api/go1.1.txt

    pkg syscall (freebsd-386), const DLT_JUNIPER_PPP = 179
    pkg syscall (freebsd-386), const DLT_JUNIPER_PPPOE = 167
    pkg syscall (freebsd-386), const DLT_JUNIPER_PPPOE_ATM = 168
    pkg syscall (freebsd-386), const DLT_JUNIPER_SERVICES = 136
    pkg syscall (freebsd-386), const DLT_JUNIPER_SRX_E2E = 233
    pkg syscall (freebsd-386), const DLT_JUNIPER_SRX_E2E ideal-int
    pkg syscall (freebsd-386), const DLT_JUNIPER_ST = 200
    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)
Back to top