Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for tablet (0.23 sec)

  1. src/cmd/cgo/doc.go

    use. You can do this by setting the generic CC_FOR_TARGET or the
    more specific CC_FOR_${GOOS}_${GOARCH} (for example, CC_FOR_linux_arm)
    environment variable when building the toolchain using make.bash,
    or you can set the CC environment variable any time you run the go tool.
    
    The CXX_FOR_TARGET, CXX_FOR_${GOOS}_${GOARCH}, and CXX
    environment variables work in a similar way for C++ code.
    
    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)
  2. doc/go1.17_spec.html

    Assume we have compiled a package containing the package clause
    <code>package math</code>, which exports function <code>Sin</code>, and
    installed the compiled package in the file identified by
    <code>"lib/math"</code>.
    This table illustrates how <code>Sin</code> is accessed in files
    that import the package after the
    various types of import declaration.
    </p>
    
    <pre class="grammar">
    Import declaration          Local name of Sin
    
    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)
  3. misc/ios/README

    	GOOS=ios GOARCH=amd64 CGO_ENABLED=1 CC_FOR_TARGET=$(pwd)/../misc/ios/clangwrap.sh ./all.bash
    
    If CC_FOR_TARGET is not set when the toolchain is built (make.bash or all.bash), CC
    can be set on the command line. For example,
    
    	GOOS=ios GOARCH=amd64 CGO_ENABLED=1 CC=$(go env GOROOT)/misc/ios/clangwrap.sh go build
    
    Setting CC is not necessary if the toolchain is built with CC_FOR_TARGET set.
    
    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)
  4. api/go1.txt

    pkg debug/gosym, method (*Table) LineToPC(string, int) (uint64, *Func, error)
    pkg debug/gosym, method (*Table) LookupFunc(string) *Func
    pkg debug/gosym, method (*Table) LookupSym(string) *Sym
    pkg debug/gosym, method (*Table) PCToFunc(uint64) *Func
    pkg debug/gosym, method (*Table) PCToLine(uint64) (string, int, *Func)
    pkg debug/gosym, method (*Table) SymByAddr(uint64) *Sym
    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)
  5. api/go1.14.txt

    pkg syscall (freebsd-arm64), const IP_FW_TABLE_ADD = 40
    pkg syscall (freebsd-arm64), const IP_FW_TABLE_ADD ideal-int
    pkg syscall (freebsd-arm64), const IP_FW_TABLE_DEL = 41
    pkg syscall (freebsd-arm64), const IP_FW_TABLE_DEL ideal-int
    pkg syscall (freebsd-arm64), const IP_FW_TABLE_FLUSH = 42
    pkg syscall (freebsd-arm64), const IP_FW_TABLE_FLUSH ideal-int
    pkg syscall (freebsd-arm64), const IP_FW_TABLE_GETSIZE = 43
    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)
  6. src/cmd/asm/internal/flags/flags.go

    )
    
    var DebugFlags struct {
    	MayMoreStack string `help:"call named function before all stack growth checks"`
    	PCTab        string `help:"print named pc-value table\nOne of: pctospadj, pctofile, pctoline, pctoinline, pctopcdata"`
    }
    
    var (
    	D        MultiFlag
    	I        MultiFlag
    	PrintOut int
    	DebugV   bool
    )
    
    func init() {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Aug 22 19:18:23 GMT 2023
    - 2.8K bytes
    - Viewed (0)
  7. SECURITY.md

    # Security Policy
    
    ## Supported Versions
    
    We support the past two Go releases (for example, Go 1.17.x and Go 1.18.x when Go 1.18.x is the latest stable release).
    
    See https://go.dev/wiki/Go-Release-Cycle and in particular the
    [Release Maintenance](https://go.dev/wiki/Go-Release-Cycle#release-maintenance)
    part of that page.
    
    ## Reporting a Vulnerability
    
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Sep 22 21:17:24 GMT 2023
    - 426 bytes
    - Viewed (0)
  8. src/bufio/scan_test.go

    import (
    	. "bufio"
    	"bytes"
    	"errors"
    	"io"
    	"strings"
    	"testing"
    	"unicode"
    	"unicode/utf8"
    )
    
    const smallMaxTokenSize = 256 // Much smaller for more efficient testing.
    
    // Test white space table matches the Unicode definition.
    func TestSpace(t *testing.T) {
    	for r := rune(0); r <= utf8.MaxRune; r++ {
    		if IsSpace(r) != unicode.IsSpace(r) {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Sep 22 16:22:42 GMT 2023
    - 14.3K bytes
    - Viewed (0)
  9. api/go1.1.txt

    pkg syscall (linux-386), const RT_SCOPE_UNIVERSE = 0
    pkg syscall (linux-386), const RT_TABLE_COMPAT = 252
    pkg syscall (linux-386), const RT_TABLE_DEFAULT = 253
    pkg syscall (linux-386), const RT_TABLE_LOCAL = 255
    pkg syscall (linux-386), const RT_TABLE_MAIN = 254
    pkg syscall (linux-386), const RT_TABLE_MAX = 4294967295
    pkg syscall (linux-386), const RT_TABLE_UNSPEC = 0
    pkg syscall (linux-386), const RUSAGE_CHILDREN = -1
    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)
  10. doc/go1.22.html

      The <code>-s</code> flag suppresses symbol table generation.
      The <code>-s</code> flag also implies the <code>-w</code> flag, which can be
      negated with <code>-w=0</code>.
      That is, <code>-s</code> <code>-w=0</code> will generate a binary with DWARF
      debug information generation but without the symbol table.
    </p>
    
    <p><!-- CL 511475 -->
    HTML
    - Registered: Tue Feb 06 11:13:10 GMT 2024
    - Last Modified: Wed Jan 31 20:51:56 GMT 2024
    - 45.6K bytes
    - Viewed (0)
Back to top