Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Apple (0.22 sec)

  1. misc/ios/detect.go

    		appID, err := plistExtract(fname, "Entitlements:application-identifier")
    		check(err)
    		fmt.Printf("export GOIOS_APP_ID=%s\n", appID)
    
    		teamID, err := plistExtract(fname, "Entitlements:com.apple.developer.team-identifier")
    		check(err)
    		fmt.Printf("export GOIOS_TEAM_ID=%s\n", teamID)
    	}
    }
    
    func detectMobileProvisionFiles(udids [][]byte) []string {
    	cmd := exec.Command("mdfind", "-name", ".mobileprovision")
    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)
  2. src/archive/zip/reader_test.go

    )
    
    type ZipTest struct {
    	Name     string
    	Source   func() (r io.ReaderAt, size int64) // if non-nil, used instead of testdata/<Name> file
    	Comment  string
    	File     []ZipTestFile
    	Obscured bool  // needed for Apple notarization (golang.org/issue/34986)
    	Error    error // the error that Opening this file should return
    }
    
    type ZipTestFile struct {
    	Name     string
    	Mode     fs.FileMode
    	NonUTF8  bool
    	ModTime  time.Time
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Mar 27 18:23:49 GMT 2024
    - 55.3K bytes
    - Viewed (0)
  3. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const DLT_AOS = 222
    pkg syscall (netbsd-arm64-cgo), const DLT_AOS ideal-int
    pkg syscall (netbsd-arm64-cgo), const DLT_APPLE_IP_OVER_IEEE1394 = 138
    pkg syscall (netbsd-arm64-cgo), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int
    pkg syscall (netbsd-arm64-cgo), const DLT_ARCNET = 7
    pkg syscall (netbsd-arm64-cgo), const DLT_ARCNET ideal-int
    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)
  4. api/go1.1.txt

    pkg syscall (darwin-386), const CSUSP = 26
    pkg syscall (darwin-386), const CSUSP ideal-int
    pkg syscall (darwin-386), const CTL_MAXNAME = 12
    pkg syscall (darwin-386), const CTL_NET = 4
    pkg syscall (darwin-386), const DLT_APPLE_IP_OVER_IEEE1394 = 138
    pkg syscall (darwin-386), const DLT_ARCNET = 7
    pkg syscall (darwin-386), const DLT_ATM_CLIP = 19
    pkg syscall (darwin-386), const DLT_ATM_RFC1483 = 11
    pkg syscall (darwin-386), const DLT_AX25 = 3
    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)
  5. api/go1.2.txt

    pkg syscall (freebsd-386-cgo), const DLT_A653_ICM ideal-int
    pkg syscall (freebsd-386-cgo), const DLT_AIRONET_HEADER ideal-int
    pkg syscall (freebsd-386-cgo), const DLT_AOS ideal-int
    pkg syscall (freebsd-386-cgo), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int
    pkg syscall (freebsd-386-cgo), const DLT_ARCNET ideal-int
    pkg syscall (freebsd-386-cgo), const DLT_ARCNET_LINUX ideal-int
    pkg syscall (freebsd-386-cgo), const DLT_ATM_CLIP ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
  6. misc/ios/go_ios_exec.go

    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
    	<key>keychain-access-groups</key>
    	<array><string>` + appID + `</string></array>
    	<key>get-task-allow</key>
    	<true/>
    	<key>application-identifier</key>
    	<string>` + appID + `</string>
    	<key>com.apple.developer.team-identifier</key>
    	<string>` + teamID + `</string>
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Apr 11 16:34:30 GMT 2022
    - 23.4K bytes
    - Viewed (0)
  7. src/cmd/cgo/gcc.go

    		"-c",          // do not link
    		"-xc",         // input language is C
    	)
    	if p.GccIsClang {
    		c = append(c,
    			"-ferror-limit=0",
    			// Apple clang version 1.7 (tags/Apple/clang-77) (based on LLVM 2.9svn)
    			// doesn't have -Wno-unneeded-internal-declaration, so we need yet another
    			// flag to disable the warning. Yes, really good diagnostics, clang.
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  8. doc/asm.html

    </li>
    
    <li>
    <code>(R5, R6)</code>: Destination register pair.
    </li>
    
    </ul>
    
    <h3 id="arm64">ARM64</h3>
    
    <p>
    <code>R18</code> is the "platform register", reserved on the Apple platform.
    To prevent accidental misuse, the register is named <code>R18_PLATFORM</code>.
    <code>R27</code> and <code>R28</code> are reserved by the compiler and linker.
    <code>R29</code> is the frame pointer.
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  9. api/go1.16.txt

    pkg syscall (darwin-arm64), const CTL_MAXNAME ideal-int
    pkg syscall (darwin-arm64), const CTL_NET = 4
    pkg syscall (darwin-arm64), const CTL_NET ideal-int
    pkg syscall (darwin-arm64), const DLT_APPLE_IP_OVER_IEEE1394 = 138
    pkg syscall (darwin-arm64), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int
    pkg syscall (darwin-arm64), const DLT_ARCNET = 7
    pkg syscall (darwin-arm64), const DLT_ARCNET ideal-int
    pkg syscall (darwin-arm64), const DLT_ATM_CLIP = 19
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  10. api/go1.14.txt

    pkg syscall (freebsd-arm64), const DLT_AOS = 222
    pkg syscall (freebsd-arm64), const DLT_AOS ideal-int
    pkg syscall (freebsd-arm64), const DLT_APPLE_IP_OVER_IEEE1394 = 138
    pkg syscall (freebsd-arm64), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int
    pkg syscall (freebsd-arm64), const DLT_ARCNET = 7
    pkg syscall (freebsd-arm64), const DLT_ARCNET ideal-int
    pkg syscall (freebsd-arm64), const DLT_ARCNET_LINUX = 129
    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)
Back to top