Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for APPLICATION (0.22 sec)

  1. misc/ios/detect.go

    		check(err)
    		pcert, err := x509.ParseCertificate(cert)
    		check(err)
    		fmt.Printf("export GOIOS_DEV_ID=\"%s\"\n", pcert.Subject.CommonName)
    
    		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)
    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)
  2. .github/ISSUE_TEMPLATE/00-bug.yml

          placeholder: |
            GO111MODULE=""
            GOARCH="arm64"
            GOBIN="/Users/gopher/go/bin"
            GOCACHE="/Users/gopher/go/cache"
            GOENV="/Users/gopher/Library/Application Support/go/env"
            GOEXE=""
            GOEXPERIMENT=""
            GOFLAGS=""
            GOHOSTARCH="arm64"
            GOHOSTOS="darwin"
            GOINSECURE=""
            GOMODCACHE="/Users/gopher/go/pkg/mod"
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Jan 04 23:31:17 GMT 2024
    - 3.3K bytes
    - Viewed (0)
  3. api/go1.txt

    pkg syscall (linux-arm), var Stderr int
    pkg syscall (linux-arm), var Stdin int
    pkg syscall (linux-arm), var Stdout int
    pkg syscall (windows-386), const AF_NETBIOS ideal-int
    pkg syscall (windows-386), const APPLICATION_ERROR ideal-int
    pkg syscall (windows-386), const AUTHTYPE_CLIENT ideal-int
    pkg syscall (windows-386), const AUTHTYPE_SERVER ideal-int
    pkg syscall (windows-386), const CERT_CHAIN_POLICY_AUTHENTICODE 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)
  4. src/archive/tar/format.go

    	// arbitrary file sizes, filenames of arbitrary encoding and length,
    	// sparse files, and other features.
    	//
    	// It is recommended that PAX be chosen over GNU unless the target
    	// application can only parse GNU formatted archives.
    	//
    	// Reference:
    	//	https://www.gnu.org/software/tar/manual/html_node/Standard.html
    	FormatGNU
    
    	// Schily's tar format, which is incompatible with USTAR.
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 11.3K bytes
    - Viewed (0)
  5. doc/godebug.md

    [`multipartmaxheaders` and `multipartmaxparts` settings](/pkg/mime/multipart#hdr-Limits)
    respectively.
    This behavior was backported to Go 1.19.8+ and Go 1.20.3+.
    
    Go 1.21 adds the support of Multipath TCP but it is only used if the application
    explicitly asked for it. This behavior can be controlled by the
    [`multipathtcp` setting](/pkg/net#Dialer.SetMultipathTCP).
    
    There is no plan to remove any of these settings.
    
    ### Go 1.20
    
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Apr 16 17:29:58 GMT 2024
    - 13.5K bytes
    - Viewed (0)
  6. api/go1.1.txt

    pkg syscall (windows-386), const AI_NUMERICHOST ideal-int
    pkg syscall (windows-386), const AI_PASSIVE = 1
    pkg syscall (windows-386), const AI_PASSIVE ideal-int
    pkg syscall (windows-386), const APPLICATION_ERROR = 536870912
    pkg syscall (windows-386), const AUTHTYPE_CLIENT = 1
    pkg syscall (windows-386), const AUTHTYPE_SERVER = 2
    pkg syscall (windows-386), const CERT_CHAIN_POLICY_AUTHENTICODE = 2
    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)
  7. api/go1.15.txt

    pkg debug/pe, const IMAGE_FILE_SYSTEM ideal-int
    pkg debug/pe, const IMAGE_FILE_UP_SYSTEM_ONLY = 16384
    pkg debug/pe, const IMAGE_FILE_UP_SYSTEM_ONLY ideal-int
    pkg debug/pe, const IMAGE_SUBSYSTEM_EFI_APPLICATION = 10
    pkg debug/pe, const IMAGE_SUBSYSTEM_EFI_APPLICATION ideal-int
    pkg debug/pe, const IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER = 11
    pkg debug/pe, const IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER ideal-int
    pkg debug/pe, const IMAGE_SUBSYSTEM_EFI_ROM = 13
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Jul 17 02:15:01 GMT 2020
    - 7.6K bytes
    - Viewed (0)
  8. misc/ios/go_ios_exec.go

    <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>
    </dict>
    </plist>
    `
    }
    
    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)
Back to top