From 587b80322c6ce34ab115d7a837a56d7450aa913d Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Wed, 26 Oct 2016 18:58:01 +0000 Subject: [PATCH] api: update next.txt Change-Id: I5ad338c90c311bd4cfdcd3d221a1f3e506a97d53 Reviewed-on: https://go-review.googlesource.com/32118 Run-TryBot: Brad Fitzpatrick TryBot-Result: Gobot Gobot Reviewed-by: Brad Fitzpatrick --- api/next.txt | 193 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 193 insertions(+) diff --git a/api/next.txt b/api/next.txt index e69de29bb2..13277fcae4 100644 --- a/api/next.txt +++ b/api/next.txt @@ -0,0 +1,193 @@ +pkg compress/gzip, const HuffmanOnly = -2 +pkg compress/gzip, const HuffmanOnly ideal-int +pkg compress/zlib, const HuffmanOnly = -2 +pkg compress/zlib, const HuffmanOnly ideal-int +pkg crypto/tls, const TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256 = 49187 +pkg crypto/tls, const TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256 uint16 +pkg crypto/tls, const TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305 = 52393 +pkg crypto/tls, const TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305 uint16 +pkg crypto/tls, const TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256 = 49191 +pkg crypto/tls, const TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256 uint16 +pkg crypto/tls, const TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305 = 52392 +pkg crypto/tls, const TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305 uint16 +pkg crypto/tls, const TLS_RSA_WITH_AES_128_CBC_SHA256 = 60 +pkg crypto/tls, const TLS_RSA_WITH_AES_128_CBC_SHA256 uint16 +pkg crypto/tls, const X25519 = 29 +pkg crypto/tls, const X25519 CurveID +pkg crypto/tls, method (*Config) Clone() *Config +pkg crypto/tls, type ClientHelloInfo struct, Conn net.Conn +pkg crypto/tls, type ClientHelloInfo struct, SignatureSchemes []uint16 +pkg crypto/tls, type ClientHelloInfo struct, SupportedProtos []string +pkg crypto/tls, type ClientHelloInfo struct, SupportedVersions []uint16 +pkg crypto/tls, type Config struct, GetConfigForClient func(*ClientHelloInfo) (*Config, error) +pkg crypto/tls, type Config struct, KeyLogWriter io.Writer +pkg crypto/tls, type Config struct, VerifyPeerCertificate func([][]uint8, [][]*x509.Certificate) error +pkg crypto/x509, const NameMismatch = 5 +pkg crypto/x509, const NameMismatch InvalidReason +pkg crypto/x509, const SHA256WithRSAPSS = 13 +pkg crypto/x509, const SHA256WithRSAPSS SignatureAlgorithm +pkg crypto/x509, const SHA384WithRSAPSS = 14 +pkg crypto/x509, const SHA384WithRSAPSS SignatureAlgorithm +pkg crypto/x509, const SHA512WithRSAPSS = 15 +pkg crypto/x509, const SHA512WithRSAPSS SignatureAlgorithm +pkg database/sql, func Param(string, interface{}) NamedParam +pkg database/sql, method (*ColumnType) DatabaseTypeName() string +pkg database/sql, method (*ColumnType) DecimalSize() (int64, int64, bool) +pkg database/sql, method (*ColumnType) Length() (int64, bool) +pkg database/sql, method (*ColumnType) Name() string +pkg database/sql, method (*ColumnType) Nullable() (bool, bool) +pkg database/sql, method (*ColumnType) ScanType() reflect.Type +pkg database/sql, method (*DB) BeginContext(context.Context) (*Tx, error) +pkg database/sql, method (*DB) ExecContext(context.Context, string, ...interface{}) (Result, error) +pkg database/sql, method (*DB) PingContext(context.Context) error +pkg database/sql, method (*DB) PrepareContext(context.Context, string) (*Stmt, error) +pkg database/sql, method (*DB) QueryContext(context.Context, string, ...interface{}) (*Rows, error) +pkg database/sql, method (*DB) QueryRowContext(context.Context, string, ...interface{}) *Row +pkg database/sql, method (*Rows) ColumnTypes() ([]*ColumnType, error) +pkg database/sql, method (*Rows) NextResultSet() bool +pkg database/sql, method (*Stmt) ExecContext(context.Context, ...interface{}) (Result, error) +pkg database/sql, method (*Stmt) QueryContext(context.Context, ...interface{}) (*Rows, error) +pkg database/sql, method (*Stmt) QueryRowContext(context.Context, ...interface{}) *Row +pkg database/sql, method (*Tx) ExecContext(context.Context, string, ...interface{}) (Result, error) +pkg database/sql, method (*Tx) PrepareContext(context.Context, string) (*Stmt, error) +pkg database/sql, method (*Tx) QueryContext(context.Context, string, ...interface{}) (*Rows, error) +pkg database/sql, method (*Tx) QueryRowContext(context.Context, string, ...interface{}) *Row +pkg database/sql, method (*Tx) StmtContext(context.Context, *Stmt) *Stmt +pkg database/sql, type ColumnType struct +pkg database/sql, type NamedParam struct +pkg database/sql, type NamedParam struct, Name string +pkg database/sql, type NamedParam struct, Value interface{} +pkg database/sql/driver, type ConnBeginContext interface { BeginContext } +pkg database/sql/driver, type ConnBeginContext interface, BeginContext(context.Context) (Tx, error) +pkg database/sql/driver, type ConnPrepareContext interface { PrepareContext } +pkg database/sql/driver, type ConnPrepareContext interface, PrepareContext(context.Context, string) (Stmt, error) +pkg database/sql/driver, type ExecerContext interface { ExecContext } +pkg database/sql/driver, type ExecerContext interface, ExecContext(context.Context, string, []NamedValue) (Result, error) +pkg database/sql/driver, type NamedValue struct +pkg database/sql/driver, type NamedValue struct, Name string +pkg database/sql/driver, type NamedValue struct, Ordinal int +pkg database/sql/driver, type NamedValue struct, Value Value +pkg database/sql/driver, type QueryerContext interface { QueryContext } +pkg database/sql/driver, type QueryerContext interface, QueryContext(context.Context, string, []NamedValue) (Rows, error) +pkg database/sql/driver, type RowsColumnTypeDatabaseTypeName interface { Close, ColumnTypeDatabaseTypeName, Columns, Next } +pkg database/sql/driver, type RowsColumnTypeDatabaseTypeName interface, Close() error +pkg database/sql/driver, type RowsColumnTypeDatabaseTypeName interface, ColumnTypeDatabaseTypeName(int) string +pkg database/sql/driver, type RowsColumnTypeDatabaseTypeName interface, Columns() []string +pkg database/sql/driver, type RowsColumnTypeDatabaseTypeName interface, Next([]Value) error +pkg database/sql/driver, type RowsColumnTypeLength interface { Close, ColumnTypeLength, Columns, Next } +pkg database/sql/driver, type RowsColumnTypeLength interface, Close() error +pkg database/sql/driver, type RowsColumnTypeLength interface, ColumnTypeLength(int) (int64, bool) +pkg database/sql/driver, type RowsColumnTypeLength interface, Columns() []string +pkg database/sql/driver, type RowsColumnTypeLength interface, Next([]Value) error +pkg database/sql/driver, type RowsColumnTypeNullable interface { Close, ColumnTypeNullable, Columns, Next } +pkg database/sql/driver, type RowsColumnTypeNullable interface, Close() error +pkg database/sql/driver, type RowsColumnTypeNullable interface, ColumnTypeNullable(int) (bool, bool) +pkg database/sql/driver, type RowsColumnTypeNullable interface, Columns() []string +pkg database/sql/driver, type RowsColumnTypeNullable interface, Next([]Value) error +pkg database/sql/driver, type RowsColumnTypePrecisionScale interface { Close, ColumnTypePrecisionScale, Columns, Next } +pkg database/sql/driver, type RowsColumnTypePrecisionScale interface, Close() error +pkg database/sql/driver, type RowsColumnTypePrecisionScale interface, ColumnTypePrecisionScale(int) (int64, int64, bool) +pkg database/sql/driver, type RowsColumnTypePrecisionScale interface, Columns() []string +pkg database/sql/driver, type RowsColumnTypePrecisionScale interface, Next([]Value) error +pkg database/sql/driver, type RowsColumnTypeScanType interface { Close, ColumnTypeScanType, Columns, Next } +pkg database/sql/driver, type RowsColumnTypeScanType interface, Close() error +pkg database/sql/driver, type RowsColumnTypeScanType interface, ColumnTypeScanType(int) reflect.Type +pkg database/sql/driver, type RowsColumnTypeScanType interface, Columns() []string +pkg database/sql/driver, type RowsColumnTypeScanType interface, Next([]Value) error +pkg database/sql/driver, type RowsNextResultSet interface { Close, Columns, HasNextResultSet, Next, NextResultSet } +pkg database/sql/driver, type RowsNextResultSet interface, Close() error +pkg database/sql/driver, type RowsNextResultSet interface, Columns() []string +pkg database/sql/driver, type RowsNextResultSet interface, HasNextResultSet() bool +pkg database/sql/driver, type RowsNextResultSet interface, Next([]Value) error +pkg database/sql/driver, type RowsNextResultSet interface, NextResultSet() error +pkg database/sql/driver, type StmtExecContext interface { ExecContext } +pkg database/sql/driver, type StmtExecContext interface, ExecContext(context.Context, []NamedValue) (Result, error) +pkg database/sql/driver, type StmtQueryContext interface { QueryContext } +pkg database/sql/driver, type StmtQueryContext interface, QueryContext(context.Context, []NamedValue) (Rows, error) +pkg debug/gosym, func PCValue([]uint8, uint64, int) int +pkg debug/pe, method (*COFFSymbol) FullName(StringTable) (string, error) +pkg debug/pe, method (StringTable) String(uint32) (string, error) +pkg debug/pe, type File struct, COFFSymbols []COFFSymbol +pkg debug/pe, type File struct, StringTable StringTable +pkg debug/pe, type Reloc struct +pkg debug/pe, type Reloc struct, SymbolTableIndex uint32 +pkg debug/pe, type Reloc struct, Type uint16 +pkg debug/pe, type Reloc struct, VirtualAddress uint32 +pkg debug/pe, type Section struct, Relocs []Reloc +pkg debug/pe, type StringTable []uint8 +pkg encoding/base64, method (Encoding) Strict() *Encoding +pkg encoding/json, type UnmarshalTypeError struct, Field string +pkg encoding/json, type UnmarshalTypeError struct, Struct string +pkg expvar, func Handler() http.Handler +pkg expvar, method (*Float) Value() float64 +pkg expvar, method (*Int) Value() int64 +pkg expvar, method (*String) Value() string +pkg expvar, method (Func) Value() interface{} +pkg go/ast, method (*AliasSpec) End() token.Pos +pkg go/ast, method (*AliasSpec) Pos() token.Pos +pkg go/ast, type AliasSpec struct +pkg go/ast, type AliasSpec struct, Comment *CommentGroup +pkg go/ast, type AliasSpec struct, Doc *CommentGroup +pkg go/ast, type AliasSpec struct, Name *Ident +pkg go/ast, type AliasSpec struct, Orig Expr +pkg go/build, type NoGoError struct, Ignored bool +pkg go/doc, func IsPredeclared(string) bool +pkg go/token, const ALIAS = 87 +pkg go/token, const ALIAS Token +pkg go/types, func Default(Type) Type +pkg go/types, func IdenticalIgnoreTags(Type, Type) bool +pkg math/big, method (*Float) Scan(fmt.ScanState, int32) error +pkg math/big, method (*Int) Sqrt(*Int) *Int +pkg math/rand, func Uint64() uint64 +pkg math/rand, method (*Rand) Uint64() uint64 +pkg net, method (*Buffers) Read([]uint8) (int, error) +pkg net, method (*Buffers) WriteTo(io.Writer) (int64, error) +pkg net, method (*Resolver) LookupAddr(context.Context, string) ([]string, error) +pkg net, method (*Resolver) LookupCNAME(context.Context, string) (string, error) +pkg net, method (*Resolver) LookupHost(context.Context, string) ([]string, error) +pkg net, method (*Resolver) LookupIPAddr(context.Context, string) ([]IPAddr, error) +pkg net, method (*Resolver) LookupMX(context.Context, string) ([]*MX, error) +pkg net, method (*Resolver) LookupNS(context.Context, string) ([]*NS, error) +pkg net, method (*Resolver) LookupPort(context.Context, string, string) (int, error) +pkg net, method (*Resolver) LookupSRV(context.Context, string, string, string) (string, []*SRV, error) +pkg net, method (*Resolver) LookupTXT(context.Context, string) ([]string, error) +pkg net, type Buffers [][]uint8 +pkg net, type Dialer struct, Resolver *Resolver +pkg net, type Resolver struct +pkg net, type Resolver struct, PreferGo bool +pkg net, var DefaultResolver *Resolver +pkg net/http, type PushOptions struct +pkg net/http, type PushOptions struct, Header Header +pkg net/http, type PushOptions struct, Method string +pkg net/http, type Pusher interface { Push } +pkg net/http, type Pusher interface, Push(string, *PushOptions) error +pkg net/http, type Request struct, GetBody func() (io.ReadCloser, error) +pkg net/http, var NoBody noBody +pkg net/http/httptrace, type ClientTrace struct, TLSHandshakeDone func(tls.ConnectionState, error) +pkg net/http/httptrace, type ClientTrace struct, TLSHandshakeStart func() +pkg net/mail, func ParseDate(string) (time.Time, error) +pkg net/url, func PathEscape(string) string +pkg net/url, func PathUnescape(string) (string, error) +pkg net/url, method (*URL) Hostname() string +pkg net/url, method (*URL) MarshalBinary() ([]uint8, error) +pkg net/url, method (*URL) Port() string +pkg net/url, method (*URL) UnmarshalBinary([]uint8) error +pkg os, var ErrClosed error +pkg plugin, func Open(string) (*Plugin, error) +pkg plugin, method (*Plugin) Lookup(string) (Symbol, error) +pkg plugin, type Plugin struct +pkg plugin, type Symbol interface {} +pkg reflect, func Swapper(interface{}) func(int, int) +pkg sort, func Slice(interface{}, func(int, int) bool) +pkg sort, func SliceIsSorted(interface{}, func(int, int) bool) bool +pkg sort, func SliceStable(interface{}, func(int, int) bool) +pkg syscall (linux-arm), func TimevalToNsec(Timeval) int64 +pkg syscall (linux-arm-cgo), func TimevalToNsec(Timeval) int64 +pkg syscall (windows-386), const ERROR_DIR_NOT_EMPTY = 145 +pkg syscall (windows-386), const ERROR_DIR_NOT_EMPTY Errno +pkg syscall (windows-amd64), const ERROR_DIR_NOT_EMPTY = 145 +pkg syscall (windows-amd64), const ERROR_DIR_NOT_EMPTY Errno +pkg testing, method (*B) Name() string +pkg testing, method (*T) Name() string +pkg testing, type TB interface, Name() string +pkg time, func Until(Time) Duration