Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for robots (0.36 sec)

  1. .github/PULL_REQUEST_TEMPLATE

    + If referring to a repo other than `golang/go` you can use the
      `owner/repo#issue_number` syntax: `Fixes golang/tools#1234`
    + We do not use Signed-off-by lines in Go. Please don't add them.
      Our Gerrit server & GitHub bots enforce CLA compliance instead.
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Feb 21 02:07:46 GMT 2018
    - 1.2K bytes
    - Viewed (0)
  2. doc/godebug.md

    Go 1.20 introduced automatic seeding of the
    [`math/rand`](/pkg/math/rand) global random number generator,
    controlled by the [`randautoseed` setting](/pkg/math/rand/#Seed).
    
    Go 1.20 introduced the concept of fallback roots for use during certificate verification,
    controlled by the [`x509usefallbackroots` setting](/pkg/crypto/x509/#SetFallbackRoots).
    
    Go 1.20 removed the preinstalled `.a` files for the standard library
    from the Go distribution.
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Apr 16 17:29:58 GMT 2024
    - 13.5K bytes
    - Viewed (0)
  3. doc/asm.html

    Go <code>const</code> declarations defined in the current package.
    Go assembly should avoid making assumptions about the layout of Go
    types and instead use these constants.
    This improves the readability of assembly code, and keeps it robust to
    changes in data layout either in the Go type definitions or in the
    layout rules used by the Go compiler.
    </p>
    
    <p>
    Constants are of the form <code>const_<i>name</i></code>.
    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)
  4. src/cmd/cgo/doc.go

    programs into the system C compiler and interpreting the generated
    error messages, debug information, and object files. In practice,
    parsing these is significantly less work and more robust than parsing
    C source.
    
    Cgo first invokes gcc -E -dM on the preamble, in order to find out
    about simple #defines for constants and the like. These are recorded
    for later use.
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
  5. api/go1.txt

    pkg crypto/x509, type VerifyOptions struct, DNSName string
    pkg crypto/x509, type VerifyOptions struct, Intermediates *CertPool
    pkg crypto/x509, type VerifyOptions struct, Roots *CertPool
    pkg crypto/x509, var ErrUnsupportedAlgorithm error
    pkg crypto/x509/pkix, method (*CertificateList) HasExpired(time.Time) bool
    pkg crypto/x509/pkix, method (*Name) FillFromRDNSequence(*RDNSequence)
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  6. api/go1.1.txt

    pkg debug/elf, const SHT_INIT_ARRAY = 14
    pkg debug/elf, const SHT_LOOS = 1610612736
    pkg debug/elf, const SHT_LOPROC = 1879048192
    pkg debug/elf, const SHT_LOUSER = 2147483648
    pkg debug/elf, const SHT_NOBITS = 8
    pkg debug/elf, const SHT_NOTE = 7
    pkg debug/elf, const SHT_NULL = 0
    pkg debug/elf, const SHT_PREINIT_ARRAY = 16
    pkg debug/elf, const SHT_PROGBITS = 1
    pkg debug/elf, const SHT_REL = 9
    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.2.txt

    pkg syscall (linux-arm-cgo), const SYS_GETUID32 ideal-int
    pkg syscall (linux-arm-cgo), const SYS_GETXATTR ideal-int
    pkg syscall (linux-arm-cgo), const SYS_GET_MEMPOLICY ideal-int
    pkg syscall (linux-arm-cgo), const SYS_GET_ROBUST_LIST ideal-int
    pkg syscall (linux-arm-cgo), const SYS_INIT_MODULE ideal-int
    pkg syscall (linux-arm-cgo), const SYS_INOTIFY_ADD_WATCH ideal-int
    pkg syscall (linux-arm-cgo), const SYS_INOTIFY_INIT 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)
  8. src/cmd/api/main_test.go

    	importDir   map[string]string            // canonical import path -> dir
    
    }
    
    func NewWalker(context *build.Context, root string) *Walker {
    	w := &Walker{
    		context:  context,
    		root:     root,
    		features: map[string]bool{},
    		imported: map[string]*apiPackage{"unsafe": &apiPackage{Package: types.Unsafe}},
    	}
    	w.loadImports()
    	return w
    }
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Apr 09 20:48:51 GMT 2024
    - 31.4K bytes
    - Viewed (0)
  9. misc/go_android_exec/main.go

    			deviceModDir := path.Join(deviceGopath, "src", modPath)
    			if err := adb("exec-out", "mkdir", "-p", path.Dir(deviceModDir)); err != nil {
    				return 0, err
    			}
    			// We use a single recursive 'adb push' of the module root instead of
    			// walking the tree and copying it piecewise. If the directory tree
    			// contains nested modules this could push a lot of unnecessary contents,
    			// but for the golang.org/x repos it seems to be significantly (~2x)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Aug 21 17:46:57 GMT 2023
    - 15.3K bytes
    - Viewed (0)
  10. misc/ios/go_ios_exec.go

    	if err != nil {
    		return "", err
    	}
    	cwd = strings.TrimSuffix(cwd, finalPkgpath)
    
    	// Copy all immediate files and testdata directories between
    	// the package being tested and the source root.
    	pkgpath = ""
    	for _, element := range strings.Split(finalPkgpath, string(filepath.Separator)) {
    		if debug {
    			log.Printf("copying %s", pkgpath)
    		}
    		pkgpath = filepath.Join(pkgpath, element)
    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)
Back to top