Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for detect (0.3 sec)

  1. misc/ios/detect.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build ignore
    
    // detect attempts to autodetect the correct
    // values of the environment variables
    // used by go_ios_exec.
    // detect shells out to ideviceinfo, a third party program that can
    // be obtained by following the instructions at
    // https://github.com/libimobiledevice/libimobiledevice.
    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. misc/ios/README

    id and a provisioned bundle id to use. They're specified with the environment variables
    GOIOS_DEV_ID, GOIOS_TEAM_ID and GOIOS_APP_ID. The detect.go program in this directory will
    attempt to auto-detect suitable values. Run it as
    
    	go run detect.go
    
    which will output something similar to
    
    	export GOIOS_DEV_ID="iPhone Developer: ******@****.*** (XXXXXXXX)"
    	export GOIOS_APP_ID=YYYYYYYY.some.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)
  3. src/bufio/bufio_test.go

    	const BufSize = 1000
    	b := NewReaderSize(strings.NewReader("hello world"), BufSize)
    	// Does it recognize itself?
    	b1 := NewReaderSize(b, BufSize)
    	if b1 != b {
    		t.Error("NewReaderSize did not detect underlying Reader")
    	}
    	// Does it wrap if existing buffer is too small?
    	b2 := NewReaderSize(b, 2*BufSize)
    	if b2 == b {
    		t.Error("NewReaderSize did not enlarge buffer")
    	}
    }
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Feb 10 18:56:01 GMT 2023
    - 51.5K bytes
    - Viewed (0)
  4. src/cmd/cgo/doc.go

    entirely using GODEBUG=cgocheck=0. Complete checking of pointer
    handling, at some cost in run time, is available by setting
    GOEXPERIMENT=cgocheck2 at build time.
    
    It is possible to defeat this enforcement by using the unsafe package,
    and of course there is nothing stopping the C code from doing anything
    it likes. However, programs that break these rules are likely to fail
    in unexpected and unpredictable ways.
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
  5. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const O_CREAT = 512
    pkg syscall (netbsd-arm64-cgo), const OCRNL = 16
    pkg syscall (netbsd-arm64-cgo), const OCRNL ideal-int
    pkg syscall (netbsd-arm64-cgo), const O_DIRECT = 524288
    pkg syscall (netbsd-arm64-cgo), const O_DIRECT ideal-int
    pkg syscall (netbsd-arm64-cgo), const O_DIRECTORY = 2097152
    pkg syscall (netbsd-arm64-cgo), const O_DIRECTORY ideal-int
    pkg syscall (netbsd-arm64-cgo), const O_DSYNC = 65536
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  6. doc/go1.17_spec.html

    	    statement, or a possibly labeled <a href="#Fallthrough_statements">"fallthrough"
    	    statement</a>.</li>
    	</ul>
    </li>
    
    <li>
    	A <a href="#Select_statements">"select" statement</a> in which:
    	<ul>
    	<li>there are no "break" statements referring to the "select" statement, and</li>
    	<li>the statement lists in each case, including the default if present,
    	    end in a terminating statement.</li>
    	</ul>
    </li>
    
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  7. src/archive/tar/reader_test.go

    func (rbs *readBadSeeker) Seek(int64, int) (int64, error) { return 0, fmt.Errorf("illegal seek") }
    
    // TestReadTruncation test the ending condition on various truncated files and
    // that truncated files are still detected even if the underlying io.Reader
    // satisfies io.Seeker.
    func TestReadTruncation(t *testing.T) {
    	var ss []string
    	for _, p := range []string{
    		"testdata/gnu.tar",
    		"testdata/ustar-file-reg.tar",
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Nov 21 21:14:38 GMT 2022
    - 47.1K bytes
    - Viewed (0)
  8. api/go1.txt

    pkg syscall (darwin-386), const SYS_REVOKE ideal-int
    pkg syscall (darwin-386), const SYS_RMDIR ideal-int
    pkg syscall (darwin-386), const SYS_SEARCHFS ideal-int
    pkg syscall (darwin-386), const SYS_SELECT ideal-int
    pkg syscall (darwin-386), const SYS_SELECT_NOCANCEL ideal-int
    pkg syscall (darwin-386), const SYS_SEMCTL ideal-int
    pkg syscall (darwin-386), const SYS_SEMGET ideal-int
    pkg syscall (darwin-386), const SYS_SEMOP 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)
  9. api/go1.16.txt

    pkg syscall (darwin-arm64), const SYS_SEARCHFS ideal-int
    pkg syscall (darwin-arm64), const SYS_SELECT = 93
    pkg syscall (darwin-arm64), const SYS_SELECT ideal-int
    pkg syscall (darwin-arm64), const SYS_SELECT_NOCANCEL = 407
    pkg syscall (darwin-arm64), const SYS_SELECT_NOCANCEL ideal-int
    pkg syscall (darwin-arm64), const SYS_SEMCTL = 254
    pkg syscall (darwin-arm64), const SYS_SEMCTL ideal-int
    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)
  10. api/go1.14.txt

    pkg syscall (freebsd-arm64), const O_ASYNC = 64
    pkg syscall (freebsd-arm64), const O_CLOEXEC = 1048576
    pkg syscall (freebsd-arm64), const O_CREAT = 512
    pkg syscall (freebsd-arm64), const O_DIRECT = 65536
    pkg syscall (freebsd-arm64), const O_DIRECT ideal-int
    pkg syscall (freebsd-arm64), const O_DIRECTORY = 131072
    pkg syscall (freebsd-arm64), const O_DIRECTORY ideal-int
    pkg syscall (freebsd-arm64), const O_EXCL = 2048
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
Back to top