Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for apps (0.19 sec)

  1. misc/ios/README

    Note that the go_darwin_$GOARCH_exec wrapper uninstalls any existing app identified by
    the bundle id before installing a new app. If the uninstalled app is the last app by
    the developer identity, the device might also remove the permission to run apps from
    that developer, and the exec wrapper will fail to install the new app. To avoid that,
    install another app with the same developer identity but with a different bundle id.
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Dec 29 21:49:26 GMT 2020
    - 2.7K bytes
    - Viewed (0)
  2. misc/ios/detect.go

    	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")
    	fmt.Println("# will be overwritten when running Go programs.")
    	for _, mp := range mps {
    		fmt.Println()
    		f, err := os.CreateTemp("", "go_ios_detect_")
    		check(err)
    		fname := f.Name()
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Oct 19 23:33:30 GMT 2023
    - 3.2K bytes
    - Viewed (0)
  3. api/README

    compatibility.
    
    Starting with go1.19.txt, each API feature line must end in "#nnnnn"
    giving the GitHub issue number of the proposal issue that accepted
    the new API. This helps with our end-of-cycle audit of new APIs.
    The same requirement applies to next/* (described below), which will
    become a go1.XX.txt for XX >= 19.
    
    The next/ directory contains the only files intended to be mutated.
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Jan 31 19:22:50 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  4. api/go1.1.txt

    pkg syscall (darwin-386), const IPPROTO_ADFS = 68
    pkg syscall (darwin-386), const IPPROTO_AH = 51
    pkg syscall (darwin-386), const IPPROTO_AHIP = 61
    pkg syscall (darwin-386), const IPPROTO_APES = 99
    pkg syscall (darwin-386), const IPPROTO_ARGUS = 13
    pkg syscall (darwin-386), const IPPROTO_AX25 = 93
    pkg syscall (darwin-386), const IPPROTO_BHA = 49
    pkg syscall (darwin-386), const IPPROTO_BLT = 30
    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)
  5. misc/ios/go_ios_exec.go

    	}
    	var list struct {
    		Apps []struct {
    			Data []byte `xml:",innerxml"`
    		} `xml:"array>dict"`
    	}
    	if err := xml.Unmarshal(out, &list); err != nil {
    		return "", fmt.Errorf("failed to parse ideviceinstaller output: %v", err)
    	}
    	for _, app := range list.Apps {
    		values, err := parsePlistDict(app.Data)
    		if err != nil {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Apr 11 16:34:30 GMT 2022
    - 23.4K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/arch/arch.go

    	instructions["JOS"] = x86.AJOS  /* overflow set (OF = 1) */
    	instructions["JP"] = x86.AJPS   /* alternate */
    	instructions["JPC"] = x86.AJPC  /* parity clear (PF = 0) */
    	instructions["JPE"] = x86.AJPS  /* alternate */
    	instructions["JPL"] = x86.AJPL  /* non-negative (plus) (SF = 0) */
    	instructions["JPO"] = x86.AJPC  /* alternate */
    	instructions["JPS"] = x86.AJPS  /* parity set (PF = 1) */
    	instructions["JS"] = x86.AJMI   /* alternate */
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Mar 21 06:51:28 GMT 2023
    - 21.3K bytes
    - Viewed (0)
  7. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const IPPROTO_AHIP = 61 #53466
    pkg syscall (freebsd-riscv64), const IPPROTO_AHIP ideal-int #53466
    pkg syscall (freebsd-riscv64), const IPPROTO_APES = 99 #53466
    pkg syscall (freebsd-riscv64), const IPPROTO_APES ideal-int #53466
    pkg syscall (freebsd-riscv64), const IPPROTO_ARGUS = 13 #53466
    pkg syscall (freebsd-riscv64), const IPPROTO_ARGUS ideal-int #53466
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/testdata/amd64enc.s

    	DPPS $7, (BX), X2                       // 660f3a401307
    	DPPS $7, (R11), X2                      // 66410f3a401307
    	DPPS $7, X2, X2                         // 660f3a40d207
    	DPPS $7, X11, X2                        // 66410f3a40d307
    	DPPS $7, (BX), X11                      // 66440f3a401b07
    	DPPS $7, (R11), X11                     // 66450f3a401b07
    	DPPS $7, X2, X11                        // 66440f3a40da07
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Oct 08 21:38:44 GMT 2021
    - 581.9K bytes
    - Viewed (0)
  9. .github/SUPPORT.md

    * [The golang-nuts mailing list](https://groups.google.com/d/forum/golang-nuts)
    
    * [The Go Forum](https://forum.golangbridge.org/), a web-based forum
    
    * [Gophers Slack](https://gophers.slack.com), use the [invite app](https://invite.slack.golangbridge.org/) for access
    
    * [Stack Overflow](https://stackoverflow.com/questions/tagged/go) with questions tagged "go"
    
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Mar 29 22:00:27 GMT 2023
    - 692 bytes
    - Viewed (0)
  10. api/go1.16.txt

    pkg syscall (darwin-arm64), const IPPROTO_AHIP = 61
    pkg syscall (darwin-arm64), const IPPROTO_AHIP ideal-int
    pkg syscall (darwin-arm64), const IPPROTO_APES = 99
    pkg syscall (darwin-arm64), const IPPROTO_APES ideal-int
    pkg syscall (darwin-arm64), const IPPROTO_ARGUS = 13
    pkg syscall (darwin-arm64), const IPPROTO_ARGUS ideal-int
    pkg syscall (darwin-arm64), const IPPROTO_AX25 = 93
    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)
Back to top