Directories ¶
Path | Synopsis |
---|---|
The template uses the function "code" to inject program source into the output by extracting code from files and injecting them as HTML-escaped <pre> blocks.
|
The template uses the function "code" to inject program source into the output by extracting code from files and injecting them as HTML-escaped <pre> blocks. |
codewalk
Generating random text: a Markov chain algorithm Based on the program presented in the "Design and Implementation" chapter of The Practice of Programming (Kernighan and Pike, Addison-Wesley 1999).
|
Generating random text: a Markov chain algorithm Based on the program presented in the "Design and Implementation" chapter of The Practice of Programming (Kernighan and Pike, Addison-Wesley 1999). |
misc
|
|
src
|
|
cmd/5a
5a is a version of the Plan 9 assembler.
|
5a is a version of the Plan 9 assembler. |
cmd/5c
5c is a version of the Plan 9 C compiler.
|
5c is a version of the Plan 9 C compiler. |
cmd/5g
5g is the version of the gc compiler for the ARM.
|
5g is the version of the gc compiler for the ARM. |
cmd/5l
5l is a modified version of the Plan 9 linker.
|
5l is a modified version of the Plan 9 linker. |
cmd/6a
6a is a version of the Plan 9 assembler.
|
6a is a version of the Plan 9 assembler. |
cmd/6c
6c is a version of the Plan 9 C compiler.
|
6c is a version of the Plan 9 C compiler. |
cmd/6g
6g is the version of the gc compiler for the x86-64.
|
6g is the version of the gc compiler for the x86-64. |
cmd/6l
6l is a modified version of the Plan 9 linker.
|
6l is a modified version of the Plan 9 linker. |
cmd/8a
8a is a version of the Plan 9 assembler.
|
8a is a version of the Plan 9 assembler. |
cmd/8c
8c is a version of the Plan 9 C compiler.
|
8c is a version of the Plan 9 C compiler. |
cmd/8g
8g is the version of the gc compiler for the x86.
|
8g is the version of the gc compiler for the x86. |
cmd/8l
8l is a modified version of the Plan 9 linker.
|
8l is a modified version of the Plan 9 linker. |
cmd/cc
This directory contains the portable section of the Plan 9 C compilers.
|
This directory contains the portable section of the Plan 9 C compilers. |
cmd/cov
Cov is a rudimentary code coverage tool.
|
Cov is a rudimentary code coverage tool. |
cmd/godefs
Godefs is a bootstrapping tool for porting the Go runtime to new systems.
|
Godefs is a bootstrapping tool for porting the Go runtime to new systems. |
cmd/gomake
The gomake command runs GNU make with an appropriate environment for using the conventional Go makefiles.
|
The gomake command runs GNU make with an appropriate environment for using the conventional Go makefiles. |
cmd/gopack
Gopack is a variant of the Plan 9 ar tool.
|
Gopack is a variant of the Plan 9 ar tool. |
cmd/ld
This directory contains the portable section of the Plan 9 C linkers.
|
This directory contains the portable section of the Plan 9 C linkers. |
cmd/nm
Nm is a version of the Plan 9 nm command.
|
Nm is a version of the Plan 9 nm command. |
cmd/prof
Prof is a rudimentary real-time profiler.
|
Prof is a rudimentary real-time profiler. |
pkg/archive/tar
Package tar implements access to tar archives.
|
Package tar implements access to tar archives. |
pkg/archive/zip
Package zip provides support for reading and writing ZIP archives.
|
Package zip provides support for reading and writing ZIP archives. |
pkg/asn1
Package asn1 implements parsing of DER-encoded ASN.1 data structures, as defined in ITU-T Rec X.690.
|
Package asn1 implements parsing of DER-encoded ASN.1 data structures, as defined in ITU-T Rec X.690. |
pkg/big
Package big implements multi-precision arithmetic (big numbers).
|
Package big implements multi-precision arithmetic (big numbers). |
pkg/bufio
Package bufio implements buffered I/O. It wraps an io.Reader or io.Writer object, creating another object (Reader or Writer) that also implements the interface but provides buffering and some help for textual I/O.
|
Package bufio implements buffered I/O. It wraps an io.Reader or io.Writer object, creating another object (Reader or Writer) that also implements the interface but provides buffering and some help for textual I/O. |
pkg/builtin
Package builtin provides documentation for Go's built-in functions.
|
Package builtin provides documentation for Go's built-in functions. |
pkg/bytes
Package bytes implements functions for the manipulation of byte slices.
|
Package bytes implements functions for the manipulation of byte slices. |
pkg/cmath
Package cmath provides basic constants and mathematical functions for complex numbers.
|
Package cmath provides basic constants and mathematical functions for complex numbers. |
pkg/compress/bzip2
Package bzip2 implements bzip2 decompression.
|
Package bzip2 implements bzip2 decompression. |
pkg/compress/flate
Package flate implements the DEFLATE compressed data format, described in RFC 1951.
|
Package flate implements the DEFLATE compressed data format, described in RFC 1951. |
pkg/compress/gzip
Package gzip implements reading and writing of gzip format compressed files, as specified in RFC 1952.
|
Package gzip implements reading and writing of gzip format compressed files, as specified in RFC 1952. |
pkg/compress/lzw
Package lzw implements the Lempel-Ziv-Welch compressed data format, described in T. A. Welch, “A Technique for High-Performance Data Compression”, Computer, 17(6) (June 1984), pp 8-19.
|
Package lzw implements the Lempel-Ziv-Welch compressed data format, described in T. A. Welch, “A Technique for High-Performance Data Compression”, Computer, 17(6) (June 1984), pp 8-19. |
pkg/compress/zlib
Package zlib implements reading and writing of zlib format compressed data, as specified in RFC 1950.
|
Package zlib implements reading and writing of zlib format compressed data, as specified in RFC 1950. |
pkg/container/heap
Package heap provides heap operations for any type that implements heap.Interface.
|
Package heap provides heap operations for any type that implements heap.Interface. |
pkg/container/list
Package list implements a doubly linked list.
|
Package list implements a doubly linked list. |
pkg/container/ring
Package ring implements operations on circular lists.
|
Package ring implements operations on circular lists. |
pkg/container/vector
Package vector implements containers for managing sequences of elements.
|
Package vector implements containers for managing sequences of elements. |
pkg/crypto
Package crypto collects common cryptographic constants.
|
Package crypto collects common cryptographic constants. |
pkg/crypto/aes
Package aes implements AES encryption (formerly Rijndael), as defined in U.S. Federal Information Processing Standards Publication 197.
|
Package aes implements AES encryption (formerly Rijndael), as defined in U.S. Federal Information Processing Standards Publication 197. |
pkg/crypto/blowfish
Package blowfish implements Bruce Schneier's Blowfish encryption algorithm.
|
Package blowfish implements Bruce Schneier's Blowfish encryption algorithm. |
pkg/crypto/cast5
Package cast5 implements CAST5, as defined in RFC 2144.
|
Package cast5 implements CAST5, as defined in RFC 2144. |
pkg/crypto/cipher
Package cipher implements standard block cipher modes that can be wrapped around low-level block cipher implementations.
|
Package cipher implements standard block cipher modes that can be wrapped around low-level block cipher implementations. |
pkg/crypto/des
Package des implements the Data Encryption Standard (DES) and the Triple Data Encryption Algorithm (TDEA) as defined in U.S. Federal Information Processing Standards Publication 46-3.
|
Package des implements the Data Encryption Standard (DES) and the Triple Data Encryption Algorithm (TDEA) as defined in U.S. Federal Information Processing Standards Publication 46-3. |
pkg/crypto/dsa
Package dsa implements the Digital Signature Algorithm, as defined in FIPS 186-3
|
Package dsa implements the Digital Signature Algorithm, as defined in FIPS 186-3 |
pkg/crypto/ecdsa
Package ecdsa implements the Elliptic Curve Digital Signature Algorithm, as defined in FIPS 186-3.
|
Package ecdsa implements the Elliptic Curve Digital Signature Algorithm, as defined in FIPS 186-3. |
pkg/crypto/elliptic
Package elliptic implements several standard elliptic curves over prime fields.
|
Package elliptic implements several standard elliptic curves over prime fields. |
pkg/crypto/hmac
Package hmac implements the Keyed-Hash Message Authentication Code (HMAC) as defined in U.S. Federal Information Processing Standards Publication 198.
|
Package hmac implements the Keyed-Hash Message Authentication Code (HMAC) as defined in U.S. Federal Information Processing Standards Publication 198. |
pkg/crypto/md4
Package md4 implements the MD4 hash algorithm as defined in RFC 1320.
|
Package md4 implements the MD4 hash algorithm as defined in RFC 1320. |
pkg/crypto/md5
Package md5 implements the MD5 hash algorithm as defined in RFC 1321.
|
Package md5 implements the MD5 hash algorithm as defined in RFC 1321. |
pkg/crypto/ocsp
Package ocsp parses OCSP responses as specified in RFC 2560.
|
Package ocsp parses OCSP responses as specified in RFC 2560. |
pkg/crypto/openpgp
Package openpgp implements high level operations on OpenPGP messages.
|
Package openpgp implements high level operations on OpenPGP messages. |
pkg/crypto/openpgp/armor
Package armor implements OpenPGP ASCII Armor, see RFC 4880.
|
Package armor implements OpenPGP ASCII Armor, see RFC 4880. |
pkg/crypto/openpgp/elgamal
Package elgamal implements ElGamal encryption, suitable for OpenPGP, as specified in "A Public-Key Cryptosystem and a Signature Scheme Based on Discrete Logarithms," IEEE Transactions on Information Theory, v.
|
Package elgamal implements ElGamal encryption, suitable for OpenPGP, as specified in "A Public-Key Cryptosystem and a Signature Scheme Based on Discrete Logarithms," IEEE Transactions on Information Theory, v. |
pkg/crypto/openpgp/error
Package error contains common error types for the OpenPGP packages.
|
Package error contains common error types for the OpenPGP packages. |
pkg/crypto/openpgp/packet
Package packet implements parsing and serialization of OpenPGP packets, as specified in RFC 4880.
|
Package packet implements parsing and serialization of OpenPGP packets, as specified in RFC 4880. |
pkg/crypto/openpgp/s2k
Package s2k implements the various OpenPGP string-to-key transforms as specified in RFC 4800 section 3.7.1.
|
Package s2k implements the various OpenPGP string-to-key transforms as specified in RFC 4800 section 3.7.1. |
pkg/crypto/rand
Package rand implements a cryptographically secure pseudorandom number generator.
|
Package rand implements a cryptographically secure pseudorandom number generator. |
pkg/crypto/rc4
Package rc4 implements RC4 encryption, as defined in Bruce Schneier's Applied Cryptography.
|
Package rc4 implements RC4 encryption, as defined in Bruce Schneier's Applied Cryptography. |
pkg/crypto/ripemd160
Package ripemd160 implements the RIPEMD-160 hash algorithm.
|
Package ripemd160 implements the RIPEMD-160 hash algorithm. |
pkg/crypto/rsa
Package rsa implements RSA encryption as specified in PKCS#1.
|
Package rsa implements RSA encryption as specified in PKCS#1. |
pkg/crypto/sha1
Package sha1 implements the SHA1 hash algorithm as defined in RFC 3174.
|
Package sha1 implements the SHA1 hash algorithm as defined in RFC 3174. |
pkg/crypto/sha256
Package sha256 implements the SHA224 and SHA256 hash algorithms as defined in FIPS 180-2.
|
Package sha256 implements the SHA224 and SHA256 hash algorithms as defined in FIPS 180-2. |
pkg/crypto/sha512
Package sha512 implements the SHA384 and SHA512 hash algorithms as defined in FIPS 180-2.
|
Package sha512 implements the SHA384 and SHA512 hash algorithms as defined in FIPS 180-2. |
pkg/crypto/subtle
Package subtle implements functions that are often useful in cryptographic code but require careful thought to use correctly.
|
Package subtle implements functions that are often useful in cryptographic code but require careful thought to use correctly. |
pkg/crypto/twofish
Package twofish implements Bruce Schneier's Twofish encryption algorithm.
|
Package twofish implements Bruce Schneier's Twofish encryption algorithm. |
pkg/crypto/x509
Package x509 parses X.509-encoded keys and certificates.
|
Package x509 parses X.509-encoded keys and certificates. |
pkg/crypto/x509/pkix
Package pkix contains shared, low level structures used for ASN.1 parsing and serialization of X.509 certificates, CRL and OCSP.
|
Package pkix contains shared, low level structures used for ASN.1 parsing and serialization of X.509 certificates, CRL and OCSP. |
pkg/crypto/xtea
Package xtea implements XTEA encryption, as defined in Needham and Wheeler's 1997 technical report, "Tea extensions."
|
Package xtea implements XTEA encryption, as defined in Needham and Wheeler's 1997 technical report, "Tea extensions." |
pkg/csv
Package csv reads and writes comma-separated values (CSV) files.
|
Package csv reads and writes comma-separated values (CSV) files. |
pkg/debug/dwarf
Package dwarf provides access to DWARF debugging information loaded from executable files, as defined in the DWARF 2.0 Standard at http://dwarfstd.org/doc/dwarf-2.0.0.pdf
|
Package dwarf provides access to DWARF debugging information loaded from executable files, as defined in the DWARF 2.0 Standard at http://dwarfstd.org/doc/dwarf-2.0.0.pdf |
pkg/debug/elf
Package elf implements access to ELF object files.
|
Package elf implements access to ELF object files. |
pkg/debug/gosym
Package gosym implements access to the Go symbol and line number tables embedded in Go binaries generated by the gc compilers.
|
Package gosym implements access to the Go symbol and line number tables embedded in Go binaries generated by the gc compilers. |
pkg/debug/macho
Package macho implements access to Mach-O object files, as defined by http://developer.apple.com/mac/library/documentation/DeveloperTools/Conceptual/MachORuntime/Reference/reference.html.
|
Package macho implements access to Mach-O object files, as defined by http://developer.apple.com/mac/library/documentation/DeveloperTools/Conceptual/MachORuntime/Reference/reference.html. |
pkg/debug/pe
Package pe implements access to PE (Microsoft Windows Portable Executable) files.
|
Package pe implements access to PE (Microsoft Windows Portable Executable) files. |
pkg/ebnf
Package ebnf is a library for EBNF grammars.
|
Package ebnf is a library for EBNF grammars. |
pkg/encoding/ascii85
Package ascii85 implements the ascii85 data encoding as used in the btoa tool and Adobe's PostScript and PDF document formats.
|
Package ascii85 implements the ascii85 data encoding as used in the btoa tool and Adobe's PostScript and PDF document formats. |
pkg/encoding/base32
Package base32 implements base32 encoding as specified by RFC 4648.
|
Package base32 implements base32 encoding as specified by RFC 4648. |
pkg/encoding/base64
Package base64 implements base64 encoding as specified by RFC 4648.
|
Package base64 implements base64 encoding as specified by RFC 4648. |
pkg/encoding/binary
Package binary implements translation between unsigned integer values and byte sequences and the reading and writing of fixed-size values.
|
Package binary implements translation between unsigned integer values and byte sequences and the reading and writing of fixed-size values. |
pkg/encoding/git85
Package git85 implements the radix 85 data encoding used in the Git version control system.
|
Package git85 implements the radix 85 data encoding used in the Git version control system. |
pkg/encoding/hex
Package hex implements hexadecimal encoding and decoding.
|
Package hex implements hexadecimal encoding and decoding. |
pkg/encoding/pem
Package pem implements the PEM data encoding, which originated in Privacy Enhanced Mail.
|
Package pem implements the PEM data encoding, which originated in Privacy Enhanced Mail. |
pkg/exec
Package exec runs external commands.
|
Package exec runs external commands. |
pkg/exp/datafmt
Package datafmt implements syntax-directed, type-driven formatting of arbitrary data structures.
|
Package datafmt implements syntax-directed, type-driven formatting of arbitrary data structures. |
pkg/exp/gui
Package gui defines a basic graphical user interface programming model.
|
Package gui defines a basic graphical user interface programming model. |
pkg/exp/gui/x11
Package x11 implements an X11 backend for the exp/gui package.
|
Package x11 implements an X11 backend for the exp/gui package. |
pkg/exp/regexp
Package regexp implements a simple regular expression library.
|
Package regexp implements a simple regular expression library. |
pkg/exp/regexp/syntax
Package syntax parses regular expressions into syntax trees.
|
Package syntax parses regular expressions into syntax trees. |
pkg/exp/template/html
Package html is a specialization of template that automates the construction of safe HTML output.
|
Package html is a specialization of template that automates the construction of safe HTML output. |
pkg/expvar
Package expvar provides a standardized interface to public variables, such as operation counters in servers.
|
Package expvar provides a standardized interface to public variables, such as operation counters in servers. |
pkg/flag
Package flag implements command-line flag parsing.
|
Package flag implements command-line flag parsing. |
pkg/fmt
Package fmt implements formatted I/O with functions analogous to C's printf and scanf.
|
Package fmt implements formatted I/O with functions analogous to C's printf and scanf. |
pkg/go/ast
Package ast declares the types used to represent syntax trees for Go packages.
|
Package ast declares the types used to represent syntax trees for Go packages. |
pkg/go/build
Package build provides tools for building Go packages.
|
Package build provides tools for building Go packages. |
pkg/go/doc
Package doc extracts source code documentation from a Go AST.
|
Package doc extracts source code documentation from a Go AST. |
pkg/go/parser
Package parser implements a parser for Go source files.
|
Package parser implements a parser for Go source files. |
pkg/go/printer
Package printer implements printing of AST nodes.
|
Package printer implements printing of AST nodes. |
pkg/go/scanner
Package scanner implements a scanner for Go source text.
|
Package scanner implements a scanner for Go source text. |
pkg/go/token
Package token defines constants representing the lexical tokens of the Go programming language and basic operations on tokens (printing, predicates).
|
Package token defines constants representing the lexical tokens of the Go programming language and basic operations on tokens (printing, predicates). |
pkg/go/typechecker
DEPRECATED PACKAGE - SEE go/types INSTEAD.
|
DEPRECATED PACKAGE - SEE go/types INSTEAD. |
pkg/go/types
PACKAGE UNDER CONSTRUCTION.
|
PACKAGE UNDER CONSTRUCTION. |
pkg/hash
Package hash provides interfaces for hash functions.
|
Package hash provides interfaces for hash functions. |
pkg/hash/adler32
Package adler32 implements the Adler-32 checksum.
|
Package adler32 implements the Adler-32 checksum. |
pkg/hash/crc32
Package crc32 implements the 32-bit cyclic redundancy check, or CRC-32, checksum.
|
Package crc32 implements the 32-bit cyclic redundancy check, or CRC-32, checksum. |
pkg/hash/crc64
Package crc64 implements the 64-bit cyclic redundancy check, or CRC-64, checksum.
|
Package crc64 implements the 64-bit cyclic redundancy check, or CRC-64, checksum. |
pkg/hash/fnv
Package fnv implements FNV-1 and FNV-1a, non-cryptographic hash functions created by Glenn Fowler, Landon Curt Noll, and Phong Vo.
|
Package fnv implements FNV-1 and FNV-1a, non-cryptographic hash functions created by Glenn Fowler, Landon Curt Noll, and Phong Vo. |
pkg/html
Package html implements an HTML5-compliant tokenizer and parser.
|
Package html implements an HTML5-compliant tokenizer and parser. |
pkg/http/cgi
Package cgi implements CGI (Common Gateway Interface) as specified in RFC 3875.
|
Package cgi implements CGI (Common Gateway Interface) as specified in RFC 3875. |
pkg/http/fcgi
Package fcgi implements the FastCGI protocol.
|
Package fcgi implements the FastCGI protocol. |
pkg/http/httptest
Package httptest provides utilities for HTTP testing.
|
Package httptest provides utilities for HTTP testing. |
pkg/http/pprof
Package pprof serves via its HTTP server runtime profiling data in the format expected by the pprof visualization tool.
|
Package pprof serves via its HTTP server runtime profiling data in the format expected by the pprof visualization tool. |
pkg/image
Package image implements a basic 2-D image library.
|
Package image implements a basic 2-D image library. |
pkg/image/bmp
Package bmp implements a BMP image decoder.
|
Package bmp implements a BMP image decoder. |
pkg/image/draw
Package draw provides image composition functions in the style of the Plan 9 graphics library (see http://plan9.bell-labs.com/magic/man2html/2/draw) and the X Render extension.
|
Package draw provides image composition functions in the style of the Plan 9 graphics library (see http://plan9.bell-labs.com/magic/man2html/2/draw) and the X Render extension. |
pkg/image/gif
Package gif implements a GIF image decoder.
|
Package gif implements a GIF image decoder. |
pkg/image/jpeg
Package jpeg implements a JPEG image decoder and encoder.
|
Package jpeg implements a JPEG image decoder and encoder. |
pkg/image/png
Package png implements a PNG image decoder and encoder.
|
Package png implements a PNG image decoder and encoder. |
pkg/image/tiff
Package tiff implements a TIFF image decoder.
|
Package tiff implements a TIFF image decoder. |
pkg/image/ycbcr
Package ycbcr provides images from the Y'CbCr color model.
|
Package ycbcr provides images from the Y'CbCr color model. |
pkg/index/suffixarray
Package suffixarray implements substring search in logarithmic time using an in-memory suffix array.
|
Package suffixarray implements substring search in logarithmic time using an in-memory suffix array. |
pkg/io
Package io provides basic interfaces to I/O primitives.
|
Package io provides basic interfaces to I/O primitives. |
pkg/io/ioutil
Package ioutil implements some I/O utility functions.
|
Package ioutil implements some I/O utility functions. |
pkg/json
Package json implements encoding and decoding of JSON objects as defined in RFC 4627.
|
Package json implements encoding and decoding of JSON objects as defined in RFC 4627. |
pkg/log
Package log implements a simple logging package.
|
Package log implements a simple logging package. |
pkg/mail
Package mail implements parsing of mail messages.
|
Package mail implements parsing of mail messages. |
pkg/math
Package math provides basic constants and mathematical functions.
|
Package math provides basic constants and mathematical functions. |
pkg/mime
Package mime implements parts of the MIME spec.
|
Package mime implements parts of the MIME spec. |
pkg/mime/multipart
Package multipart implements MIME multipart parsing, as defined in RFC 2046.
|
Package multipart implements MIME multipart parsing, as defined in RFC 2046. |
pkg/net
Package net provides a portable interface to Unix networks sockets, including TCP/IP, UDP, domain name resolution, and Unix domain sockets.
|
Package net provides a portable interface to Unix networks sockets, including TCP/IP, UDP, domain name resolution, and Unix domain sockets. |
pkg/net/dict
Package dict implements the Dictionary Server Protocol as defined in RFC 2229.
|
Package dict implements the Dictionary Server Protocol as defined in RFC 2229. |
pkg/net/textproto
Package textproto implements generic support for text-based request/response protocols in the style of HTTP, NNTP, and SMTP.
|
Package textproto implements generic support for text-based request/response protocols in the style of HTTP, NNTP, and SMTP. |
pkg/netchan
Package netchan implements type-safe networked channels: it allows the two ends of a channel to appear on different computers connected by a network.
|
Package netchan implements type-safe networked channels: it allows the two ends of a channel to appear on different computers connected by a network. |
pkg/old/template
Package template implements data-driven templates for generating textual output such as HTML.
|
Package template implements data-driven templates for generating textual output such as HTML. |
pkg/os
Package os provides a platform-independent interface to operating system functionality.
|
Package os provides a platform-independent interface to operating system functionality. |
pkg/os/inotify
Package inotify implements a wrapper for the Linux inotify system.
|
Package inotify implements a wrapper for the Linux inotify system. |
pkg/os/signal
Package signal implements operating system-independent signal handling.
|
Package signal implements operating system-independent signal handling. |
pkg/os/user
Package user allows user account lookups by name or id.
|
Package user allows user account lookups by name or id. |
pkg/patch
Package patch implements parsing and execution of the textual and binary patch descriptions used by version control tools such as CVS, Git, Mercurial, and Subversion.
|
Package patch implements parsing and execution of the textual and binary patch descriptions used by version control tools such as CVS, Git, Mercurial, and Subversion. |
pkg/path
Package path implements utility routines for manipulating slash-separated filename paths.
|
Package path implements utility routines for manipulating slash-separated filename paths. |
pkg/path/filepath
Package filepath implements utility routines for manipulating filename paths in a way compatible with the target operating system-defined file paths.
|
Package filepath implements utility routines for manipulating filename paths in a way compatible with the target operating system-defined file paths. |
pkg/rand
Package rand implements pseudo-random number generators.
|
Package rand implements pseudo-random number generators. |
pkg/reflect
Package reflect implements run-time reflection, allowing a program to manipulate objects with arbitrary types.
|
Package reflect implements run-time reflection, allowing a program to manipulate objects with arbitrary types. |
pkg/regexp
Package regexp implements a simple regular expression library.
|
Package regexp implements a simple regular expression library. |
pkg/rpc
Package rpc provides access to the exported methods of an object across a network or other I/O connection.
|
Package rpc provides access to the exported methods of an object across a network or other I/O connection. |
pkg/rpc/jsonrpc
Package jsonrpc implements a JSON-RPC ClientCodec and ServerCodec for the rpc package.
|
Package jsonrpc implements a JSON-RPC ClientCodec and ServerCodec for the rpc package. |
pkg/runtime
Package runtime contains operations that interact with Go's runtime system, such as functions to control goroutines.
|
Package runtime contains operations that interact with Go's runtime system, such as functions to control goroutines. |
pkg/runtime/cgo
Package cgo contains runtime support for code generated by the cgo tool.
|
Package cgo contains runtime support for code generated by the cgo tool. |
pkg/runtime/debug
Package debug contains facilities for programs to debug themselves while they are running.
|
Package debug contains facilities for programs to debug themselves while they are running. |
pkg/runtime/pprof
Package pprof writes runtime profiling data in the format expected by the pprof visualization tool.
|
Package pprof writes runtime profiling data in the format expected by the pprof visualization tool. |
pkg/scanner
Package scanner provides a scanner and tokenizer for UTF-8-encoded text.
|
Package scanner provides a scanner and tokenizer for UTF-8-encoded text. |
pkg/smtp
Package smtp implements the Simple Mail Transfer Protocol as defined in RFC 5321.
|
Package smtp implements the Simple Mail Transfer Protocol as defined in RFC 5321. |
pkg/sort
Package sort provides primitives for sorting slices and user-defined collections.
|
Package sort provides primitives for sorting slices and user-defined collections. |
pkg/strconv
Package strconv implements conversions to and from string representations of basic data types.
|
Package strconv implements conversions to and from string representations of basic data types. |
pkg/strings
Package strings implements simple functions to manipulate strings.
|
Package strings implements simple functions to manipulate strings. |
pkg/sync
Package sync provides basic synchronization primitives such as mutual exclusion locks.
|
Package sync provides basic synchronization primitives such as mutual exclusion locks. |
pkg/sync/atomic
Package atomic provides low-level atomic memory primitives useful for implementing synchronization algorithms.
|
Package atomic provides low-level atomic memory primitives useful for implementing synchronization algorithms. |
pkg/syscall
Package syscall contains an interface to the low-level operating system primitives.
|
Package syscall contains an interface to the low-level operating system primitives. |
pkg/syslog
Package syslog provides a simple interface to the system log service.
|
Package syslog provides a simple interface to the system log service. |
pkg/tabwriter
Package tabwriter implements a write filter (tabwriter.Writer) that translates tabbed columns in input into properly aligned text.
|
Package tabwriter implements a write filter (tabwriter.Writer) that translates tabbed columns in input into properly aligned text. |
pkg/template
Package template implements data-driven templates for generating textual output such as HTML.
|
Package template implements data-driven templates for generating textual output such as HTML. |
pkg/template/parse
Package parse builds parse trees for templates.
|
Package parse builds parse trees for templates. |
pkg/testing
Package testing provides support for automated testing of Go packages.
|
Package testing provides support for automated testing of Go packages. |
pkg/testing/iotest
Package iotest implements Readers and Writers useful only for testing.
|
Package iotest implements Readers and Writers useful only for testing. |
pkg/testing/quick
Package quick implements utility functions to help with black box testing.
|
Package quick implements utility functions to help with black box testing. |
pkg/testing/script
Package script aids in the testing of code that uses channels.
|
Package script aids in the testing of code that uses channels. |
pkg/time
Package time provides functionality for measuring and displaying time.
|
Package time provides functionality for measuring and displaying time. |
pkg/try
Package try contains the executable part of the gotry command.
|
Package try contains the executable part of the gotry command. |
pkg/unsafe
Package unsafe contains operations that step around the type safety of Go programs.
|
Package unsafe contains operations that step around the type safety of Go programs. |
pkg/url
Package URL parses URLs and implements query escaping.
|
Package URL parses URLs and implements query escaping. |
pkg/utf16
Package utf16 implements encoding and decoding of UTF-16 sequences.
|
Package utf16 implements encoding and decoding of UTF-16 sequences. |
pkg/utf8
Package utf8 implements functions and constants to support text encoded in UTF-8.
|
Package utf8 implements functions and constants to support text encoded in UTF-8. |
pkg/websocket
Package websocket implements a client and server for the WebSocket protocol.
|
Package websocket implements a client and server for the WebSocket protocol. |
pkg/xml
Package xml implements a simple XML 1.0 parser that understands XML name spaces.
|
Package xml implements a simple XML 1.0 parser that understands XML name spaces. |
test
|
|
chan
This test is designed to flush out the case where two cases of a select can both end up running.
|
This test is designed to flush out the case where two cases of a select can both end up running. |
Click to show internal directories.
Click to hide internal directories.