Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for mobile (0.23 sec)

  1. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const IPPROTO_MAX ideal-int
    pkg syscall (netbsd-arm64-cgo), const IPPROTO_MAXID ideal-int
    pkg syscall (netbsd-arm64-cgo), const IPPROTO_MOBILE = 55
    pkg syscall (netbsd-arm64-cgo), const IPPROTO_MOBILE ideal-int
    pkg syscall (netbsd-arm64-cgo), const IPPROTO_NONE = 59
    pkg syscall (netbsd-arm64-cgo), const IPPROTO_NONE ideal-int
    pkg syscall (netbsd-arm64-cgo), const IPPROTO_PFSYNC = 240
    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)
  2. src/cmd/asm/internal/asm/testdata/s390x.s

    	MOVDBR	R1, R2                // b90f0021
    	MOVWBR	R3, R4                // b91f0043
    
    	MOVDEQ	R0, R1                // b9e28010
    	MOVDGE	R2, R3                // b9e2a032
    	MOVDGT	R4, R5                // b9e22054
    	MOVDLE	R6, R7                // b9e2c076
    	MOVDLT	R8, R9                // b9e24098
    	MOVDNE	R10, R11              // b9e270ba
    
    	LOCR	$3, R2, R1            // b9f23012
    	LOCGR	$7, R5, R6            // b9e27065
    
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Nov 22 03:55:32 GMT 2023
    - 21.6K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/callback.go

    		}
    		fname := f.Name()
    		// Remove the prepended pathname from automatically
    		// generated cgo function names.
    		if strings.HasPrefix(fname, "_") {
    			fname = path.Base(f.Name()[1:])
    		}
    		// In module mode, this package has a fully-qualified import path.
    		// Remove it if present.
    		fname = strings.TrimPrefix(fname, "cmd/cgo/internal/")
    
    		namei := ""
    		if i < len(name) {
    			namei = name[i]
    		}
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri May 12 12:00:02 GMT 2023
    - 111.5K bytes
    - Viewed (0)
  4. misc/ios/detect.go

    	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)
  5. misc/go_android_exec/README

    Android
    =======
    
    For details on developing Go for Android, see the documentation in the
    mobile subrepository:
    
    	https://github.com/golang/mobile
    
    To run the standard library tests, enable Cgo and use an appropriate
    C compiler from the Android NDK. For example,
    
    	CGO_ENABLED=1 \
    	GOOS=android \
    	GOARCH=arm64 \
    	CC_FOR_TARGET=$NDK/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android21-clang \
    	./all.bash
    
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon May 01 14:45:55 GMT 2023
    - 732 bytes
    - Viewed (0)
  6. api/go1.1.txt

    pkg syscall (linux-386), const SYS_CLONE = 120
    pkg syscall (linux-386), const SYS_CLOSE = 6
    pkg syscall (linux-386), const SYS_CREAT = 8
    pkg syscall (linux-386), const SYS_CREATE_MODULE = 127
    pkg syscall (linux-386), const SYS_DELETE_MODULE = 129
    pkg syscall (linux-386), const SYS_DUP = 41
    pkg syscall (linux-386), const SYS_DUP2 = 63
    pkg syscall (linux-386), const SYS_DUP3 = 330
    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)
  7. api/go1.12.txt

    pkg runtime/debug, type BuildInfo struct, Deps []*Module
    pkg runtime/debug, type BuildInfo struct, Main Module
    pkg runtime/debug, type BuildInfo struct, Path string
    pkg runtime/debug, type Module struct
    pkg runtime/debug, type Module struct, Path string
    pkg runtime/debug, type Module struct, Replace *Module
    pkg runtime/debug, type Module struct, Sum string
    pkg runtime/debug, type Module struct, Version string
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Jan 02 21:21:53 GMT 2019
    - 13.5K bytes
    - Viewed (0)
  8. go.env

    # This file contains the initial defaults for go command configuration.
    # Values set by 'go env -w' and written to the user's go/env file override these.
    # The environment overrides everything else.
    
    # Use the Go module mirror and checksum database by default.
    # See https://proxy.golang.org for details.
    GOPROXY=https://proxy.golang.org,direct
    GOSUMDB=sum.golang.org
    
    # Automatically download newer toolchains as directed by go.mod files.
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Jun 06 19:18:46 GMT 2023
    - 505 bytes
    - Viewed (0)
  9. doc/next/6-stdlib/1-time.md

    poll the length to decide whether a receive on the timer channel
    will succeed.
    Such code should use a non-blocking receive instead.
    
    These new behaviors are only enabled when the main Go program
    is in a module with a `go.mod` `go` line using Go 1.23.0 or later.
    When Go 1.23 builds older programs, the old behaviors remain in effect.
    The new [GODEBUG setting](/doc/godebug) [`asynctimerchan=1`](/pkg/time/#NewTimer)
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 12 20:57:18 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  10. .github/ISSUE_TEMPLATE/04-vuln.yml

          label: "Does this issue reproduce at the latest version of golang.org/x/vuln?"
        validations:
          required: true
      - type: textarea
        id: go-env
        attributes:
          label: "Output of `go env` in your module/workspace:"
          render: shell
        validations:
          required: true
      - type: textarea
        id: what-did-you-do
        attributes:
          label: "What did you do?"
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Jan 04 23:31:17 GMT 2024
    - 1.9K bytes
    - Viewed (0)
Back to top