SYMBOL INDEX (8322 symbols across 288 files) FILE: config/config.go type Configuration (line 9) | type Configuration struct function NewConfiguration (line 19) | func NewConfiguration(path string) *Configuration { FILE: imageprocessor/compresslosslessly.go type CompressLosslessly (line 10) | type CompressLosslessly struct method Process (line 12) | func (this *CompressLosslessly) Process(image *uploadedfile.UploadedFi... method String (line 28) | func (this *CompressLosslessly) String() string { method compressPng (line 32) | func (this *CompressLosslessly) compressPng(image *uploadedfile.Upload... method compressJpeg (line 43) | func (this *CompressLosslessly) compressJpeg(image *uploadedfile.Uploa... FILE: imageprocessor/exifstripper.go type ExifStripper (line 8) | type ExifStripper struct method Process (line 10) | func (this *ExifStripper) Process(image *uploadedfile.UploadedFile) er... method String (line 23) | func (this *ExifStripper) String() string { FILE: imageprocessor/imageorienter.go type ImageOrienter (line 8) | type ImageOrienter struct method Process (line 10) | func (this *ImageOrienter) Process(image *uploadedfile.UploadedFile) e... method String (line 21) | func (this *ImageOrienter) String() string { FILE: imageprocessor/imageprocessor.go type ProcessType (line 11) | type ProcessType interface type multiProcessType (line 16) | type multiProcessType method Process (line 18) | func (this multiProcessType) Process(image *uploadedfile.UploadedFile)... method String (line 29) | func (this multiProcessType) String() string { type asyncProcessType (line 37) | type asyncProcessType method Process (line 39) | func (this asyncProcessType) Process(image *uploadedfile.UploadedFile)... method String (line 65) | func (this asyncProcessType) String() string { type ImageProcessor (line 73) | type ImageProcessor struct method Run (line 77) | func (this *ImageProcessor) Run(image *uploadedfile.UploadedFile) error { type ImageProcessorStrategy (line 81) | type ImageProcessorStrategy FILE: imageprocessor/imagescaler.go type ImageScaler (line 10) | type ImageScaler struct method Process (line 14) | func (this *ImageScaler) Process(image *uploadedfile.UploadedFile) err... method String (line 27) | func (this *ImageScaler) String() string { method scalePng (line 31) | func (this *ImageScaler) scalePng(image *uploadedfile.UploadedFile) er... method scaleJpeg (line 42) | func (this *ImageScaler) scaleJpeg(image *uploadedfile.UploadedFile) e... method scaleGif (line 94) | func (this *ImageScaler) scaleGif(image *uploadedfile.UploadedFile) er... FILE: imageprocessor/ocr.go type OCRRunner (line 10) | type OCRRunner struct method Process (line 14) | func (this *OCRRunner) Process(image *uploadedfile.UploadedFile) error { method String (line 26) | func (this *OCRRunner) String() string { FILE: imageprocessor/ocr_test.go function TestStandardOCR (line 13) | func TestStandardOCR(t *testing.T) { function getUploadedFileObject (line 28) | func getUploadedFileObject() (*uploadedfile.UploadedFile, error) { function copyTestImage (line 42) | func copyTestImage(filename string) (string, error) { FILE: imageprocessor/processorcommand/gm.go constant GM_COMMAND (line 9) | GM_COMMAND = "gm" function ConvertToJpeg (line 11) | func ConvertToJpeg(filename string) (string, error) { function FixOrientation (line 29) | func FixOrientation(filename string) (string, error) { function Quality (line 47) | func Quality(filename string, quality int) (string, error) { function ResizePercent (line 68) | func ResizePercent(filename string, percent int) (string, error) { function SquareThumb (line 87) | func SquareThumb(filename, name string, size int, quality int, format th... function Thumb (line 122) | func Thumb(filename, name string, width, height int, quality int, format... function CircleThumb (line 151) | func CircleThumb(filename, name string, width int, quality int, format t... function CustomThumb (line 191) | func CustomThumb(filename, name string, width, height int, cropGravity s... function Full (line 228) | func Full(filename string, name string, quality int, format thumbType.Th... FILE: imageprocessor/processorcommand/jpegtran.go function Jpegtran (line 7) | func Jpegtran(filename string) (string, error) { FILE: imageprocessor/processorcommand/ocrcommands.go type OCRResult (line 14) | type OCRResult struct method removeNonWords (line 26) | func (this *OCRResult) removeNonWords() { method wordCount (line 60) | func (this *OCRResult) wordCount(blob string) int { function newOCRResult (line 19) | func newOCRResult(ocrType string, result string) *OCRResult { type MultiOCRCommand (line 75) | type MultiOCRCommand method Run (line 77) | func (this MultiOCRCommand) Run(image string) (*OCRResult, error) { type OCRCommand (line 115) | type OCRCommand interface type MemeOCR (line 119) | type MemeOCR struct method Run (line 129) | func (this *MemeOCR) Run(image string) (*OCRResult, error) { function NewMemeOCR (line 123) | func NewMemeOCR() *MemeOCR { type StandardOCR (line 158) | type StandardOCR struct method Run (line 168) | func (this *StandardOCR) Run(image string) (*OCRResult, error) { function NewStandardOCR (line 162) | func NewStandardOCR() *StandardOCR { FILE: imageprocessor/processorcommand/optipng.go function Optipng (line 7) | func Optipng(filename string) (string, error) { FILE: imageprocessor/processorcommand/runner.go function runProcessorCommand (line 11) | func runProcessorCommand(command string, args []string) error { function killCmd (line 40) | func killCmd(cmd *exec.Cmd) { FILE: imageprocessor/processorcommand/stripmetadata.go function StripMetadata (line 3) | func StripMetadata(filename string) error { FILE: imageprocessor/thumbType/thumbType.go type ThumbType (line 3) | type ThumbType method ToString (line 13) | func (this ThumbType) ToString() string { constant UNKNOWN (line 6) | UNKNOWN ThumbType = iota constant JPG (line 7) | JPG constant PNG (line 8) | PNG constant GIF (line 9) | GIF constant WEBP (line 10) | WEBP function FromMime (line 28) | func FromMime(mime string) ThumbType { function FromString (line 43) | func FromString(format string) ThumbType { FILE: imagestore/factory.go type Factory (line 17) | type Factory struct method NewImageStores (line 25) | func (this *Factory) NewImageStores() ImageStore { method NewS3ImageStore (line 56) | func (this *Factory) NewS3ImageStore(conf map[string]string) ImageStore { method NewGCSImageStore (line 75) | func (this *Factory) NewGCSImageStore(conf map[string]string) ImageSto... method NewLocalImageStore (line 101) | func (this *Factory) NewLocalImageStore(conf map[string]string) ImageS... method NewStoreObject (line 106) | func (this *Factory) NewStoreObject(id string, mime string, size strin... method NewHashGenerator (line 114) | func (this *Factory) NewHashGenerator(store ImageStore) *HashGenerator { function NewFactory (line 21) | func NewFactory(conf *config.Configuration) *Factory { FILE: imagestore/gcsstore.go type GCSImageStore (line 13) | type GCSImageStore struct method Exists (line 29) | func (this *GCSImageStore) Exists(obj *StoreObject) (bool, error) { method Save (line 37) | func (this *GCSImageStore) Save(src string, obj *StoreObject) (*StoreO... method Get (line 65) | func (this *GCSImageStore) Get(obj *StoreObject) (io.ReadCloser, error) { method String (line 75) | func (this *GCSImageStore) String() string { method toPath (line 79) | func (this *GCSImageStore) toPath(obj *StoreObject) string { function NewGCSImageStore (line 20) | func NewGCSImageStore(ctx context.Context, bucket string, root string, m... FILE: imagestore/hash.go type HashGenerator (line 9) | type HashGenerator struct method init (line 15) | func (this *HashGenerator) init() { method Get (line 75) | func (this *HashGenerator) Get() string { FILE: imagestore/localstore.go type LocalImageStore (line 10) | type LocalImageStore struct method Exists (line 22) | func (this *LocalImageStore) Exists(obj *StoreObject) (bool, error) { method Save (line 30) | func (this *LocalImageStore) Save(src string, obj *StoreObject) (*Stor... method Get (line 55) | func (this *LocalImageStore) Get(obj *StoreObject) (io.ReadCloser, err... method String (line 64) | func (this *LocalImageStore) String() string { method createParent (line 68) | func (this *LocalImageStore) createParent(obj *StoreObject) { method toPath (line 76) | func (this *LocalImageStore) toPath(obj *StoreObject) string { function NewLocalImageStore (line 15) | func NewLocalImageStore(root string, mapper *NamePathMapper) *LocalImage... FILE: imagestore/memorystore.go type InMemoryImageStore (line 12) | type InMemoryImageStore struct method Exists (line 24) | func (this *InMemoryImageStore) Exists(obj *StoreObject) (bool, error) { method Save (line 34) | func (this *InMemoryImageStore) Save(src string, obj *StoreObject) (*S... method Get (line 53) | func (this *InMemoryImageStore) Get(obj *StoreObject) (io.ReadCloser, ... method String (line 67) | func (this *InMemoryImageStore) String() string { function NewInMemoryImageStore (line 17) | func NewInMemoryImageStore() *InMemoryImageStore { FILE: imagestore/namepathmapper.go type NamePathMapper (line 8) | type NamePathMapper struct method mapToPath (line 25) | func (this *NamePathMapper) mapToPath(obj *StoreObject) string { function NewNamePathMapper (line 13) | func NewNamePathMapper(expr string, mapping string) *NamePathMapper { FILE: imagestore/s3store.go type S3ImageStore (line 10) | type S3ImageStore struct method Exists (line 26) | func (this *S3ImageStore) Exists(obj *StoreObject) (bool, error) { method Save (line 36) | func (this *S3ImageStore) Save(src string, obj *StoreObject) (*StoreOb... method Get (line 59) | func (this *S3ImageStore) Get(obj *StoreObject) (io.ReadCloser, error) { method String (line 69) | func (this *S3ImageStore) String() string { method toPath (line 73) | func (this *S3ImageStore) toPath(obj *StoreObject) string { function NewS3ImageStore (line 17) | func NewS3ImageStore(bucket string, root string, client *s3.S3, mapper *... FILE: imagestore/store.go type ImageStore (line 8) | type ImageStore interface type MultiImageStore (line 15) | type MultiImageStore method Save (line 17) | func (this MultiImageStore) Save(src string, obj *StoreObject) (*Store... method Exists (line 43) | func (this MultiImageStore) Exists(obj *StoreObject) (bool, error) { method Get (line 74) | func (this MultiImageStore) Get(obj *StoreObject) (io.ReadCloser, erro... method String (line 108) | func (this MultiImageStore) String() string { FILE: imagestore/storeobject.go type StorableObject (line 3) | type StorableObject interface type StoreObject (line 7) | type StoreObject struct method Store (line 14) | func (this *StoreObject) Store(s StorableObject, store ImageStore) err... FILE: main.go function main (line 14) | func main() { FILE: server/authenticator.go type AuthenticatedUser (line 22) | type AuthenticatedUser struct type Authenticator (line 28) | type Authenticator interface type PassthroughAuthenticator (line 32) | type PassthroughAuthenticator struct method GetUser (line 34) | func (auth *PassthroughAuthenticator) GetUser(req *http.Request) (*Aut... type HMACAuthenticator (line 38) | type HMACAuthenticator struct method SetTime (line 44) | func (auth *HMACAuthenticator) SetTime(t time.Time) { method GetUser (line 55) | func (auth *HMACAuthenticator) GetUser(req *http.Request) (*Authentica... function NewHMACAuthenticatorSHA256 (line 48) | func NewHMACAuthenticatorSHA256(key []byte) *HMACAuthenticator { FILE: server/authenticator_test.go function TestPassthroughAuthenticatorAlwaysReturnsNilUser (line 13) | func TestPassthroughAuthenticatorAlwaysReturnsNilUser(t *testing.T) { function TestHMACAuthenticatorOnValidRequest (line 26) | func TestHMACAuthenticatorOnValidRequest(t *testing.T) { function TestHMACAuthenticatorOnEmptyHeader (line 53) | func TestHMACAuthenticatorOnEmptyHeader(t *testing.T) { function TestHMACAuthenticatorOnInvalidRequest (line 68) | func TestHMACAuthenticatorOnInvalidRequest(t *testing.T) { function TestHMACAuthenticatorOnExpiredGrant (line 96) | func TestHMACAuthenticatorOnExpiredGrant(t *testing.T) { FILE: server/server.go type Server (line 25) | type Server struct method uploadFile (line 108) | func (s *Server) uploadFile(uploadFile io.Reader, fileName string, thu... method Configure (line 212) | func (s *Server) Configure(muxer *http.ServeMux) { method buildThumbResponse (line 522) | func (s *Server) buildThumbResponse(upload *uploadedfile.UploadedFile)... method download (line 541) | func (s *Server) download(url string) (io.ReadCloser, error) { type ServerResponse (line 35) | type ServerResponse struct method Write (line 42) | func (resp *ServerResponse) Write(w http.ResponseWriter, s RuntimeStat... method json (line 57) | func (resp *ServerResponse) json() ([]byte, error) { type ImageResponse (line 66) | type ImageResponse struct type OcrResponse (line 79) | type OcrResponse struct type UserError (line 84) | type UserError struct function NewServer (line 89) | func NewServer(c *config.Configuration, strategy imageprocessor.ImagePro... function NewAuthenticatedServer (line 99) | func NewAuthenticatedServer(c *config.Configuration, strategy imageproce... type fileExtractor (line 210) | type fileExtractor function parseThumbs (line 570) | func parseThumbs(r *http.Request) ([]*uploadedfile.ThumbFile, error) { function saveToTmp (line 622) | func saveToTmp(upload io.Reader) (string, error) { FILE: server/server_test.go function TestRequestingTheFrontPageGetsSomeHTML (line 22) | func TestRequestingTheFrontPageGetsSomeHTML(t *testing.T) { function TestPostingBase64FilePutsTheFileInStorageAndReturnsJSON (line 66) | func TestPostingBase64FilePutsTheFileInStorageAndReturnsJSON(t *testing.... function TestAuthentication (line 161) | func TestAuthentication(t *testing.T) { function TestGetFullWebpThumb (line 246) | func TestGetFullWebpThumb(t *testing.T) { function TestGetSizedWebpThumb (line 339) | func TestGetSizedWebpThumb(t *testing.T) { function TestTooLarge (line 444) | func TestTooLarge(t *testing.T) { function TestTooSmall (line 502) | func TestTooSmall(t *testing.T) { function TestGetTallThumb (line 560) | func TestGetTallThumb(t *testing.T) { FILE: server/stats.go type RuntimeStats (line 11) | type RuntimeStats interface type DiscardStats (line 21) | type DiscardStats struct method LogStartup (line 23) | func (d *DiscardStats) LogStartup() {} method Request (line 24) | func (d *DiscardStats) Request(url string) {} method ResponseTime (line 25) | func (d *DiscardStats) ResponseTime(elapsed time.Duration, url string) {} method Thumbnail (line 26) | func (d *DiscardStats) Thumbnail(name string) {} method Upload (line 27) | func (d *DiscardStats) Upload(source string) {} method Error (line 28) | func (d *DiscardStats) Error(code int) {} type DatadogStats (line 30) | type DatadogStats struct method LogStartup (line 60) | func (d *DatadogStats) LogStartup() { method Request (line 64) | func (d *DatadogStats) Request(url string) { method ResponseTime (line 70) | func (d *DatadogStats) ResponseTime(elapsed time.Duration, url string) { method Thumbnail (line 77) | func (d *DatadogStats) Thumbnail(name string) { method Upload (line 83) | func (d *DatadogStats) Upload(source string) { method Error (line 89) | func (d *DatadogStats) Error(code int) { function NewDatadogStats (line 34) | func NewDatadogStats(datadogHost string) (*DatadogStats, error) { FILE: uploadedfile/thumbfile.go type ThumbFile (line 20) | type ThumbFile struct method GetNoStore (line 66) | func (this *ThumbFile) GetNoStore() bool { method SetPath (line 70) | func (this *ThumbFile) SetPath(path string) error { method GetPath (line 80) | func (this *ThumbFile) GetPath() string { method GetOutputFormat (line 84) | func (this *ThumbFile) GetOutputFormat(original *UploadedFile) thumbTy... method ComputeWidth (line 92) | func (this *ThumbFile) ComputeWidth(original *UploadedFile) int { method ComputeHeight (line 107) | func (this *ThumbFile) ComputeHeight(original *UploadedFile) int { method ComputeCrop (line 122) | func (this *ThumbFile) ComputeCrop(original *UploadedFile) (int, int, ... method Process (line 152) | func (this *ThumbFile) Process(original *UploadedFile) error { method String (line 167) | func (this *ThumbFile) String() string { method processSquare (line 171) | func (this *ThumbFile) processSquare(original *UploadedFile) error { method processCircle (line 191) | func (this *ThumbFile) processCircle(original *UploadedFile) error { method processThumb (line 214) | func (this *ThumbFile) processThumb(original *UploadedFile) error { method processCustom (line 240) | func (this *ThumbFile) processCustom(original *UploadedFile) error { method processFull (line 277) | func (this *ThumbFile) processFull(original *UploadedFile) error { function NewThumbFile (line 40) | func NewThumbFile(width, maxWidth, height, maxHeight int, name, shape, p... FILE: uploadedfile/uploadedfile.go type UploadedFile (line 13) | type UploadedFile struct method GetFilename (line 59) | func (this *UploadedFile) GetFilename() string { method SetFilename (line 63) | func (this *UploadedFile) SetFilename(filename string) { method GetHash (line 67) | func (this *UploadedFile) GetHash() string { method SetHash (line 71) | func (this *UploadedFile) SetHash(hash string) { method GetOCRText (line 75) | func (this *UploadedFile) GetOCRText() string { method SetOCRText (line 79) | func (this *UploadedFile) SetOCRText(text string) { method SetPath (line 83) | func (this *UploadedFile) SetPath(path string) { method GetPath (line 90) | func (this *UploadedFile) GetPath() string { method GetMime (line 94) | func (this *UploadedFile) GetMime() string { method SetMime (line 98) | func (this *UploadedFile) SetMime(mime string) { method SetThumbs (line 102) | func (this *UploadedFile) SetThumbs(thumbs []*ThumbFile) { method GetThumbs (line 106) | func (this *UploadedFile) GetThumbs() []*ThumbFile { method FileSize (line 110) | func (this *UploadedFile) FileSize() (int64, error) { method Clean (line 126) | func (this *UploadedFile) Clean() { method Dimensions (line 134) | func (this *UploadedFile) Dimensions() (int, int, error) { method IsJpeg (line 159) | func (this *UploadedFile) IsJpeg() bool { method IsPng (line 163) | func (this *UploadedFile) IsPng() bool { method IsGif (line 167) | func (this *UploadedFile) IsGif() bool { function NewUploadedFile (line 29) | func NewUploadedFile(filename, path string, thumbs []*ThumbFile) (*Uploa... FILE: vendor/github.com/PagerDuty/godspeed/async.go type AsyncGodspeed (line 12) | type AsyncGodspeed struct method AddTag (line 49) | func (a *AsyncGodspeed) AddTag(tag string) []string { method AddTags (line 54) | func (a *AsyncGodspeed) AddTags(tags []string) []string { method SetNamespace (line 59) | func (a *AsyncGodspeed) SetNamespace(ns string) { method Event (line 66) | func (a *AsyncGodspeed) Event(title, body string, keys map[string]stri... method Send (line 74) | func (a *AsyncGodspeed) Send(stat, kind string, delta, sampleRate floa... method ServiceCheck (line 82) | func (a *AsyncGodspeed) ServiceCheck(name string, status int, fields m... method Count (line 93) | func (a *AsyncGodspeed) Count(stat string, count float64, tags []strin... method Incr (line 101) | func (a *AsyncGodspeed) Incr(stat string, tags []string, y *sync.WaitG... method Decr (line 112) | func (a *AsyncGodspeed) Decr(stat string, tags []string, y *sync.WaitG... method Gauge (line 120) | func (a *AsyncGodspeed) Gauge(stat string, value float64, tags []strin... method Histogram (line 128) | func (a *AsyncGodspeed) Histogram(stat string, value float64, tags []s... method Timing (line 136) | func (a *AsyncGodspeed) Timing(stat string, value float64, tags []stri... method Set (line 143) | func (a *AsyncGodspeed) Set(stat string, value float64, tags []string,... function NewAsync (line 27) | func NewAsync(host string, port int, autoTruncate bool) (a *AsyncGodspee... function NewDefaultAsync (line 43) | func NewDefaultAsync() (a *AsyncGodspeed, err error) { FILE: vendor/github.com/PagerDuty/godspeed/events.go function escapeEvent (line 16) | func escapeEvent(s string) string { function removePipes (line 20) | func removePipes(s string) string { method Event (line 28) | func (g *Godspeed) Event(title, text string, fields map[string]string, t... FILE: vendor/github.com/PagerDuty/godspeed/godspeed.go constant DefaultHost (line 25) | DefaultHost = "127.0.0.1" constant DefaultPort (line 28) | DefaultPort = 8125 constant MaxBytes (line 31) | MaxBytes = 8192 type Godspeed (line 37) | type Godspeed struct method AddTag (line 93) | func (g *Godspeed) AddTag(tag string) []string { method AddTags (line 109) | func (g *Godspeed) AddTags(tags []string) []string { method SetNamespace (line 124) | func (g *Godspeed) SetNamespace(ns string) { function New (line 61) | func New(host string, port int, autoTruncate bool) (g *Godspeed, err err... function NewDefault (line 86) | func NewDefault() (g *Godspeed, err error) { FILE: vendor/github.com/PagerDuty/godspeed/service_checks.go method ServiceCheck (line 27) | func (g *Godspeed) ServiceCheck(name string, status int, fields map[stri... FILE: vendor/github.com/PagerDuty/godspeed/shared.go function trimReserved (line 10) | func trimReserved(s string) string { function uniqueTags (line 15) | func uniqueTags(t []string) []string { FILE: vendor/github.com/PagerDuty/godspeed/stats.go method Send (line 19) | func (g *Godspeed) Send(stat, kind string, delta, sampleRate float64, ta... method Count (line 70) | func (g *Godspeed) Count(stat string, count float64, tags []string) error { method Incr (line 76) | func (g *Godspeed) Incr(stat string, tags []string) error { method Decr (line 82) | func (g *Godspeed) Decr(stat string, tags []string) error { method Gauge (line 87) | func (g *Godspeed) Gauge(stat string, value float64, tags []string) error { method Histogram (line 92) | func (g *Godspeed) Histogram(stat string, value float64, tags []string) ... method Timing (line 97) | func (g *Godspeed) Timing(stat string, value float64, tags []string) err... method Set (line 102) | func (g *Godspeed) Set(stat string, value float64, tags []string) error { FILE: vendor/github.com/bradfitz/http2/buffer.go type buffer (line 14) | type buffer struct method Read (line 29) | func (b *buffer) Read(p []byte) (n int, err error) { method Len (line 41) | func (b *buffer) Len() int { method Write (line 47) | func (b *buffer) Write(p []byte) (n int, err error) { method Close (line 71) | func (b *buffer) Close(err error) { FILE: vendor/github.com/bradfitz/http2/errors.go type ErrCode (line 11) | type ErrCode method String (line 47) | func (e ErrCode) String() string { constant ErrCodeNo (line 14) | ErrCodeNo ErrCode = 0x0 constant ErrCodeProtocol (line 15) | ErrCodeProtocol ErrCode = 0x1 constant ErrCodeInternal (line 16) | ErrCodeInternal ErrCode = 0x2 constant ErrCodeFlowControl (line 17) | ErrCodeFlowControl ErrCode = 0x3 constant ErrCodeSettingsTimeout (line 18) | ErrCodeSettingsTimeout ErrCode = 0x4 constant ErrCodeStreamClosed (line 19) | ErrCodeStreamClosed ErrCode = 0x5 constant ErrCodeFrameSize (line 20) | ErrCodeFrameSize ErrCode = 0x6 constant ErrCodeRefusedStream (line 21) | ErrCodeRefusedStream ErrCode = 0x7 constant ErrCodeCancel (line 22) | ErrCodeCancel ErrCode = 0x8 constant ErrCodeCompression (line 23) | ErrCodeCompression ErrCode = 0x9 constant ErrCodeConnect (line 24) | ErrCodeConnect ErrCode = 0xa constant ErrCodeEnhanceYourCalm (line 25) | ErrCodeEnhanceYourCalm ErrCode = 0xb constant ErrCodeInadequateSecurity (line 26) | ErrCodeInadequateSecurity ErrCode = 0xc constant ErrCodeHTTP11Required (line 27) | ErrCodeHTTP11Required ErrCode = 0xd type ConnectionError (line 56) | type ConnectionError method Error (line 58) | func (e ConnectionError) Error() string { return fmt.Sprintf("connecti... type StreamError (line 62) | type StreamError struct method Error (line 67) | func (e StreamError) Error() string { type goAwayFlowError (line 76) | type goAwayFlowError struct method Error (line 78) | func (goAwayFlowError) Error() string { return "connection exceeded fl... FILE: vendor/github.com/bradfitz/http2/flow.go type flow (line 11) | type flow struct method setConnFlow (line 22) | func (f *flow) setConnFlow(cf *flow) { f.conn = cf } method available (line 24) | func (f *flow) available() int32 { method take (line 32) | func (f *flow) take(n int32) { method add (line 44) | func (f *flow) add(n int32) bool { FILE: vendor/github.com/bradfitz/http2/frame.go constant frameHeaderLen (line 17) | frameHeaderLen = 9 type FrameType (line 23) | type FrameType method String (line 51) | func (t FrameType) String() string { constant FrameData (line 26) | FrameData FrameType = 0x0 constant FrameHeaders (line 27) | FrameHeaders FrameType = 0x1 constant FramePriority (line 28) | FramePriority FrameType = 0x2 constant FrameRSTStream (line 29) | FrameRSTStream FrameType = 0x3 constant FrameSettings (line 30) | FrameSettings FrameType = 0x4 constant FramePushPromise (line 31) | FramePushPromise FrameType = 0x5 constant FramePing (line 32) | FramePing FrameType = 0x6 constant FrameGoAway (line 33) | FrameGoAway FrameType = 0x7 constant FrameWindowUpdate (line 34) | FrameWindowUpdate FrameType = 0x8 constant FrameContinuation (line 35) | FrameContinuation FrameType = 0x9 type Flags (line 60) | type Flags method Has (line 63) | func (f Flags) Has(v Flags) bool { constant FlagDataEndStream (line 70) | FlagDataEndStream Flags = 0x1 constant FlagDataPadded (line 71) | FlagDataPadded Flags = 0x8 constant FlagHeadersEndStream (line 74) | FlagHeadersEndStream Flags = 0x1 constant FlagHeadersEndHeaders (line 75) | FlagHeadersEndHeaders Flags = 0x4 constant FlagHeadersPadded (line 76) | FlagHeadersPadded Flags = 0x8 constant FlagHeadersPriority (line 77) | FlagHeadersPriority Flags = 0x20 constant FlagSettingsAck (line 80) | FlagSettingsAck Flags = 0x1 constant FlagPingAck (line 83) | FlagPingAck Flags = 0x1 constant FlagContinuationEndHeaders (line 86) | FlagContinuationEndHeaders Flags = 0x4 constant FlagPushPromiseEndHeaders (line 88) | FlagPushPromiseEndHeaders Flags = 0x4 constant FlagPushPromisePadded (line 89) | FlagPushPromisePadded Flags = 0x8 type frameParser (line 121) | type frameParser function typeFrameParser (line 136) | func typeFrameParser(t FrameType) frameParser { type FrameHeader (line 146) | type FrameHeader struct method Header (line 170) | func (h FrameHeader) Header() FrameHeader { return h } method String (line 172) | func (h FrameHeader) String() string { method checkValid (line 202) | func (h *FrameHeader) checkValid() { method invalidate (line 208) | func (h *FrameHeader) invalidate() { h.valid = false } function ReadFrameHeader (line 221) | func ReadFrameHeader(r io.Reader) (FrameHeader, error) { function readFrameHeader (line 227) | func readFrameHeader(buf []byte, r io.Reader) (FrameHeader, error) { type Frame (line 246) | type Frame interface type Framer (line 256) | type Framer struct method startWrite (line 289) | func (f *Framer) startWrite(ftype FrameType, flags Flags, streamID uin... method endWrite (line 303) | func (f *Framer) endWrite() error { method writeByte (line 321) | func (f *Framer) writeByte(v byte) { f.wbuf = append(f.wbuf, v) } method writeBytes (line 322) | func (f *Framer) writeBytes(v []byte) { f.wbuf = append(f.wbuf, v...) } method writeUint16 (line 323) | func (f *Framer) writeUint16(v uint16) { f.wbuf = append(f.wbuf, byte(... method writeUint32 (line 324) | func (f *Framer) writeUint32(v uint32) { method SetMaxReadFrameSize (line 354) | func (fr *Framer) SetMaxReadFrameSize(v uint32) { method ReadFrame (line 369) | func (fr *Framer) ReadFrame() (Frame, error) { method WriteData (line 454) | func (f *Framer) WriteData(streamID uint32, endStream bool, data []byt... method WriteSettings (line 551) | func (f *Framer) WriteSettings(settings ...Setting) error { method WriteSettingsAck (line 564) | func (f *Framer) WriteSettingsAck() error { method WritePing (line 590) | func (f *Framer) WritePing(ack bool, data [8]byte) error { method WriteGoAway (line 633) | func (f *Framer) WriteGoAway(maxStreamID uint32, code ErrCode, debugDa... method WriteWindowUpdate (line 696) | func (f *Framer) WriteWindowUpdate(streamID, incr uint32) error { method WriteHeaders (line 806) | func (f *Framer) WriteHeaders(p HeadersFrameParam) error { method WritePriority (line 894) | func (f *Framer) WritePriority(streamID uint32, p PriorityParam) error { method WriteRSTStream (line 929) | func (f *Framer) WriteRSTStream(streamID uint32, code ErrCode) error { method WriteContinuation (line 966) | func (f *Framer) WriteContinuation(streamID uint32, endHeaders bool, h... method WritePushPromise (line 1061) | func (f *Framer) WritePushPromise(p PushPromiseParam) error { method WriteRawFrame (line 1087) | func (f *Framer) WriteRawFrame(t FrameType, flags Flags, streamID uint... constant minMaxFrameSize (line 329) | minMaxFrameSize = 1 << 14 constant maxFrameSize (line 330) | maxFrameSize = 1<<24 - 1 function NewFramer (line 334) | func NewFramer(w io.Writer, r io.Reader) *Framer { type DataFrame (line 395) | type DataFrame struct method StreamEnded (line 400) | func (f *DataFrame) StreamEnded() bool { method Data (line 408) | func (f *DataFrame) Data() []byte { function parseDataFrame (line 413) | func parseDataFrame(fh FrameHeader, payload []byte) (Frame, error) { function validStreamID (line 446) | func validStreamID(streamID uint32) bool { type SettingsFrame (line 473) | type SettingsFrame struct method IsAck (line 512) | func (f *SettingsFrame) IsAck() bool { method Value (line 516) | func (f *SettingsFrame) Value(s SettingID) (v uint32, ok bool) { method ForeachSetting (line 531) | func (f *SettingsFrame) ForeachSetting(fn func(Setting) error) error { function parseSettingsFrame (line 478) | func parseSettingsFrame(fh FrameHeader, p []byte) (Frame, error) { type PingFrame (line 573) | type PingFrame struct function parsePingFrame (line 578) | func parsePingFrame(fh FrameHeader, payload []byte) (Frame, error) { type GoAwayFrame (line 602) | type GoAwayFrame struct method DebugData (line 613) | func (f *GoAwayFrame) DebugData() []byte { function parseGoAwayFrame (line 618) | func parseGoAwayFrame(fh FrameHeader, p []byte) (Frame, error) { type UnknownFrame (line 643) | type UnknownFrame struct method Payload (line 653) | func (f *UnknownFrame) Payload() []byte { function parseUnknownFrame (line 658) | func parseUnknownFrame(fh FrameHeader, p []byte) (Frame, error) { type WindowUpdateFrame (line 664) | type WindowUpdateFrame struct function parseWindowUpdateFrame (line 669) | func parseWindowUpdateFrame(fh FrameHeader, p []byte) (Frame, error) { type HeadersFrame (line 708) | type HeadersFrame struct method HeaderBlockFragment (line 717) | func (f *HeadersFrame) HeaderBlockFragment() []byte { method HeadersEnded (line 722) | func (f *HeadersFrame) HeadersEnded() bool { method StreamEnded (line 726) | func (f *HeadersFrame) StreamEnded() bool { method HasPriority (line 730) | func (f *HeadersFrame) HasPriority() bool { function parseHeadersFrame (line 734) | func parseHeadersFrame(fh FrameHeader, p []byte) (_ Frame, err error) { type HeadersFrameParam (line 772) | type HeadersFrameParam struct type PriorityFrame (line 845) | type PriorityFrame struct type PriorityParam (line 851) | type PriorityParam struct method IsZero (line 867) | func (p PriorityParam) IsZero() bool { function parsePriorityFrame (line 871) | func parsePriorityFrame(fh FrameHeader, payload []byte) (Frame, error) { type RSTStreamFrame (line 910) | type RSTStreamFrame struct function parseRSTStreamFrame (line 915) | func parseRSTStreamFrame(fh FrameHeader, p []byte) (Frame, error) { type ContinuationFrame (line 940) | type ContinuationFrame struct method StreamEnded (line 949) | func (f *ContinuationFrame) StreamEnded() bool { method HeaderBlockFragment (line 953) | func (f *ContinuationFrame) HeaderBlockFragment() []byte { method HeadersEnded (line 958) | func (f *ContinuationFrame) HeadersEnded() bool { function parseContinuationFrame (line 945) | func parseContinuationFrame(fh FrameHeader, p []byte) (Frame, error) { type PushPromiseFrame (line 981) | type PushPromiseFrame struct method HeaderBlockFragment (line 987) | func (f *PushPromiseFrame) HeaderBlockFragment() []byte { method HeadersEnded (line 992) | func (f *PushPromiseFrame) HeadersEnded() bool { function parsePushPromise (line 996) | func parsePushPromise(fh FrameHeader, p []byte) (_ Frame, err error) { type PushPromiseParam (line 1033) | type PushPromiseParam struct function readByte (line 1093) | func readByte(p []byte) (remain []byte, b byte, err error) { function readUint32 (line 1100) | func readUint32(p []byte) (remain []byte, v uint32, err error) { type streamEnder (line 1107) | type streamEnder interface type headersEnder (line 1111) | type headersEnder interface FILE: vendor/github.com/bradfitz/http2/gotrack.go type goroutineLock (line 25) | type goroutineLock method check (line 34) | func (g goroutineLock) check() { method checkNotOn (line 43) | func (g goroutineLock) checkNotOn() { function newGoroutineLock (line 27) | func newGoroutineLock() goroutineLock { function curGoroutineID (line 54) | func curGoroutineID() uint64 { function parseUintBytes (line 81) | func parseUintBytes(s []byte, base int, bitSize int) (n uint64, err erro... function cutoff64 (line 168) | func cutoff64(base int) uint64 { FILE: vendor/github.com/bradfitz/http2/h2i/h2i.go type command (line 50) | type command struct function usage (line 78) | func usage() { function withPort (line 85) | func withPort(host string) string { type h2i (line 93) | type h2i struct method Main (line 135) | func (app *h2i) Main() error { method logf (line 240) | func (app *h2i) logf(format string, args ...interface{}) { method readConsole (line 244) | func (app *h2i) readConsole() error { method cmdQuit (line 292) | func (a *h2i) cmdQuit(args []string) error { method cmdSettings (line 300) | func (a *h2i) cmdSettings(args []string) error { method cmdPing (line 350) | func (app *h2i) cmdPing(args []string) error { method cmdHeaders (line 364) | func (app *h2i) cmdHeaders(args []string) error { method readFrames (line 409) | func (app *h2i) readFrames() error { method onNewHeaderField (line 448) | func (app *h2i) onNewHeaderField(f hpack.HeaderField) { method encodeHeaders (line 455) | func (app *h2i) encodeHeaders(req *http.Request) []byte { method writeHeader (line 486) | func (app *h2i) writeHeader(name, value string) { function main (line 109) | func main() { function lookupCommand (line 272) | func lookupCommand(prefix string) (name string, c command, ok bool) { function settingByName (line 334) | func settingByName(name string) (http2.SettingID, bool) { FILE: vendor/github.com/bradfitz/http2/headermap.go function init (line 20) | func init() { function lowerHeader (line 75) | func lowerHeader(v string) string { FILE: vendor/github.com/bradfitz/http2/hpack/encode.go constant uint32Max (line 13) | uint32Max = ^uint32(0) constant initialHeaderTableSize (line 14) | initialHeaderTableSize = 4096 type Encoder (line 17) | type Encoder struct method WriteField (line 50) | func (e *Encoder) WriteField(f HeaderField) error { method searchTable (line 91) | func (e *Encoder) searchTable(f HeaderField) (i uint64, nameValueMatch... method SetMaxDynamicTableSize (line 120) | func (e *Encoder) SetMaxDynamicTableSize(v uint32) { method SetMaxDynamicTableSizeLimit (line 138) | func (e *Encoder) SetMaxDynamicTableSizeLimit(v uint32) { method shouldIndex (line 147) | func (e *Encoder) shouldIndex(f HeaderField) bool { function NewEncoder (line 36) | func NewEncoder(w io.Writer) *Encoder { function appendIndexed (line 153) | func appendIndexed(dst []byte, i uint64) []byte { function appendNewName (line 167) | func appendNewName(dst []byte, f HeaderField, indexing bool) []byte { function appendIndexedName (line 180) | func appendIndexedName(dst []byte, f HeaderField, i uint64, indexing boo... function appendTableSize (line 195) | func appendTableSize(dst []byte, v uint32) []byte { function appendVarInt (line 207) | func appendVarInt(dst []byte, n byte, i uint64) []byte { function appendHpackString (line 225) | func appendHpackString(dst []byte, s string) []byte { function encodeTypeByte (line 244) | func encodeTypeByte(indexing, sensitive bool) byte { FILE: vendor/github.com/bradfitz/http2/hpack/hpack.go type DecodingError (line 19) | type DecodingError struct method Error (line 23) | func (de DecodingError) Error() string { type InvalidIndexError (line 29) | type InvalidIndexError method Error (line 31) | func (e InvalidIndexError) Error() string { type HeaderField (line 37) | type HeaderField struct method size (line 45) | func (hf *HeaderField) size() uint32 { type Decoder (line 63) | type Decoder struct method SetMaxDynamicTableSize (line 87) | func (d *Decoder) SetMaxDynamicTableSize(v uint32) { method SetAllowedMaxDynamicTableSize (line 94) | func (d *Decoder) SetAllowedMaxDynamicTableSize(v uint32) { method maxTableIndex (line 187) | func (d *Decoder) maxTableIndex() int { method at (line 191) | func (d *Decoder) at(i uint64) (hf HeaderField, ok bool) { method DecodeFull (line 209) | func (d *Decoder) DecodeFull(p []byte) ([]HeaderField, error) { method Close (line 223) | func (d *Decoder) Close() error { method Write (line 231) | func (d *Decoder) Write(p []byte) (n int, err error) { method parseHeaderFieldRepr (line 282) | func (d *Decoder) parseHeaderFieldRepr() error { method parseFieldIndexed (line 316) | func (d *Decoder) parseFieldIndexed() error { method parseFieldLiteral (line 332) | func (d *Decoder) parseFieldLiteral(n uint8, it indexType) error { method parseDynamicTableSizeUpdate (line 366) | func (d *Decoder) parseDynamicTableSizeUpdate() error { function NewDecoder (line 75) | func NewDecoder(maxSize uint32, emitFunc func(f HeaderField)) *Decoder { type dynamicTable (line 98) | type dynamicTable struct method setMaxSize (line 109) | func (dt *dynamicTable) setMaxSize(v uint32) { method add (line 123) | func (dt *dynamicTable) add(f HeaderField) { method evict (line 130) | func (dt *dynamicTable) evict() { method search (line 164) | func (dt *dynamicTable) search(f HeaderField) (i uint64, nameValueMatc... function constantTimeStringCompare (line 146) | func constantTimeStringCompare(a, b string) bool { type indexType (line 267) | type indexType method indexed (line 275) | func (v indexType) indexed() bool { return v == indexedTrue } method sensitive (line 276) | func (v indexType) sensitive() bool { return v == indexedNever } constant indexedTrue (line 270) | indexedTrue indexType = iota constant indexedFalse (line 271) | indexedFalse constant indexedNever (line 272) | indexedNever function readVarInt (line 390) | func readVarInt(n byte, p []byte) (i uint64, remain []byte, err error) { function readString (line 423) | func readString(p []byte) (s string, remain []byte, err error) { FILE: vendor/github.com/bradfitz/http2/hpack/huffman.go function HuffmanDecode (line 21) | func HuffmanDecode(w io.Writer, v []byte) (int, error) { type node (line 54) | type node struct function newInternalNode (line 63) | func newInternalNode() *node { function init (line 69) | func init() { function addDecoderNode (line 78) | func addDecoderNode(sym byte, code uint32, codeLen uint8) { function AppendHuffmanString (line 97) | func AppendHuffmanString(dst []byte, s string) []byte { function HuffmanEncodeLength (line 121) | func HuffmanEncodeLength(s string) uint64 { function appendByteToHuffmanCode (line 133) | func appendByteToHuffmanCode(dst []byte, rembits uint8, c byte) ([]byte,... FILE: vendor/github.com/bradfitz/http2/hpack/tables.go function pair (line 8) | func pair(name, value string) HeaderField { FILE: vendor/github.com/bradfitz/http2/http2.go constant ClientPreface (line 33) | ClientPreface = "PRI * HTTP/2.0\r\n\r\nSM\r\n\r\n" constant initialMaxFrameSize (line 37) | initialMaxFrameSize = 16384 constant NextProtoTLS (line 41) | NextProtoTLS = "h2" constant initialHeaderTableSize (line 44) | initialHeaderTableSize = 4096 constant initialWindowSize (line 46) | initialWindowSize = 65535 constant defaultMaxReadFrameSize (line 48) | defaultMaxReadFrameSize = 1 << 20 type streamState (line 55) | type streamState method String (line 77) | func (st streamState) String() string { constant stateIdle (line 58) | stateIdle streamState = iota constant stateOpen (line 59) | stateOpen constant stateHalfClosedLocal (line 60) | stateHalfClosedLocal constant stateHalfClosedRemote (line 61) | stateHalfClosedRemote constant stateResvLocal (line 62) | stateResvLocal constant stateResvRemote (line 63) | stateResvRemote constant stateClosed (line 64) | stateClosed type Setting (line 82) | type Setting struct method String (line 91) | func (s Setting) String() string { method Valid (line 96) | func (s Setting) Valid() error { type SettingID (line 117) | type SettingID method String (line 137) | func (s SettingID) String() string { constant SettingHeaderTableSize (line 120) | SettingHeaderTableSize SettingID = 0x1 constant SettingEnablePush (line 121) | SettingEnablePush SettingID = 0x2 constant SettingMaxConcurrentStreams (line 122) | SettingMaxConcurrentStreams SettingID = 0x3 constant SettingInitialWindowSize (line 123) | SettingInitialWindowSize SettingID = 0x4 constant SettingMaxFrameSize (line 124) | SettingMaxFrameSize SettingID = 0x5 constant SettingMaxHeaderListSize (line 125) | SettingMaxHeaderListSize SettingID = 0x6 function validHeader (line 144) | func validHeader(v string) bool { function init (line 163) | func init() { function httpCodeString (line 171) | func httpCodeString(code int) string { type stringWriter (line 179) | type stringWriter interface type gate (line 184) | type gate method Done (line 186) | func (g gate) Done() { g <- struct{}{} } method Wait (line 187) | func (g gate) Wait() { <-g } type closeWaiter (line 190) | type closeWaiter method Init (line 196) | func (cw *closeWaiter) Init() { method Close (line 201) | func (cw closeWaiter) Close() { method Wait (line 206) | func (cw closeWaiter) Wait() { type bufferedWriter (line 213) | type bufferedWriter struct method Write (line 230) | func (w *bufferedWriter) Write(p []byte) (n int, err error) { method Flush (line 239) | func (w *bufferedWriter) Flush() error { function newBufferedWriter (line 218) | func newBufferedWriter(w io.Writer) *bufferedWriter { FILE: vendor/github.com/bradfitz/http2/pipe.go type pipe (line 12) | type pipe struct method Read (line 20) | func (r *pipe) Read(p []byte) (n int, err error) { method Write (line 31) | func (w *pipe) Write(p []byte) (n int, err error) { method Close (line 38) | func (c *pipe) Close(err error) { FILE: vendor/github.com/bradfitz/http2/server.go constant prefaceTimeout (line 62) | prefaceTimeout = 10 * time.Second constant firstSettingsTimeout (line 63) | firstSettingsTimeout = 2 * time.Second constant handlerChunkWriteSize (line 64) | handlerChunkWriteSize = 4 << 10 constant defaultMaxStreams (line 65) | defaultMaxStreams = 250 type Server (line 91) | type Server struct method maxReadFrameSize (line 117) | func (s *Server) maxReadFrameSize() uint32 { method maxConcurrentStreams (line 124) | func (s *Server) maxConcurrentStreams() uint32 { method handleConn (line 195) | func (srv *Server) handleConn(hs *http.Server, c net.Conn, h http.Hand... function ConfigureServer (line 136) | func ConfigureServer(s *http.Server, conf *Server) { function isBadCipher (line 281) | func isBadCipher(cipher uint16) bool { type frameAndGate (line 317) | type frameAndGate struct type serverConn (line 322) | type serverConn struct method rejectConn (line 304) | func (sc *serverConn) rejectConn(err ErrCode, debug string) { method Framer (line 412) | func (sc *serverConn) Framer() *Framer { return sc.framer } method CloseConn (line 413) | func (sc *serverConn) CloseConn() error { return sc.conn.Close() } method Flush (line 414) | func (sc *serverConn) Flush() error { return sc.bw.Flush() } method HeaderEncoder (line 415) | func (sc *serverConn) HeaderEncoder() (*hpack.Encoder, *bytes.Buffer) { method state (line 419) | func (sc *serverConn) state(streamID uint32) (streamState, *stream) { method vlogf (line 437) | func (sc *serverConn) vlogf(format string, args ...interface{}) { method logf (line 443) | func (sc *serverConn) logf(format string, args ...interface{}) { method condlogf (line 451) | func (sc *serverConn) condlogf(err error, format string, args ...inter... method onNewHeaderField (line 464) | func (sc *serverConn) onNewHeaderField(f hpack.HeaderField) { method canonicalHeader (line 515) | func (sc *serverConn) canonicalHeader(v string) string { method readFrames (line 535) | func (sc *serverConn) readFrames() { method writeFrameAsync (line 558) | func (sc *serverConn) writeFrameAsync(wm frameWriteMsg) { method closeAllStreamsOnConnClose (line 570) | func (sc *serverConn) closeAllStreamsOnConnClose() { method stopShutdownTimer (line 577) | func (sc *serverConn) stopShutdownTimer() { method notePanic (line 584) | func (sc *serverConn) notePanic() { method serve (line 598) | func (sc *serverConn) serve() { method readPreface (line 666) | func (sc *serverConn) readPreface() error { method writeDataFromHandler (line 704) | func (sc *serverConn) writeDataFromHandler(stream *stream, writeData *... method writeFrameFromHandler (line 727) | func (sc *serverConn) writeFrameFromHandler(wm frameWriteMsg) { method writeFrame (line 744) | func (sc *serverConn) writeFrame(wm frameWriteMsg) { method startFrameWrite (line 753) | func (sc *serverConn) startFrameWrite(wm frameWriteMsg) { method scheduleFrameWrite (line 812) | func (sc *serverConn) scheduleFrameWrite() { method goAway (line 845) | func (sc *serverConn) goAway(code ErrCode) { method shutDownIn (line 862) | func (sc *serverConn) shutDownIn(d time.Duration) { method resetStream (line 868) | func (sc *serverConn) resetStream(se StreamError) { method curHeaderStreamID (line 880) | func (sc *serverConn) curHeaderStreamID() uint32 { method processFrameFromReader (line 892) | func (sc *serverConn) processFrameFromReader(fg frameAndGate, fgValid ... method processFrame (line 947) | func (sc *serverConn) processFrame(f Frame) error { method processPing (line 993) | func (sc *serverConn) processPing(f *PingFrame) error { method processWindowUpdate (line 1012) | func (sc *serverConn) processWindowUpdate(f *WindowUpdateFrame) error { method processResetStream (line 1037) | func (sc *serverConn) processResetStream(f *RSTStreamFrame) error { method closeStream (line 1056) | func (sc *serverConn) closeStream(st *stream, err error) { method processSettings (line 1071) | func (sc *serverConn) processSettings(f *SettingsFrame) error { method processSetting (line 1091) | func (sc *serverConn) processSetting(s Setting) error { method processSettingInitialWindowSize (line 1119) | func (sc *serverConn) processSettingInitialWindowSize(val uint32) error { method processData (line 1147) | func (sc *serverConn) processData(f *DataFrame) error { method processHeaders (line 1199) | func (sc *serverConn) processHeaders(f *HeadersFrame) error { method processContinuation (line 1246) | func (sc *serverConn) processContinuation(f *ContinuationFrame) error { method processHeaderBlockFragment (line 1255) | func (sc *serverConn) processHeaderBlockFragment(st *stream, frag []by... method processPriority (line 1298) | func (sc *serverConn) processPriority(f *PriorityFrame) error { method resetPendingRequest (line 1342) | func (sc *serverConn) resetPendingRequest() { method newWriterAndRequest (line 1347) | func (sc *serverConn) newWriterAndRequest() (*responseWriter, *http.Re... method runHandler (line 1430) | func (sc *serverConn) runHandler(rw *responseWriter, req *http.Request) { method writeHeaders (line 1438) | func (sc *serverConn) writeHeaders(st *stream, headerData *writeResHea... method write100ContinueHeaders (line 1465) | func (sc *serverConn) write100ContinueHeaders(st *stream) { method noteBodyReadFromHandler (line 1482) | func (sc *serverConn) noteBodyReadFromHandler(st *stream, n int) { method noteBodyRead (line 1487) | func (sc *serverConn) noteBodyRead(st *stream, n int) { method sendWindowUpdate (line 1498) | func (sc *serverConn) sendWindowUpdate(st *stream, n int) { method sendWindowUpdate32 (line 1514) | func (sc *serverConn) sendWindowUpdate32(st *stream, n int32) { type requestParam (line 376) | type requestParam struct type stream (line 394) | type stream struct function adjustStreamPriority (line 1303) | func adjustStreamPriority(streams map[uint32]*stream, streamID uint32, p... type bodyReadMsg (line 1474) | type bodyReadMsg struct type requestBody (line 1541) | type requestBody struct method Close (line 1549) | func (b *requestBody) Close() error { method Read (line 1557) | func (b *requestBody) Read(p []byte) (n int, err error) { type responseWriter (line 1578) | type responseWriter struct method Flush (line 1662) | func (w *responseWriter) Flush() { method CloseNotify (line 1681) | func (w *responseWriter) CloseNotify() <-chan bool { method Header (line 1700) | func (w *responseWriter) Header() http.Header { method WriteHeader (line 1711) | func (w *responseWriter) WriteHeader(code int) { method Write (line 1747) | func (w *responseWriter) Write(p []byte) (n int, err error) { method WriteString (line 1751) | func (w *responseWriter) WriteString(s string) (n int, err error) { method write (line 1756) | func (w *responseWriter) write(lenData int, dataB []byte, dataS string... method handlerDone (line 1771) | func (w *responseWriter) handlerDone() { type responseWriterState (line 1589) | type responseWriterState struct method writeChunk (line 1623) | func (rws *responseWriterState) writeChunk(p []byte) (n int, err error) { method writeHeader (line 1719) | func (rws *responseWriterState) writeHeader(code int) { type chunkWriter (line 1613) | type chunkWriter struct method Write (line 1615) | func (cw chunkWriter) Write(p []byte) (n int, err error) { return cw.r... function cloneHeader (line 1729) | func cloneHeader(h http.Header) http.Header { FILE: vendor/github.com/bradfitz/http2/transport.go type Transport (line 25) | type Transport struct method RoundTrip (line 84) | func (t *Transport) RoundTrip(req *http.Request) (*http.Response, erro... method CloseIdleConnections (line 117) | func (t *Transport) CloseIdleConnections() { method removeClientConn (line 134) | func (t *Transport) removeClientConn(cc *clientConn) { method getClientConn (line 161) | func (t *Transport) getClientConn(host, port string) (*clientConn, err... method newClientConn (line 183) | func (t *Transport) newClientConn(host, port, key string) (*clientConn... type clientConn (line 35) | type clientConn struct method setGoAway (line 271) | func (cc *clientConn) setGoAway(f *GoAwayFrame) { method canTakeNewRequest (line 277) | func (cc *clientConn) canTakeNewRequest() bool { method closeIfIdle (line 285) | func (cc *clientConn) closeIfIdle() { method roundTrip (line 298) | func (cc *clientConn) roundTrip(req *http.Request) (*http.Response, er... method encodeHeaders (line 355) | func (cc *clientConn) encodeHeaders(req *http.Request) []byte { method writeHeader (line 386) | func (cc *clientConn) writeHeader(name, value string) { method newStream (line 397) | func (cc *clientConn) newStream() *clientStream { method streamByID (line 407) | func (cc *clientConn) streamByID(id uint32, andRemove bool) *clientStr... method readLoop (line 418) | func (cc *clientConn) readLoop() { method onNewHeaderField (line 534) | func (cc *clientConn) onNewHeaderField(f hpack.HeaderField) { type clientStream (line 63) | type clientStream struct type stickyErrWriter (line 70) | type stickyErrWriter struct method Write (line 75) | func (sew stickyErrWriter) Write(p []byte) (n int, err error) { function shouldRetryRequest (line 129) | func shouldRetryRequest(err error) bool { function filterOutClientConn (line 151) | func filterOutClientConn(in []*clientConn, exclude *clientConn) []*clien... type resAndError (line 391) | type resAndError struct FILE: vendor/github.com/bradfitz/http2/write.go type writeFramer (line 20) | type writeFramer interface type writeContext (line 30) | type writeContext interface function endsStream (line 41) | func endsStream(w writeFramer) bool { type flushFrameWriter (line 51) | type flushFrameWriter struct method writeFrame (line 53) | func (flushFrameWriter) writeFrame(ctx writeContext) error { type writeSettings (line 57) | type writeSettings method writeFrame (line 59) | func (s writeSettings) writeFrame(ctx writeContext) error { type writeGoAway (line 63) | type writeGoAway struct method writeFrame (line 68) | func (p *writeGoAway) writeFrame(ctx writeContext) error { type writeData (line 78) | type writeData struct method String (line 84) | func (w *writeData) String() string { method writeFrame (line 88) | func (w *writeData) writeFrame(ctx writeContext) error { method writeFrame (line 92) | func (se StreamError) writeFrame(ctx writeContext) error { type writePingAck (line 96) | type writePingAck struct method writeFrame (line 98) | func (w writePingAck) writeFrame(ctx writeContext) error { type writeSettingsAck (line 102) | type writeSettingsAck struct method writeFrame (line 104) | func (writeSettingsAck) writeFrame(ctx writeContext) error { type writeResHeaders (line 110) | type writeResHeaders struct method writeFrame (line 120) | func (w *writeResHeaders) writeFrame(ctx writeContext) error { type write100ContinueHeadersFrame (line 181) | type write100ContinueHeadersFrame struct method writeFrame (line 185) | func (w write100ContinueHeadersFrame) writeFrame(ctx writeContext) err... type writeWindowUpdate (line 197) | type writeWindowUpdate struct method writeFrame (line 202) | func (wu writeWindowUpdate) writeFrame(ctx writeContext) error { FILE: vendor/github.com/bradfitz/http2/writesched.go type frameWriteMsg (line 13) | type frameWriteMsg struct method String (line 28) | func (wm frameWriteMsg) String() string { type writeScheduler (line 44) | type writeScheduler struct method putEmptyQueue (line 67) | func (ws *writeScheduler) putEmptyQueue(q *writeQueue) { method getEmptyQueue (line 74) | func (ws *writeScheduler) getEmptyQueue() *writeQueue { method empty (line 84) | func (ws *writeScheduler) empty() bool { return ws.zero.empty() && len... method add (line 86) | func (ws *writeScheduler) add(wm frameWriteMsg) { method streamQueue (line 95) | func (ws *writeScheduler) streamQueue(streamID uint32) *writeQueue { method take (line 110) | func (ws *writeScheduler) take() (wm frameWriteMsg, ok bool) { method zeroCanSend (line 153) | func (ws *writeScheduler) zeroCanSend() { method streamWritableBytes (line 164) | func (ws *writeScheduler) streamWritableBytes(q *writeQueue) int32 { method takeFrom (line 183) | func (ws *writeScheduler) takeFrom(id uint32, q *writeQueue) (wm frame... method forgetStream (line 233) | func (ws *writeScheduler) forgetStream(id uint32) { type writeQueue (line 248) | type writeQueue struct method streamID (line 253) | func (q *writeQueue) streamID() uint32 { return q.s[0].stream.id } method empty (line 255) | func (q *writeQueue) empty() bool { return len(q.s) == 0 } method push (line 257) | func (q *writeQueue) push(wm frameWriteMsg) { method head (line 262) | func (q *writeQueue) head() frameWriteMsg { method shift (line 269) | func (q *writeQueue) shift() frameWriteMsg { method firstIsNoCost (line 281) | func (q *writeQueue) firstIsNoCost() bool { FILE: vendor/github.com/golang/glog/glog.go type severity (line 95) | type severity method get (line 118) | func (s *severity) get() severity { method set (line 123) | func (s *severity) set(val severity) { method String (line 128) | func (s *severity) String() string { method Get (line 133) | func (s *severity) Get() interface{} { method Set (line 138) | func (s *severity) Set(value string) error { constant infoLog (line 101) | infoLog severity = iota constant warningLog (line 102) | warningLog constant errorLog (line 103) | errorLog constant fatalLog (line 104) | fatalLog constant numSeverity (line 105) | numSeverity = 4 constant severityChar (line 108) | severityChar = "IWEF" function severityByName (line 154) | func severityByName(s string) (severity, bool) { type OutputStats (line 165) | type OutputStats struct method Lines (line 171) | func (s *OutputStats) Lines() int64 { method Bytes (line 176) | func (s *OutputStats) Bytes() int64 { type Level (line 204) | type Level method get (line 207) | func (l *Level) get() Level { method set (line 212) | func (l *Level) set(val Level) { method String (line 217) | func (l *Level) String() string { method Get (line 222) | func (l *Level) Get() interface{} { method Set (line 227) | func (l *Level) Set(value string) error { type moduleSpec (line 239) | type moduleSpec struct method String (line 261) | func (m *moduleSpec) String() string { method Get (line 277) | func (m *moduleSpec) Get() interface{} { method Set (line 284) | func (m *moduleSpec) Set(value string) error { type modulePat (line 245) | type modulePat struct method match (line 253) | func (m *modulePat) match(file string) bool { function isLiteral (line 317) | func isLiteral(pattern string) bool { type traceLocation (line 322) | type traceLocation struct method isSet (line 329) | func (t *traceLocation) isSet() bool { method match (line 336) | func (t *traceLocation) match(file string, line int) bool { method String (line 346) | func (t *traceLocation) String() string { method Get (line 355) | func (t *traceLocation) Get() interface{} { method Set (line 363) | func (t *traceLocation) Set(value string) error { type flushSyncWriter (line 392) | type flushSyncWriter interface function init (line 398) | func init() { function Flush (line 414) | func Flush() { type loggingT (line 419) | type loggingT struct method setVState (line 469) | func (l *loggingT) setVState(verbosity Level, filter []modulePat, setF... method getBuffer (line 488) | func (l *loggingT) getBuffer() *buffer { method putBuffer (line 505) | func (l *loggingT) putBuffer(b *buffer) { method header (line 535) | func (l *loggingT) header(s severity, depth int) (*buffer, string, int) { method formatHeader (line 550) | func (l *loggingT) formatHeader(s severity, file string, line int) *bu... method println (line 630) | func (l *loggingT) println(s severity, args ...interface{}) { method print (line 636) | func (l *loggingT) print(s severity, args ...interface{}) { method printDepth (line 640) | func (l *loggingT) printDepth(s severity, depth int, args ...interface... method printf (line 649) | func (l *loggingT) printf(s severity, format string, args ...interface... method printWithFileLine (line 661) | func (l *loggingT) printWithFileLine(s severity, file string, line int... method output (line 671) | func (l *loggingT) output(s severity, buf *buffer, file string, line i... method exit (line 784) | func (l *loggingT) exit(err error) { method createFiles (line 858) | func (l *loggingT) createFiles(sev severity) error { method flushDaemon (line 878) | func (l *loggingT) flushDaemon() { method lockAndFlushAll (line 885) | func (l *loggingT) lockAndFlushAll() { method flushAll (line 893) | func (l *loggingT) flushAll() { method setV (line 958) | func (l *loggingT) setV(pc uintptr) Level { type buffer (line 459) | type buffer struct method twoDigits (line 594) | func (buf *buffer) twoDigits(i, d int) { method nDigits (line 603) | func (buf *buffer) nDigits(n, i, d int, pad byte) { method someDigits (line 615) | func (buf *buffer) someDigits(i, d int) int { constant digits (line 591) | digits = "0123456789" function timeoutFlush (line 743) | func timeoutFlush(timeout time.Duration) { function stacks (line 757) | func stacks(all bool) []byte { type syncBuffer (line 799) | type syncBuffer struct method Sync (line 807) | func (sb *syncBuffer) Sync() error { method Write (line 811) | func (sb *syncBuffer) Write(p []byte) (n int, err error) { method rotateFile (line 826) | func (sb *syncBuffer) rotateFile(now time.Time) error { constant bufferSize (line 854) | bufferSize = 256 * 1024 constant flushInterval (line 875) | flushInterval = 30 * time.Second function CopyStandardLogTo (line 911) | func CopyStandardLogTo(name string) { type logBridge (line 924) | type logBridge method Write (line 928) | func (lb logBridge) Write(b []byte) (n int, err error) { type Verbose (line 980) | type Verbose method Info (line 1027) | func (v Verbose) Info(args ...interface{}) { method Infoln (line 1035) | func (v Verbose) Infoln(args ...interface{}) { method Infof (line 1043) | func (v Verbose) Infof(format string, args ...interface{}) { function V (line 996) | func V(level Level) Verbose { function Info (line 1051) | func Info(args ...interface{}) { function InfoDepth (line 1057) | func InfoDepth(depth int, args ...interface{}) { function Infoln (line 1063) | func Infoln(args ...interface{}) { function Infof (line 1069) | func Infof(format string, args ...interface{}) { function Warning (line 1075) | func Warning(args ...interface{}) { function WarningDepth (line 1081) | func WarningDepth(depth int, args ...interface{}) { function Warningln (line 1087) | func Warningln(args ...interface{}) { function Warningf (line 1093) | func Warningf(format string, args ...interface{}) { function Error (line 1099) | func Error(args ...interface{}) { function ErrorDepth (line 1105) | func ErrorDepth(depth int, args ...interface{}) { function Errorln (line 1111) | func Errorln(args ...interface{}) { function Errorf (line 1117) | func Errorf(format string, args ...interface{}) { function Fatal (line 1124) | func Fatal(args ...interface{}) { function FatalDepth (line 1130) | func FatalDepth(depth int, args ...interface{}) { function Fatalln (line 1137) | func Fatalln(args ...interface{}) { function Fatalf (line 1144) | func Fatalf(format string, args ...interface{}) { function Exit (line 1154) | func Exit(args ...interface{}) { function ExitDepth (line 1161) | func ExitDepth(depth int, args ...interface{}) { function Exitln (line 1167) | func Exitln(args ...interface{}) { function Exitf (line 1174) | func Exitf(format string, args ...interface{}) { FILE: vendor/github.com/golang/glog/glog_file.go function createLogDirs (line 43) | func createLogDirs() { function init (line 57) | func init() { function shortHostname (line 74) | func shortHostname(hostname string) string { function logName (line 83) | func logName(tag string, t time.Time) (name, link string) { function create (line 105) | func create(tag string, t time.Time) (f *os.File, filename string, err e... FILE: vendor/github.com/golang/protobuf/proto/clone.go function Clone (line 44) | func Clone(pb Message) Message { function Merge (line 60) | func Merge(dst, src Message) { function mergeStruct (line 77) | func mergeStruct(out, in reflect.Value) { function mergeAny (line 101) | func mergeAny(out, in reflect.Value) { function mergeExtension (line 182) | func mergeExtension(out, in map[int32]Extension) { FILE: vendor/github.com/golang/protobuf/proto/decode.go function DecodeVarint (line 59) | func DecodeVarint(buf []byte) (x uint64, n int) { method DecodeVarint (line 81) | func (p *Buffer) DecodeVarint() (x uint64, err error) { method DecodeFixed64 (line 109) | func (p *Buffer) DecodeFixed64() (x uint64, err error) { method DecodeFixed32 (line 132) | func (p *Buffer) DecodeFixed32() (x uint64, err error) { method DecodeZigzag64 (line 151) | func (p *Buffer) DecodeZigzag64() (x uint64, err error) { method DecodeZigzag32 (line 163) | func (p *Buffer) DecodeZigzag32() (x uint64, err error) { method DecodeRawBytes (line 178) | func (p *Buffer) DecodeRawBytes(alloc bool) (buf []byte, err error) { method DecodeStringBytes (line 208) | func (p *Buffer) DecodeStringBytes() (s string, err error) { method skipAndSave (line 219) | func (o *Buffer) skipAndSave(t reflect.Type, tag, wire int, base structP... method skip (line 246) | func (o *Buffer) skip(t reflect.Type, tag, wire int) error { type Unmarshaler (line 287) | type Unmarshaler interface function Unmarshal (line 298) | func Unmarshal(buf []byte, pb Message) error { function UnmarshalMerge (line 309) | func UnmarshalMerge(buf []byte, pb Message) error { method Unmarshal (line 321) | func (p *Buffer) Unmarshal(pb Message) error { method unmarshalType (line 344) | func (o *Buffer) unmarshalType(st reflect.Type, prop *StructProperties, ... constant boolPoolSize (line 448) | boolPoolSize = 16 constant uint32PoolSize (line 449) | uint32PoolSize = 8 constant uint64PoolSize (line 450) | uint64PoolSize = 4 method dec_bool (line 454) | func (o *Buffer) dec_bool(p *Properties, base structPointer) error { method dec_proto3_bool (line 468) | func (o *Buffer) dec_proto3_bool(p *Properties, base structPointer) error { method dec_int32 (line 478) | func (o *Buffer) dec_int32(p *Properties, base structPointer) error { method dec_proto3_int32 (line 487) | func (o *Buffer) dec_proto3_int32(p *Properties, base structPointer) err... method dec_int64 (line 497) | func (o *Buffer) dec_int64(p *Properties, base structPointer) error { method dec_proto3_int64 (line 506) | func (o *Buffer) dec_proto3_int64(p *Properties, base structPointer) err... method dec_string (line 516) | func (o *Buffer) dec_string(p *Properties, base structPointer) error { method dec_proto3_string (line 525) | func (o *Buffer) dec_proto3_string(p *Properties, base structPointer) er... method dec_slice_byte (line 535) | func (o *Buffer) dec_slice_byte(p *Properties, base structPointer) error { method dec_slice_bool (line 545) | func (o *Buffer) dec_slice_bool(p *Properties, base structPointer) error { method dec_slice_packed_bool (line 556) | func (o *Buffer) dec_slice_packed_bool(p *Properties, base structPointer... method dec_slice_int32 (line 579) | func (o *Buffer) dec_slice_int32(p *Properties, base structPointer) error { method dec_slice_packed_int32 (line 589) | func (o *Buffer) dec_slice_packed_int32(p *Properties, base structPointe... method dec_slice_int64 (line 613) | func (o *Buffer) dec_slice_int64(p *Properties, base structPointer) error { method dec_slice_packed_int64 (line 624) | func (o *Buffer) dec_slice_packed_int64(p *Properties, base structPointe... method dec_slice_string (line 648) | func (o *Buffer) dec_slice_string(p *Properties, base structPointer) err... method dec_slice_slice_byte (line 659) | func (o *Buffer) dec_slice_slice_byte(p *Properties, base structPointer)... method dec_new_map (line 670) | func (o *Buffer) dec_new_map(p *Properties, base structPointer) error { method dec_struct_group (line 742) | func (o *Buffer) dec_struct_group(p *Properties, base structPointer) err... method dec_struct_message (line 753) | func (o *Buffer) dec_struct_message(p *Properties, base structPointer) (... method dec_slice_struct_message (line 785) | func (o *Buffer) dec_slice_struct_message(p *Properties, base structPoin... method dec_slice_struct_group (line 790) | func (o *Buffer) dec_slice_struct_group(p *Properties, base structPointe... method dec_slice_struct (line 795) | func (o *Buffer) dec_slice_struct(p *Properties, is_group bool, base str... FILE: vendor/github.com/golang/protobuf/proto/encode.go type RequiredNotSetError (line 54) | type RequiredNotSetError struct method Error (line 58) | func (e *RequiredNotSetError) Error() string { constant maxVarintBytes (line 75) | maxVarintBytes = 10 function EncodeVarint (line 83) | func EncodeVarint(x uint64) []byte { method EncodeVarint (line 99) | func (p *Buffer) EncodeVarint(x uint64) error { function sizeVarint (line 108) | func sizeVarint(x uint64) (n int) { method EncodeFixed64 (line 122) | func (p *Buffer) EncodeFixed64(x uint64) error { function sizeFixed64 (line 135) | func sizeFixed64(x uint64) int { method EncodeFixed32 (line 142) | func (p *Buffer) EncodeFixed32(x uint64) error { function sizeFixed32 (line 151) | func sizeFixed32(x uint64) int { method EncodeZigzag64 (line 158) | func (p *Buffer) EncodeZigzag64(x uint64) error { function sizeZigzag64 (line 163) | func sizeZigzag64(x uint64) int { method EncodeZigzag32 (line 170) | func (p *Buffer) EncodeZigzag32(x uint64) error { function sizeZigzag32 (line 175) | func sizeZigzag32(x uint64) int { method EncodeRawBytes (line 182) | func (p *Buffer) EncodeRawBytes(b []byte) error { function sizeRawBytes (line 188) | func sizeRawBytes(b []byte) int { method EncodeStringBytes (line 195) | func (p *Buffer) EncodeStringBytes(s string) error { function sizeStringBytes (line 201) | func sizeStringBytes(s string) int { type Marshaler (line 207) | type Marshaler interface function Marshal (line 213) | func Marshal(pb Message) ([]byte, error) { method Marshal (line 234) | func (p *Buffer) Marshal(pb Message) error { function Size (line 261) | func Size(pb Message) (n int) { method enc_bool (line 287) | func (o *Buffer) enc_bool(p *Properties, base structPointer) error { method enc_proto3_bool (line 301) | func (o *Buffer) enc_proto3_bool(p *Properties, base structPointer) error { function size_bool (line 311) | func size_bool(p *Properties, base structPointer) int { function size_proto3_bool (line 319) | func size_proto3_bool(p *Properties, base structPointer) int { method enc_int32 (line 328) | func (o *Buffer) enc_int32(p *Properties, base structPointer) error { method enc_proto3_int32 (line 339) | func (o *Buffer) enc_proto3_int32(p *Properties, base structPointer) err... function size_int32 (line 350) | func size_int32(p *Properties, base structPointer) (n int) { function size_proto3_int32 (line 361) | func size_proto3_int32(p *Properties, base structPointer) (n int) { method enc_uint32 (line 374) | func (o *Buffer) enc_uint32(p *Properties, base structPointer) error { method enc_proto3_uint32 (line 385) | func (o *Buffer) enc_proto3_uint32(p *Properties, base structPointer) er... function size_uint32 (line 396) | func size_uint32(p *Properties, base structPointer) (n int) { function size_proto3_uint32 (line 407) | func size_proto3_uint32(p *Properties, base structPointer) (n int) { method enc_int64 (line 419) | func (o *Buffer) enc_int64(p *Properties, base structPointer) error { method enc_proto3_int64 (line 430) | func (o *Buffer) enc_proto3_int64(p *Properties, base structPointer) err... function size_int64 (line 441) | func size_int64(p *Properties, base structPointer) (n int) { function size_proto3_int64 (line 452) | func size_proto3_int64(p *Properties, base structPointer) (n int) { method enc_string (line 464) | func (o *Buffer) enc_string(p *Properties, base structPointer) error { method enc_proto3_string (line 475) | func (o *Buffer) enc_proto3_string(p *Properties, base structPointer) er... function size_string (line 485) | func size_string(p *Properties, base structPointer) (n int) { function size_proto3_string (line 496) | func size_proto3_string(p *Properties, base structPointer) (n int) { function isNil (line 507) | func isNil(v reflect.Value) bool { method enc_struct_message (line 516) | func (o *Buffer) enc_struct_message(p *Properties, base structPointer) e... function size_struct_message (line 539) | func size_struct_message(p *Properties, base structPointer) int { method enc_struct_group (line 561) | func (o *Buffer) enc_struct_group(p *Properties, base structPointer) err... function size_struct_group (line 577) | func size_struct_group(p *Properties, base structPointer) (n int) { method enc_slice_bool (line 590) | func (o *Buffer) enc_slice_bool(p *Properties, base structPointer) error { function size_slice_bool (line 607) | func size_slice_bool(p *Properties, base structPointer) int { method enc_slice_packed_bool (line 617) | func (o *Buffer) enc_slice_packed_bool(p *Properties, base structPointer... function size_slice_packed_bool (line 635) | func size_slice_packed_bool(p *Properties, base structPointer) (n int) { method enc_slice_byte (line 648) | func (o *Buffer) enc_slice_byte(p *Properties, base structPointer) error { method enc_proto3_slice_byte (line 658) | func (o *Buffer) enc_proto3_slice_byte(p *Properties, base structPointer... function size_slice_byte (line 668) | func size_slice_byte(p *Properties, base structPointer) (n int) { function size_proto3_slice_byte (line 678) | func size_proto3_slice_byte(p *Properties, base structPointer) (n int) { method enc_slice_int32 (line 689) | func (o *Buffer) enc_slice_int32(p *Properties, base structPointer) error { function size_slice_int32 (line 703) | func size_slice_int32(p *Properties, base structPointer) (n int) { method enc_slice_packed_int32 (line 718) | func (o *Buffer) enc_slice_packed_int32(p *Properties, base structPointe... function size_slice_packed_int32 (line 737) | func size_slice_packed_int32(p *Properties, base structPointer) (n int) { method enc_slice_uint32 (line 757) | func (o *Buffer) enc_slice_uint32(p *Properties, base structPointer) err... function size_slice_uint32 (line 771) | func size_slice_uint32(p *Properties, base structPointer) (n int) { method enc_slice_packed_uint32 (line 787) | func (o *Buffer) enc_slice_packed_uint32(p *Properties, base structPoint... function size_slice_packed_uint32 (line 805) | func size_slice_packed_uint32(p *Properties, base structPointer) (n int) { method enc_slice_int64 (line 823) | func (o *Buffer) enc_slice_int64(p *Properties, base structPointer) error { function size_slice_int64 (line 836) | func size_slice_int64(p *Properties, base structPointer) (n int) { method enc_slice_packed_int64 (line 850) | func (o *Buffer) enc_slice_packed_int64(p *Properties, base structPointe... function size_slice_packed_int64 (line 868) | func size_slice_packed_int64(p *Properties, base structPointer) (n int) { method enc_slice_slice_byte (line 886) | func (o *Buffer) enc_slice_slice_byte(p *Properties, base structPointer)... function size_slice_slice_byte (line 899) | func size_slice_slice_byte(p *Properties, base structPointer) (n int) { method enc_slice_string (line 913) | func (o *Buffer) enc_slice_string(p *Properties, base structPointer) err... function size_slice_string (line 923) | func size_slice_string(p *Properties, base structPointer) (n int) { method enc_slice_struct_message (line 934) | func (o *Buffer) enc_slice_struct_message(p *Properties, base structPoin... function size_slice_struct_message (line 969) | func size_slice_struct_message(p *Properties, base structPointer) (n int) { method enc_slice_struct_group (line 996) | func (o *Buffer) enc_slice_struct_group(p *Properties, base structPointe... function size_slice_struct_group (line 1023) | func size_slice_struct_group(p *Properties, base structPointer) (n int) { method enc_map (line 1041) | func (o *Buffer) enc_map(p *Properties, base structPointer) error { function size_map (line 1067) | func size_map(p *Properties, base structPointer) int { method enc_new_map (line 1073) | func (o *Buffer) enc_new_map(p *Properties, base structPointer) error { function size_new_map (line 1125) | func size_new_map(p *Properties, base structPointer) int { function mapEncodeScratch (line 1148) | func mapEncodeScratch(mapType reflect.Type) (keycopy, valcopy reflect.Va... method enc_struct (line 1180) | func (o *Buffer) enc_struct(prop *StructProperties, base structPointer) ... function size_struct (line 1215) | func size_struct(prop *StructProperties, base structPointer) (n int) { method enc_len_struct (line 1235) | func (o *Buffer) enc_len_struct(prop *StructProperties, base structPoint... method enc_len_thing (line 1240) | func (o *Buffer) enc_len_thing(enc func() error, state *errorState) error { type errorState (line 1269) | type errorState struct method shouldContinue (line 1280) | func (s *errorState) shouldContinue(err error, prop *Properties) bool { FILE: vendor/github.com/golang/protobuf/proto/equal.go function Equal (line 67) | func Equal(a, b Message) bool { function equalStruct (line 91) | func equalStruct(v1, v2 reflect.Value) bool { function equalAny (line 144) | func equalAny(v1, v2 reflect.Value) bool { function equalExtensions (line 207) | func equalExtensions(base reflect.Type, em1, em2 map[int32]Extension) bo... FILE: vendor/github.com/golang/protobuf/proto/extensions.go type ExtensionRange (line 51) | type ExtensionRange struct type extendableProto (line 56) | type extendableProto interface type ExtensionDesc (line 66) | type ExtensionDesc struct method repeated (line 74) | func (ed *ExtensionDesc) repeated() bool { type Extension (line 80) | type Extension struct function SetRawExtension (line 95) | func SetRawExtension(base extendableProto, id int32, b []byte) { function isExtensionField (line 100) | func isExtensionField(pb extendableProto, field int32) bool { function checkExtensionTypes (line 110) | func checkExtensionTypes(pb extendableProto, extension *ExtensionDesc) e... type extPropKey (line 123) | type extPropKey struct function extensionProperties (line 135) | func extensionProperties(ed *ExtensionDesc) *Properties { function encodeExtensionMap (line 159) | func encodeExtensionMap(m map[int32]Extension) error { function sizeExtensionMap (line 187) | func sizeExtensionMap(m map[int32]Extension) (n int) { function HasExtension (line 212) | func HasExtension(pb extendableProto, extension *ExtensionDesc) bool { function ClearExtension (line 219) | func ClearExtension(pb extendableProto, extension *ExtensionDesc) { function GetExtension (line 226) | func GetExtension(pb extendableProto, extension *ExtensionDesc) (interfa... function defaultExtensionValue (line 266) | func defaultExtensionValue(extension *ExtensionDesc) (interface{}, error) { function decodeExtension (line 300) | func decodeExtension(b []byte, extension *ExtensionDesc) (interface{}, e... function GetExtensions (line 335) | func GetExtensions(pb Message, es []*ExtensionDesc) (extensions []interf... function SetExtension (line 355) | func SetExtension(pb extendableProto, extension *ExtensionDesc, value in... function RegisterExtension (line 382) | func RegisterExtension(desc *ExtensionDesc) { function RegisteredExtensions (line 398) | func RegisteredExtensions(pb Message) map[int32]*ExtensionDesc { FILE: vendor/github.com/golang/protobuf/proto/lib.go type Message (line 219) | type Message interface type Stats (line 227) | type Stats struct constant collectStats (line 238) | collectStats = false function GetStats (line 243) | func GetStats() Stats { return stats } type Buffer (line 250) | type Buffer struct method Reset (line 273) | func (p *Buffer) Reset() { method SetBuf (line 280) | func (p *Buffer) SetBuf(s []byte) { method Bytes (line 286) | func (p *Buffer) Bytes() []byte { return p.buf } method DebugPrint (line 388) | func (p *Buffer) DebugPrint(s string, b []byte) { function NewBuffer (line 268) | func NewBuffer(e []byte) *Buffer { function Bool (line 294) | func Bool(v bool) *bool { function Int32 (line 300) | func Int32(v int32) *int32 { function Int (line 307) | func Int(v int) *int32 { function Int64 (line 315) | func Int64(v int64) *int64 { function Float32 (line 321) | func Float32(v float32) *float32 { function Float64 (line 327) | func Float64(v float64) *float64 { function Uint32 (line 333) | func Uint32(v uint32) *uint32 { function Uint64 (line 339) | func Uint64(v uint64) *uint64 { function String (line 345) | func String(v string) *string { function EnumName (line 351) | func EnumName(m map[int32]string, v int32) string { function UnmarshalJSONEnum (line 365) | func UnmarshalJSONEnum(m map[string]int32, data []byte, enumName string)... function SetDefaults (line 502) | func SetDefaults(pb Message) { function setDefaults (line 507) | func setDefaults(v reflect.Value, recur, zeros bool) { type defaultMessage (line 649) | type defaultMessage struct type scalarField (line 654) | type scalarField struct function buildDefaultMessage (line 661) | func buildDefaultMessage(t reflect.Type) (dm defaultMessage) { function fieldDefault (line 690) | func fieldDefault(ft reflect.Type, prop *Properties) (sf *scalarField, n... type mapKeys (line 790) | type mapKeys method Len (line 792) | func (s mapKeys) Len() int { return len(s) } method Swap (line 793) | func (s mapKeys) Swap(i, j int) { s[i], s[j] = s[j], s[i] } method Less (line 794) | func (s mapKeys) Less(i, j int) bool { FILE: vendor/github.com/golang/protobuf/proto/message_set.go type _MessageSet_Item (line 69) | type _MessageSet_Item struct type MessageSet (line 74) | type MessageSet struct method find (line 89) | func (ms *MessageSet) find(pb Message) *_MessageSet_Item { method Has (line 103) | func (ms *MessageSet) Has(pb Message) bool { method Unmarshal (line 110) | func (ms *MessageSet) Unmarshal(pb Message) error { method Marshal (line 120) | func (ms *MessageSet) Marshal(pb Message) error { method Reset (line 144) | func (ms *MessageSet) Reset() { *ms = MessageSet{} } method String (line 145) | func (ms *MessageSet) String() string { return CompactTextString(ms) } method ProtoMessage (line 146) | func (*MessageSet) ProtoMessage() {} type messageTypeIder (line 85) | type messageTypeIder interface function skipVarint (line 150) | func skipVarint(buf []byte) []byte { function MarshalMessageSet (line 159) | func MarshalMessageSet(m map[int32]Extension) ([]byte, error) { function UnmarshalMessageSet (line 188) | func UnmarshalMessageSet(buf []byte, m map[int32]Extension) error { function MarshalMessageSetJSON (line 219) | func MarshalMessageSetJSON(m map[int32]Extension) ([]byte, error) { function UnmarshalMessageSetJSON (line 262) | func UnmarshalMessageSetJSON(buf []byte, m map[int32]Extension) error { type messageSetDesc (line 276) | type messageSetDesc struct function RegisterMessageSetType (line 282) | func RegisterMessageSetType(m Message, fieldNum int32, name string) { FILE: vendor/github.com/golang/protobuf/proto/pointer_reflect.go type structPointer (line 46) | type structPointer struct function toStructPointer (line 52) | func toStructPointer(v reflect.Value) structPointer { function structPointer_IsNil (line 57) | func structPointer_IsNil(p structPointer) bool { function structPointer_Interface (line 62) | func structPointer_Interface(p structPointer, _ reflect.Type) interface{} { type field (line 69) | type field method IsValid (line 80) | func (f field) IsValid() bool { return f != nil } function toField (line 72) | func toField(f *reflect.StructField) field { function structPointer_field (line 83) | func structPointer_field(p structPointer, f field) reflect.Value { function structPointer_ifield (line 98) | func structPointer_ifield(p structPointer, f field) interface{} { function structPointer_Bytes (line 103) | func structPointer_Bytes(p structPointer, f field) *[]byte { function structPointer_BytesSlice (line 108) | func structPointer_BytesSlice(p structPointer, f field) *[][]byte { function structPointer_Bool (line 113) | func structPointer_Bool(p structPointer, f field) **bool { function structPointer_BoolVal (line 118) | func structPointer_BoolVal(p structPointer, f field) *bool { function structPointer_BoolSlice (line 123) | func structPointer_BoolSlice(p structPointer, f field) *[]bool { function structPointer_String (line 128) | func structPointer_String(p structPointer, f field) **string { function structPointer_StringVal (line 133) | func structPointer_StringVal(p structPointer, f field) *string { function structPointer_StringSlice (line 138) | func structPointer_StringSlice(p structPointer, f field) *[]string { function structPointer_ExtMap (line 143) | func structPointer_ExtMap(p structPointer, f field) *map[int32]Extension { function structPointer_Map (line 148) | func structPointer_Map(p structPointer, f field, typ reflect.Type) refle... function structPointer_SetStructPointer (line 153) | func structPointer_SetStructPointer(p structPointer, f field, q structPo... function structPointer_GetStructPointer (line 158) | func structPointer_GetStructPointer(p structPointer, f field) structPoin... function structPointer_StructPointerSlice (line 163) | func structPointer_StructPointerSlice(p structPointer, f field) structPo... type structPointerSlice (line 169) | type structPointerSlice struct method Len (line 173) | func (p structPointerSlice) Len() int { return p.v.Le... method Index (line 174) | func (p structPointerSlice) Index(i int) structPointer { return struct... method Append (line 175) | func (p structPointerSlice) Append(q structPointer) { type word32 (line 190) | type word32 struct function word32_IsNil (line 195) | func word32_IsNil(p word32) bool { function word32_Set (line 200) | func word32_Set(p word32, o *Buffer, x uint32) { function word32_Get (line 235) | func word32_Get(p word32) uint32 { function structPointer_Word32 (line 249) | func structPointer_Word32(p structPointer, f field) word32 { type word32Val (line 255) | type word32Val struct function word32Val_Set (line 260) | func word32Val_Set(p word32Val, x uint32) { function word32Val_Get (line 278) | func word32Val_Get(p word32Val) uint32 { function structPointer_Word32Val (line 292) | func structPointer_Word32Val(p structPointer, f field) word32Val { type word32Slice (line 298) | type word32Slice struct method Append (line 302) | func (p word32Slice) Append(x uint32) { method Len (line 321) | func (p word32Slice) Len() int { method Index (line 325) | func (p word32Slice) Index(i int) uint32 { function structPointer_Word32Slice (line 339) | func structPointer_Word32Slice(p structPointer, f field) word32Slice { type word64 (line 344) | type word64 struct function word64_Set (line 348) | func word64_Set(p word64, o *Buffer, x uint64) { function word64_IsNil (line 379) | func word64_IsNil(p word64) bool { function word64_Get (line 383) | func word64_Get(p word64) uint64 { function structPointer_Word64 (line 396) | func structPointer_Word64(p structPointer, f field) word64 { type word64Val (line 401) | type word64Val struct function word64Val_Set (line 405) | func word64Val_Set(p word64Val, o *Buffer, x uint64) { function word64Val_Get (line 420) | func word64Val_Get(p word64Val) uint64 { function structPointer_Word64Val (line 433) | func structPointer_Word64Val(p structPointer, f field) word64Val { type word64Slice (line 437) | type word64Slice struct method Append (line 441) | func (p word64Slice) Append(x uint64) { method Len (line 460) | func (p word64Slice) Len() int { method Index (line 464) | func (p word64Slice) Index(i int) uint64 { function structPointer_Word64Slice (line 477) | func structPointer_Word64Slice(p structPointer, f field) word64Slice { FILE: vendor/github.com/golang/protobuf/proto/pointer_unsafe.go type structPointer (line 53) | type structPointer function toStructPointer (line 56) | func toStructPointer(v reflect.Value) structPointer { function structPointer_IsNil (line 61) | func structPointer_IsNil(p structPointer) bool { function structPointer_Interface (line 67) | func structPointer_Interface(p structPointer, t reflect.Type) interface{} { type field (line 73) | type field method IsValid (line 84) | func (f field) IsValid() bool { function toField (line 76) | func toField(f *reflect.StructField) field { constant invalidField (line 81) | invalidField = ^field(0) function structPointer_Bytes (line 89) | func structPointer_Bytes(p structPointer, f field) *[]byte { function structPointer_BytesSlice (line 94) | func structPointer_BytesSlice(p structPointer, f field) *[][]byte { function structPointer_Bool (line 99) | func structPointer_Bool(p structPointer, f field) **bool { function structPointer_BoolVal (line 104) | func structPointer_BoolVal(p structPointer, f field) *bool { function structPointer_BoolSlice (line 109) | func structPointer_BoolSlice(p structPointer, f field) *[]bool { function structPointer_String (line 114) | func structPointer_String(p structPointer, f field) **string { function structPointer_StringVal (line 119) | func structPointer_StringVal(p structPointer, f field) *string { function structPointer_StringSlice (line 124) | func structPointer_StringSlice(p structPointer, f field) *[]string { function structPointer_ExtMap (line 129) | func structPointer_ExtMap(p structPointer, f field) *map[int32]Extension { function structPointer_Map (line 134) | func structPointer_Map(p structPointer, f field, typ reflect.Type) refle... function structPointer_SetStructPointer (line 139) | func structPointer_SetStructPointer(p structPointer, f field, q structPo... function structPointer_GetStructPointer (line 144) | func structPointer_GetStructPointer(p structPointer, f field) structPoin... function structPointer_StructPointerSlice (line 149) | func structPointer_StructPointerSlice(p structPointer, f field) *structP... type structPointerSlice (line 154) | type structPointerSlice method Len (line 156) | func (v *structPointerSlice) Len() int { return len(*... method Index (line 157) | func (v *structPointerSlice) Index(i int) structPointer { return (*v)[... method Append (line 158) | func (v *structPointerSlice) Append(p structPointer) { *v = append(... type word32 (line 161) | type word32 function word32_IsNil (line 164) | func word32_IsNil(p word32) bool { function word32_Set (line 169) | func word32_Set(p word32, o *Buffer, x uint32) { function word32_Get (line 179) | func word32_Get(p word32) uint32 { function structPointer_Word32 (line 184) | func structPointer_Word32(p structPointer, f field) word32 { type word32Val (line 189) | type word32Val function word32Val_Set (line 192) | func word32Val_Set(p word32Val, x uint32) { function word32Val_Get (line 197) | func word32Val_Get(p word32Val) uint32 { function structPointer_Word32Val (line 202) | func structPointer_Word32Val(p structPointer, f field) word32Val { type word32Slice (line 207) | type word32Slice method Append (line 209) | func (v *word32Slice) Append(x uint32) { *v = append(*v, x) } method Len (line 210) | func (v *word32Slice) Len() int { return len(*v) } method Index (line 211) | func (v *word32Slice) Index(i int) uint32 { return (*v)[i] } function structPointer_Word32Slice (line 214) | func structPointer_Word32Slice(p structPointer, f field) *word32Slice { type word64 (line 219) | type word64 function word64_Set (line 221) | func word64_Set(p word64, o *Buffer, x uint64) { function word64_IsNil (line 230) | func word64_IsNil(p word64) bool { function word64_Get (line 234) | func word64_Get(p word64) uint64 { function structPointer_Word64 (line 238) | func structPointer_Word64(p structPointer, f field) word64 { type word64Val (line 243) | type word64Val function word64Val_Set (line 245) | func word64Val_Set(p word64Val, o *Buffer, x uint64) { function word64Val_Get (line 249) | func word64Val_Get(p word64Val) uint64 { function structPointer_Word64Val (line 253) | func structPointer_Word64Val(p structPointer, f field) word64Val { type word64Slice (line 258) | type word64Slice method Append (line 260) | func (v *word64Slice) Append(x uint64) { *v = append(*v, x) } method Len (line 261) | func (v *word64Slice) Len() int { return len(*v) } method Index (line 262) | func (v *word64Slice) Index(i int) uint64 { return (*v)[i] } function structPointer_Word64Slice (line 264) | func structPointer_Word64Slice(p structPointer, f field) *word64Slice { FILE: vendor/github.com/golang/protobuf/proto/properties.go constant debug (line 48) | debug bool = false constant WireVarint (line 52) | WireVarint = 0 constant WireFixed64 (line 53) | WireFixed64 = 1 constant WireBytes (line 54) | WireBytes = 2 constant WireStartGroup (line 55) | WireStartGroup = 3 constant WireEndGroup (line 56) | WireEndGroup = 4 constant WireFixed32 (line 57) | WireFixed32 = 5 constant startSize (line 60) | startSize = 10 type encoder (line 65) | type encoder type valueEncoder (line 68) | type valueEncoder type sizer (line 73) | type sizer type valueSizer (line 77) | type valueSizer type decoder (line 82) | type decoder type valueDecoder (line 85) | type valueDecoder type tagMap (line 90) | type tagMap struct method get (line 99) | func (p *tagMap) get(t int) (int, bool) { method put (line 111) | func (p *tagMap) put(t int, fi int) { constant tagMapFastLimit (line 97) | tagMapFastLimit = 1024 type StructProperties (line 127) | type StructProperties struct method Len (line 140) | func (sp *StructProperties) Len() int { return len(sp.order) } method Less (line 141) | func (sp *StructProperties) Less(i, j int) bool { method Swap (line 144) | func (sp *StructProperties) Swap(i, j int) { sp.order[i], sp.order[j] ... type Properties (line 147) | type Properties struct method String (line 189) | func (p *Properties) String() string { method Parse (line 221) | func (p *Properties) Parse(s string) { method setEncAndDec (line 306) | func (p *Properties) setEncAndDec(typ reflect.Type, f *reflect.StructF... method Init (line 584) | func (p *Properties) Init(typ reflect.Type, name, tag string, f *refle... method init (line 588) | func (p *Properties) init(typ reflect.Type, name, tag string, f *refle... function logNoSliceEnc (line 299) | func logNoSliceEnc(t1, t2 reflect.Type) { function isMarshaler (line 562) | func isMarshaler(t reflect.Type) bool { function isUnmarshaler (line 573) | func isUnmarshaler(t reflect.Type) bool { function GetProperties (line 609) | func GetProperties(t reflect.Type) *StructProperties { function getPropertiesLocked (line 633) | func getPropertiesLocked(t reflect.Type) *StructProperties { function propByIndex (line 707) | func propByIndex(t reflect.Type, x []int) *Properties { function getbase (line 717) | func getbase(pb Message) (t reflect.Type, b structPointer, err error) { function RegisterEnum (line 737) | func RegisterEnum(typeName string, unusedNameMap map[int32]string, value... FILE: vendor/github.com/golang/protobuf/proto/proto3_proto/proto3.pb.go type Message_Humour (line 24) | type Message_Humour method String (line 46) | func (x Message_Humour) String() string { constant Message_UNKNOWN (line 27) | Message_UNKNOWN Message_Humour = 0 constant Message_PUNS (line 28) | Message_PUNS Message_Humour = 1 constant Message_SLAPSTICK (line 29) | Message_SLAPSTICK Message_Humour = 2 constant Message_BILL_BAILEY (line 30) | Message_BILL_BAILEY Message_Humour = 3 type Message (line 50) | type Message struct method Reset (line 65) | func (m *Message) Reset() { *m = Message{} } method String (line 66) | func (m *Message) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 67) | func (*Message) ProtoMessage() {} method GetNested (line 69) | func (m *Message) GetNested() *Nested { method GetTerrain (line 76) | func (m *Message) GetTerrain() map[string]*Nested { method GetProto2Field (line 83) | func (m *Message) GetProto2Field() *testdata.SubDefaults { method GetProto2Value (line 90) | func (m *Message) GetProto2Value() map[string]*testdata.SubDefaults { type Nested (line 97) | type Nested struct method Reset (line 101) | func (m *Nested) Reset() { *m = Nested{} } method String (line 102) | func (m *Nested) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 103) | func (*Nested) ProtoMessage() {} type MessageWithMap (line 105) | type MessageWithMap struct method Reset (line 109) | func (m *MessageWithMap) Reset() { *m = MessageWithMap{} } method String (line 110) | func (m *MessageWithMap) String() string { return proto.CompactTextStr... method ProtoMessage (line 111) | func (*MessageWithMap) ProtoMessage() {} method GetByteMapping (line 113) | func (m *MessageWithMap) GetByteMapping() map[bool][]byte { function init (line 120) | func init() { FILE: vendor/github.com/golang/protobuf/proto/text.go type writer (line 65) | type writer interface type textWriter (line 71) | type textWriter struct method WriteString (line 78) | func (w *textWriter) WriteString(s string) (n int, err error) { method Write (line 92) | func (w *textWriter) Write(p []byte) (n int, err error) { method WriteByte (line 141) | func (w *textWriter) WriteByte(c byte) error { method indent (line 153) | func (w *textWriter) indent() { w.ind++ } method unindent (line 155) | func (w *textWriter) unindent() { method writeIndent (line 713) | func (w *textWriter) writeIndent() { function writeName (line 163) | func writeName(w *textWriter, props *Properties) error { type raw (line 178) | type raw interface function writeStruct (line 182) | func writeStruct(w *textWriter, sv reflect.Value) error { function writeRaw (line 382) | func writeRaw(w *textWriter, b []byte) error { function writeAny (line 403) | func writeAny(w *textWriter, v reflect.Value, props *Properties) error { function isprint (line 475) | func isprint(c byte) bool { function writeString (line 484) | func writeString(w *textWriter, s string) error { function writeMessageSet (line 520) | func writeMessageSet(w *textWriter, ms *MessageSet) error { function writeUnknownStruct (line 558) | func writeUnknownStruct(w *textWriter, data []byte) (err error) { function writeUnknownInt (line 625) | func writeUnknownInt(w *textWriter, x uint64, err error) error { type int32Slice (line 634) | type int32Slice method Len (line 636) | func (s int32Slice) Len() int { return len(s) } method Less (line 637) | func (s int32Slice) Less(i, j int) bool { return s[i] < s[j] } method Swap (line 638) | func (s int32Slice) Swap(i, j int) { s[i], s[j] = s[j], s[i] } function writeExtensions (line 642) | func writeExtensions(w *textWriter, pv reflect.Value) error { function writeExtension (line 695) | func writeExtension(w *textWriter, name string, pb interface{}) error { function marshalText (line 729) | func marshalText(w io.Writer, pb Message, compact bool) error { function MarshalText (line 773) | func MarshalText(w io.Writer, pb Message) error { function MarshalTextString (line 778) | func MarshalTextString(pb Message) string { function CompactText (line 785) | func CompactText(w io.Writer, pb Message) error { return marshalText(w, ... function CompactTextString (line 788) | func CompactTextString(pb Message) string { FILE: vendor/github.com/golang/protobuf/proto/text_parser.go type ParseError (line 47) | type ParseError struct method Error (line 53) | func (p *ParseError) Error() string { type token (line 61) | type token struct method String (line 69) | func (t *token) String() string { type textParser (line 76) | type textParser struct method errorf (line 92) | func (p *textParser) errorf(format string, a ...interface{}) *ParseErr... method skipWhitespace (line 122) | func (p *textParser) skipWhitespace() { method advance (line 146) | func (p *textParser) advance() { method back (line 325) | func (p *textParser) back() { p.backed = true } method next (line 328) | func (p *textParser) next() *token { method consumeToken (line 358) | func (p *textParser) consumeToken(s string) error { method missingRequiredFieldError (line 371) | func (p *textParser) missingRequiredFieldError(sv reflect.Value) *Requ... method checkForColon (line 399) | func (p *textParser) checkForColon(props *Properties, typ reflect.Type... method readStruct (line 439) | func (p *textParser) readStruct(sv reflect.Value, terminator string) e... method consumeOptionalSeparator (line 628) | func (p *textParser) consumeOptionalSeparator() error { method readAny (line 639) | func (p *textParser) readAny(v reflect.Value, props *Properties) error { function newTextParser (line 84) | func newTextParser(s string) *textParser { function isIdentOrNumberChar (line 100) | func isIdentOrNumberChar(c byte) bool { function isWhitespace (line 114) | func isWhitespace(c byte) bool { function unquoteC (line 201) | func unquoteC(s string, quote rune) (string, error) { function unescape (line 244) | func unescape(s string) (ch string, tail string, err error) { function unhex (line 311) | func unhex(b byte) (v byte, ok bool) { function structFieldByName (line 388) | func structFieldByName(st reflect.Type, name string) (int, *Properties, ... function UnmarshalText (line 761) | func UnmarshalText(s string, pb Message) error { FILE: vendor/github.com/gorilla/context/context.go function Set (line 20) | func Set(r *http.Request, key, val interface{}) { function Get (line 31) | func Get(r *http.Request, key interface{}) interface{} { function GetOk (line 43) | func GetOk(r *http.Request, key interface{}) (interface{}, bool) { function GetAll (line 55) | func GetAll(r *http.Request) map[interface{}]interface{} { function GetAllOk (line 71) | func GetAllOk(r *http.Request) (map[interface{}]interface{}, bool) { function Delete (line 83) | func Delete(r *http.Request, key interface{}) { function Clear (line 95) | func Clear(r *http.Request) { function clear (line 102) | func clear(r *http.Request) { function Purge (line 116) | func Purge(maxAge int) int { function ClearHandler (line 138) | func ClearHandler(h http.Handler) http.Handler { FILE: vendor/github.com/gorilla/mux/mux.go function NewRouter (line 16) | func NewRouter() *Router { type Router (line 38) | type Router struct method Match (line 54) | func (r *Router) Match(req *http.Request, match *RouteMatch) bool { method ServeHTTP (line 67) | func (r *Router) ServeHTTP(w http.ResponseWriter, req *http.Request) { method Get (line 102) | func (r *Router) Get(name string) *Route { method GetRoute (line 108) | func (r *Router) GetRoute(name string) *Route { method StrictSlash (line 126) | func (r *Router) StrictSlash(value bool) *Router { method getNamedRoutes (line 136) | func (r *Router) getNamedRoutes() map[string]*Route { method getRegexpGroup (line 148) | func (r *Router) getRegexpGroup() *routeRegexpGroup { method buildVars (line 155) | func (r *Router) buildVars(m map[string]string) map[string]string { method NewRoute (line 167) | func (r *Router) NewRoute() *Route { method Handle (line 175) | func (r *Router) Handle(path string, handler http.Handler) *Route { method HandleFunc (line 181) | func (r *Router) HandleFunc(path string, f func(http.ResponseWriter, method Headers (line 188) | func (r *Router) Headers(pairs ...string) *Route { method Host (line 194) | func (r *Router) Host(tpl string) *Route { method MatcherFunc (line 200) | func (r *Router) MatcherFunc(f MatcherFunc) *Route { method Methods (line 206) | func (r *Router) Methods(methods ...string) *Route { method Path (line 212) | func (r *Router) Path(tpl string) *Route { method PathPrefix (line 218) | func (r *Router) PathPrefix(tpl string) *Route { method Queries (line 224) | func (r *Router) Queries(pairs ...string) *Route { method Schemes (line 230) | func (r *Router) Schemes(schemes ...string) *Route { method BuildVarsFunc (line 236) | func (r *Router) BuildVarsFunc(f BuildVarsFunc) *Route { type RouteMatch (line 245) | type RouteMatch struct type contextKey (line 251) | type contextKey constant varsKey (line 254) | varsKey contextKey = iota constant routeKey (line 255) | routeKey function Vars (line 259) | func Vars(r *http.Request) map[string]string { function CurrentRoute (line 267) | func CurrentRoute(r *http.Request) *Route { function setVars (line 274) | func setVars(r *http.Request, val interface{}) { function setCurrentRoute (line 278) | func setCurrentRoute(r *http.Request, val interface{}) { function cleanPath (line 288) | func cleanPath(p string) string { function uniqueVars (line 305) | func uniqueVars(s1, s2 []string) error { function mapFromPairs (line 317) | func mapFromPairs(pairs ...string) (map[string]string, error) { function matchInArray (line 331) | func matchInArray(arr []string, value string) bool { function matchMap (line 341) | func matchMap(toCheck map[string]string, toMatch map[string][]string, FILE: vendor/github.com/gorilla/mux/regexp.go function newRouteRegexp (line 26) | func newRouteRegexp(tpl string, matchHost, matchPrefix, matchQuery, stri... type routeRegexp (line 121) | type routeRegexp struct method Match (line 141) | func (r *routeRegexp) Match(req *http.Request, match *RouteMatch) bool { method url (line 153) | func (r *routeRegexp) url(values map[string]string) (string, error) { function braceIndices (line 180) | func braceIndices(s string) ([]int, error) { type routeRegexpGroup (line 208) | type routeRegexpGroup struct method setMatch (line 215) | func (v *routeRegexpGroup) setMatch(req *http.Request, m *RouteMatch, ... function getHost (line 261) | func getHost(r *http.Request) string { FILE: vendor/github.com/gorilla/mux/route.go type Route (line 16) | type Route struct method Match (line 39) | func (r *Route) Match(req *http.Request, match *RouteMatch) bool { method GetError (line 71) | func (r *Route) GetError() error { method BuildOnly (line 76) | func (r *Route) BuildOnly() *Route { method Handler (line 84) | func (r *Route) Handler(handler http.Handler) *Route { method HandlerFunc (line 92) | func (r *Route) HandlerFunc(f func(http.ResponseWriter, *http.Request)... method GetHandler (line 97) | func (r *Route) GetHandler() http.Handler { method Name (line 105) | func (r *Route) Name(name string) *Route { method GetName (line 118) | func (r *Route) GetName() string { method addMatcher (line 132) | func (r *Route) addMatcher(m matcher) *Route { method addRegexpMatcher (line 140) | func (r *Route) addRegexpMatcher(tpl string, matchHost, matchPrefix, m... method Headers (line 204) | func (r *Route) Headers(pairs ...string) *Route { method Host (line 232) | func (r *Route) Host(tpl string) *Route { method MatcherFunc (line 247) | func (r *Route) MatcherFunc(f MatcherFunc) *Route { method Methods (line 263) | func (r *Route) Methods(methods ...string) *Route { method Path (line 291) | func (r *Route) Path(tpl string) *Route { method PathPrefix (line 307) | func (r *Route) PathPrefix(tpl string) *Route { method Queries (line 331) | func (r *Route) Queries(pairs ...string) *Route { method Schemes (line 358) | func (r *Route) Schemes(schemes ...string) *Route { method BuildVarsFunc (line 373) | func (r *Route) BuildVarsFunc(f BuildVarsFunc) *Route { method Subrouter (line 392) | func (r *Route) Subrouter() *Router { method URL (line 433) | func (r *Route) URL(pairs ...string) (*url.URL, error) { method URLHost (line 467) | func (r *Route) URLHost(pairs ...string) (*url.URL, error) { method URLPath (line 491) | func (r *Route) URLPath(pairs ...string) (*url.URL, error) { method prepareVars (line 513) | func (r *Route) prepareVars(pairs ...string) (map[string]string, error) { method buildVars (line 521) | func (r *Route) buildVars(m map[string]string) map[string]string { method getNamedRoutes (line 543) | func (r *Route) getNamedRoutes() map[string]*Route { method getRegexpGroup (line 552) | func (r *Route) getRegexpGroup() *routeRegexpGroup { type matcher (line 127) | type matcher interface type headerMatcher (line 188) | type headerMatcher method Match (line 190) | func (m headerMatcher) Match(r *http.Request, match *RouteMatch) bool { type MatcherFunc (line 240) | type MatcherFunc method Match (line 242) | func (m MatcherFunc) Match(r *http.Request, match *RouteMatch) bool { type methodMatcher (line 254) | type methodMatcher method Match (line 256) | func (m methodMatcher) Match(r *http.Request, match *RouteMatch) bool { type schemeMatcher (line 350) | type schemeMatcher method Match (line 352) | func (m schemeMatcher) Match(r *http.Request, match *RouteMatch) bool { type BuildVarsFunc (line 369) | type BuildVarsFunc type parentRoute (line 536) | type parentRoute interface FILE: vendor/github.com/mitchellh/goamz/aws/attempt.go type AttemptStrategy (line 10) | type AttemptStrategy struct method Start (line 25) | func (s AttemptStrategy) Start() *Attempt { type Attempt (line 16) | type Attempt struct method Next (line 37) | func (a *Attempt) Next() bool { method nextSleep (line 53) | func (a *Attempt) nextSleep(now time.Time) time.Duration { method HasNext (line 64) | func (a *Attempt) HasNext() bool { FILE: vendor/github.com/mitchellh/goamz/aws/aws.go type Region (line 25) | type Region struct type Auth (line 243) | type Auth struct function init (line 250) | func init() { type credentials (line 258) | type credentials struct function GetMetaData (line 271) | func GetMetaData(path string) (contents []byte, err error) { function getInstanceCredentials (line 292) | func getInstanceCredentials() (cred credentials, err error) { function GetAuth (line 313) | func GetAuth(accessKey string, secretKey string) (auth Auth, err error) { function SharedAuth (line 349) | func SharedAuth() (auth Auth, err error) { function EnvAuth (line 394) | func EnvAuth() (auth Auth, err error) { function Encode (line 418) | func Encode(s string) string { FILE: vendor/github.com/mitchellh/goamz/aws/client.go type RetryableFunc (line 10) | type RetryableFunc type WaitFunc (line 11) | type WaitFunc type DeadlineFunc (line 12) | type DeadlineFunc type ResilientTransport (line 14) | type ResilientTransport struct method RoundTrip (line 69) | func (t *ResilientTransport) RoundTrip(req *http.Request) (*http.Respo... method tries (line 77) | func (t *ResilientTransport) tries(req *http.Request) (res *http.Respo... function NewClient (line 36) | func NewClient(rt *ResilientTransport) *http.Client { function ExpBackoff (line 95) | func ExpBackoff(try int) { function LinearBackoff (line 100) | func LinearBackoff(try int) { function awsRetry (line 107) | func awsRetry(req *http.Request, res *http.Response, err error) bool { FILE: vendor/github.com/mitchellh/goamz/s3/multi.go type Multi (line 22) | type Multi struct method PutPart (line 144) | func (m *Multi) PutPart(n int, r io.ReadSeeker) (Part, error) { method putPart (line 152) | func (m *Multi) putPart(n int, r io.ReadSeeker, partSize int64, md5b64... method ListParts (line 235) | func (m *Multi) ListParts() ([]Part, error) { method PutAll (line 278) | func (m *Multi) PutAll(r ReaderAtSeeker, partSize int64) ([]Part, erro... method Complete (line 346) | func (m *Multi) Complete(parts []Part) error { method Abort (line 391) | func (m *Multi) Abort() error { type listMultiResp (line 31) | type listMultiResp struct method ListMulti (line 51) | func (b *Bucket) ListMulti(prefix, delim string) (multis []*Multi, prefi... method Multi (line 91) | func (b *Bucket) Multi(key, contType string, perm ACL) (*Multi, error) { method InitMulti (line 108) | func (b *Bucket) InitMulti(key string, contType string, perm ACL) (*Mult... function seekerInfo (line 194) | func seekerInfo(r io.ReadSeeker) (size int64, md5hex string, md5b64 stri... type Part (line 210) | type Part struct type partSlice (line 216) | type partSlice method Len (line 218) | func (s partSlice) Len() int { return len(s) } method Less (line 219) | func (s partSlice) Less(i, j int) bool { return s[i].N < s[j].N } method Swap (line 220) | func (s partSlice) Swap(i, j int) { s[i], s[j] = s[j], s[i] } type listPartsResp (line 222) | type listPartsResp struct type ReaderAtSeeker (line 267) | type ReaderAtSeeker interface type completeUpload (line 326) | type completeUpload struct type completePart (line 331) | type completePart struct type completeParts (line 336) | type completeParts method Len (line 338) | func (p completeParts) Len() int { return len(p) } method Less (line 339) | func (p completeParts) Less(i, j int) bool { return p[i].PartNumber < ... method Swap (line 340) | func (p completeParts) Swap(i, j int) { p[i], p[j] = p[j], p[i] } FILE: vendor/github.com/mitchellh/goamz/s3/s3.go constant debug (line 32) | debug = false type S3 (line 35) | type S3 struct method Bucket (line 73) | func (s3 *S3) Bucket(name string) *Bucket { method locationConstraint (line 88) | func (s3 *S3) locationConstraint() io.Reader { method ListBuckets (line 115) | func (s3 *S3) ListBuckets() (result *ListBucketsResp, err error) { method query (line 710) | func (s3 *S3) query(req *request, resp interface{}) error { method prepare (line 723) | func (s3 *S3) prepare(req *request) error { method run (line 779) | func (s3 *S3) run(req *request, resp interface{}) (*http.Response, err... type Bucket (line 44) | type Bucket struct method PutBucket (line 139) | func (b *Bucket) PutBucket(perm ACL) error { method DelBucket (line 157) | func (b *Bucket) DelBucket() (err error) { method Get (line 175) | func (b *Bucket) Get(path string) (data []byte, err error) { method GetReader (line 188) | func (b *Bucket) GetReader(path string) (rc io.ReadCloser, err error) { method GetResponse (line 199) | func (b *Bucket) GetResponse(path string) (*http.Response, error) { method GetTorrentReader (line 205) | func (b *Bucket) GetTorrentReader(path string) (io.ReadCloser, error) { method GetTorrent (line 215) | func (b *Bucket) GetTorrent(path string) ([]byte, error) { method getResponseParams (line 225) | func (b *Bucket) getResponseParams(path string, params url.Values) (*h... method Head (line 248) | func (b *Bucket) Head(path string) (*http.Response, error) { method Put (line 274) | func (b *Bucket) Put(path string, data []byte, contType string, perm A... method PutHeader (line 283) | func (b *Bucket) PutHeader(path string, data []byte, customHeaders map... method PutReader (line 290) | func (b *Bucket) PutReader(path string, r io.Reader, length int64, con... method PutReaderHeader (line 310) | func (b *Bucket) PutReaderHeader(path string, r io.Reader, length int6... method Copy (line 336) | func (b *Bucket) Copy(oldPath, newPath string, perm ACL) error { method Del (line 372) | func (b *Bucket) Del(path string) error { method MultiDel (line 401) | func (b *Bucket) MultiDel(paths []string) error { method List (line 509) | func (b *Bucket) List(prefix, delim, marker string, max int) (result *... method GetBucketContents (line 536) | func (b *Bucket) GetBucketContents() (*map[string]Key, error) { method GetKey (line 569) | func (b *Bucket) GetKey(path string) (*Key, error) { method URL (line 606) | func (b *Bucket) URL(path string) string { method SignedURL (line 625) | func (b *Bucket) SignedURL(path string, expires time.Time) string { type Owner (line 50) | type Owner struct function New (line 62) | func New(auth aws.Auth, region aws.Region) *S3 { type ACL (line 96) | type ACL constant Private (line 99) | Private = ACL("private") constant PublicRead (line 100) | PublicRead = ACL("public-read") constant PublicReadWrite (line 101) | PublicReadWrite = ACL("public-read-write") constant AuthenticatedRead (line 102) | AuthenticatedRead = ACL("authenticated-read") constant BucketOwnerRead (line 103) | BucketOwnerRead = ACL("bucket-owner-read") constant BucketOwnerFull (line 104) | BucketOwnerFull = ACL("bucket-owner-full-control") type ListBucketsResp (line 108) | type ListBucketsResp struct type Object (line 381) | type Object struct type MultiObjectDeleteBody (line 385) | type MultiObjectDeleteBody struct function base64md5 (line 391) | func base64md5(data []byte) string { type ListResp (line 425) | type ListResp struct type Key (line 442) | type Key struct type request (line 642) | type request struct method url (line 692) | func (req *request) url(full bool) (*url.URL, error) { function amazonShouldEscape (line 655) | func amazonShouldEscape(c byte) bool { function amazonEscape (line 661) | func amazonEscape(s string) string { type Error (line 826) | type Error struct method Error (line 835) | func (e *Error) Error() string { function buildError (line 839) | func buildError(r *http.Response) error { function shouldRetry (line 865) | func shouldRetry(err error) bool { function hasCode (line 890) | func hasCode(err error, code string) bool { FILE: vendor/github.com/mitchellh/goamz/s3/s3test/server.go constant debug (line 24) | debug = false type s3Error (line 26) | type s3Error struct type action (line 36) | type action struct type Config (line 46) | type Config struct method send409Conflict (line 55) | func (c *Config) send409Conflict() bool { type Server (line 64) | type Server struct method Quit (line 116) | func (srv *Server) Quit() { method URL (line 121) | func (srv *Server) URL() string { method serveHTTP (line 134) | func (srv *Server) serveHTTP(w http.ResponseWriter, req *http.Request) { method resourceForURL (line 228) | func (srv *Server) resourceForURL(u *url.URL) (r resource) { type bucket (line 73) | type bucket struct type object (line 80) | type object struct method s3Key (line 421) | func (obj *object) s3Key() s3.Key { type resource (line 91) | type resource interface function NewServer (line 98) | func NewServer(config *Config) (*Server, error) { function fatalf (line 125) | func fatalf(code int, codeStr string, errf string, a ...interface{}) { function xmlMarshal (line 196) | func xmlMarshal(w io.Writer, x interface{}) { type nullResource (line 279) | type nullResource struct method put (line 286) | func (nullResource) put(a *action) interface{} { return notAllowed() } method get (line 287) | func (nullResource) get(a *action) interface{} { return notAllowed() } method post (line 288) | func (nullResource) post(a *action) interface{} { return notAllowed() } method delete (line 289) | func (nullResource) delete(a *action) interface{} { return notAllowed() } function notAllowed (line 281) | func notAllowed() interface{} { constant timeFormat (line 291) | timeFormat = "2006-01-02T15:04:05.000Z07:00" type serviceResource (line 293) | type serviceResource struct method put (line 297) | func (serviceResource) put(a *action) interface{} { return notAllow... method post (line 298) | func (serviceResource) post(a *action) interface{} { return notAllow... method delete (line 299) | func (serviceResource) delete(a *action) interface{} { return notAllow... method get (line 303) | func (r serviceResource) get(a *action) interface{} { type bucketResource (line 324) | type bucketResource struct method get (line 331) | func (r bucketResource) get(a *action) interface{} { method delete (line 433) | func (r bucketResource) delete(a *action) interface{} { method put (line 447) | func (r bucketResource) put(a *action) interface{} { method post (line 472) | func (bucketResource) post(a *action) interface{} { type orderedObjects (line 409) | type orderedObjects method Len (line 411) | func (s orderedObjects) Len() int { method Swap (line 414) | func (s orderedObjects) Swap(i, j int) { method Less (line 417) | func (s orderedObjects) Less(i, j int) bool { function validBucketName (line 493) | func validBucketName(name string) bool { type objectResource (line 523) | type objectResource struct method get (line 532) | func (objr objectResource) get(a *action) interface{} { method put (line 586) | func (objr objectResource) put(a *action) interface{} { method delete (line 637) | func (objr objectResource) delete(a *action) interface{} { method post (line 642) | func (objr objectResource) post(a *action) interface{} { type CreateBucketConfiguration (line 647) | type CreateBucketConfiguration struct function locationConstraint (line 653) | func locationConstraint(a *action) string { FILE: vendor/github.com/mitchellh/goamz/s3/sign.go function sign (line 42) | func sign(auth aws.Auth, method, canonicalPath string, params, headers m... FILE: vendor/github.com/trustmaster/go-aspell/aspell.go type Speller (line 17) | type Speller struct method Config (line 91) | func (s Speller) Config(name string) string { method Check (line 103) | func (s Speller) Check(word string) bool { method Delete (line 111) | func (s Speller) Delete() { method Suggest (line 142) | func (s Speller) Suggest(word string) []string { method Replace (line 152) | func (s Speller) Replace(misspelled, correct string) bool { method MainWordList (line 164) | func (s Speller) MainWordList() ([]string, error) { function NewSpeller (line 47) | func NewSpeller(options map[string]string) (Speller, error) { function wordListToSlice (line 120) | func wordListToSlice(list *C.AspellWordList) []string { type Dict (line 173) | type Dict struct function Dicts (line 182) | func Dicts() []Dict { FILE: vendor/github.com/vaughan0/go-ini/ini.go type ErrSyntax (line 19) | type ErrSyntax struct method Error (line 24) | func (e ErrSyntax) Error() string { type File (line 29) | type File method Section (line 35) | func (f File) Section(name string) Section { method Get (line 45) | func (f File) Get(section, key string) (value string, ok bool) { method Load (line 53) | func (f File) Load(in io.Reader) (err error) { method LoadFile (line 62) | func (f File) LoadFile(file string) (err error) { type Section (line 32) | type Section function parseFile (line 71) | func parseFile(in *bufio.Reader, file File) (err error) { function Load (line 112) | func Load(in io.Reader) (File, error) { function LoadFile (line 119) | func LoadFile(filename string) (File, error) { FILE: vendor/golang.org/x/crypto/ssh/terminal/terminal.go type EscapeCodes (line 16) | type EscapeCodes struct type Terminal (line 39) | type Terminal struct method queue (line 218) | func (t *Terminal) queue(data []rune) { method moveCursorToPos (line 232) | func (t *Terminal) moveCursorToPos(pos int) { method move (line 266) | func (t *Terminal) move(up, down, left, right int) { method clearLineToRight (line 297) | func (t *Terminal) clearLineToRight() { method setLine (line 304) | func (t *Terminal) setLine(newLine []rune, newPos int) { method advanceCursor (line 317) | func (t *Terminal) advanceCursor(places int) { method eraseNPreviousChars (line 340) | func (t *Terminal) eraseNPreviousChars(n int) { method countToLeftWord (line 365) | func (t *Terminal) countToLeftWord() int { method countToRightWord (line 390) | func (t *Terminal) countToRightWord() int { method handleKey (line 430) | func (t *Terminal) handleKey(key rune) (line string, ok bool) { method addKeyToLine (line 567) | func (t *Terminal) addKeyToLine(key rune) { method writeLine (line 583) | func (t *Terminal) writeLine(line []rune) { method Write (line 596) | func (t *Terminal) Write(buf []byte) (n int, err error) { method ReadPassword (line 643) | func (t *Terminal) ReadPassword(prompt string) (line string, err error) { method ReadLine (line 660) | func (t *Terminal) ReadLine() (line string, err error) { method readLine (line 667) | func (t *Terminal) readLine() (line string, err error) { method SetPrompt (line 748) | func (t *Terminal) SetPrompt(prompt string) { method clearAndRepaintLinePlusNPrevious (line 755) | func (t *Terminal) clearAndRepaintLinePlusNPrevious(numPrevLines int) { method SetSize (line 776) | func (t *Terminal) SetSize(width, height int) error { method SetBracketedPasteMode (line 846) | func (t *Terminal) SetBracketedPasteMode(on bool) { function NewTerminal (line 101) | func NewTerminal(c io.ReadWriter, prompt string) *Terminal { constant keyCtrlD (line 114) | keyCtrlD = 4 constant keyCtrlU (line 115) | keyCtrlU = 21 constant keyEnter (line 116) | keyEnter = '\r' constant keyEscape (line 117) | keyEscape = 27 constant keyBackspace (line 118) | keyBackspace = 127 constant keyUnknown (line 119) | keyUnknown = 0xd800 /* UTF-16 surrogate area */ + iota constant keyUp (line 120) | keyUp constant keyDown (line 121) | keyDown constant keyLeft (line 122) | keyLeft constant keyRight (line 123) | keyRight constant keyAltLeft (line 124) | keyAltLeft constant keyAltRight (line 125) | keyAltRight constant keyHome (line 126) | keyHome constant keyEnd (line 127) | keyEnd constant keyDeleteWord (line 128) | keyDeleteWord constant keyDeleteLine (line 129) | keyDeleteLine constant keyClearScreen (line 130) | keyClearScreen constant keyPasteStart (line 131) | keyPasteStart constant keyPasteEnd (line 132) | keyPasteEnd function bytesToKey (line 140) | func bytesToKey(b []byte, pasteActive bool) (rune, []byte) { function isPrintable (line 225) | func isPrintable(key rune) bool { constant maxLineLength (line 302) | maxLineLength = 4096 function visualLength (line 408) | func visualLength(runes []rune) int { type pasteIndicatorError (line 829) | type pasteIndicatorError struct method Error (line 831) | func (pasteIndicatorError) Error() string { type stRingBuffer (line 855) | type stRingBuffer struct method Add (line 865) | func (s *stRingBuffer) Add(a string) { method NthPreviousEntry (line 883) | func (s *stRingBuffer) NthPreviousEntry(n int) (value string, ok bool) { FILE: vendor/golang.org/x/crypto/ssh/terminal/util.go type State (line 26) | type State struct function IsTerminal (line 31) | func IsTerminal(fd int) bool { function MakeRaw (line 40) | func MakeRaw(fd int) (*State, error) { function GetState (line 58) | func GetState(fd int) (*State, error) { function Restore (line 69) | func Restore(fd int, state *State) error { function GetSize (line 75) | func GetSize(fd int) (width, height int, err error) { function ReadPassword (line 87) | func ReadPassword(fd int) ([]byte, error) { FILE: vendor/golang.org/x/crypto/ssh/terminal/util_bsd.go constant ioctlReadTermios (line 11) | ioctlReadTermios = syscall.TIOCGETA constant ioctlWriteTermios (line 12) | ioctlWriteTermios = syscall.TIOCSETA FILE: vendor/golang.org/x/crypto/ssh/terminal/util_linux.go constant ioctlReadTermios (line 10) | ioctlReadTermios = 0x5401 constant ioctlWriteTermios (line 11) | ioctlWriteTermios = 0x5402 FILE: vendor/golang.org/x/crypto/ssh/terminal/util_windows.go constant enableLineInput (line 26) | enableLineInput = 2 constant enableEchoInput (line 27) | enableEchoInput = 4 constant enableProcessedInput (line 28) | enableProcessedInput = 1 constant enableWindowInput (line 29) | enableWindowInput = 8 constant enableMouseInput (line 30) | enableMouseInput = 16 constant enableInsertMode (line 31) | enableInsertMode = 32 constant enableQuickEditMode (line 32) | enableQuickEditMode = 64 constant enableExtendedFlags (line 33) | enableExtendedFlags = 128 constant enableAutoPosition (line 34) | enableAutoPosition = 256 constant enableProcessedOutput (line 35) | enableProcessedOutput = 1 constant enableWrapAtEolOutput (line 36) | enableWrapAtEolOutput = 2 type short (line 48) | type short type word (line 49) | type word type coord (line 51) | type coord struct type smallRect (line 55) | type smallRect struct type consoleScreenBufferInfo (line 61) | type consoleScreenBufferInfo struct type State (line 70) | type State struct function IsTerminal (line 75) | func IsTerminal(fd int) bool { function MakeRaw (line 84) | func MakeRaw(fd int) (*State, error) { function GetState (line 100) | func GetState(fd int) (*State, error) { function Restore (line 111) | func Restore(fd int, state *State) error { function GetSize (line 117) | func GetSize(fd int) (width, height int, err error) { function ReadPassword (line 129) | func ReadPassword(fd int) ([]byte, error) { FILE: vendor/golang.org/x/net/context/context.go type Context (line 50) | type Context interface type emptyCtx (line 150) | type emptyCtx method Deadline (line 152) | func (*emptyCtx) Deadline() (deadline time.Time, ok bool) { method Done (line 156) | func (*emptyCtx) Done() <-chan struct{} { method Err (line 160) | func (*emptyCtx) Err() error { method Value (line 164) | func (*emptyCtx) Value(key interface{}) interface{} { method String (line 168) | func (e *emptyCtx) String() string { function Background (line 187) | func Background() Context { function TODO (line 196) | func TODO() Context { type CancelFunc (line 203) | type CancelFunc function WithCancel (line 211) | func WithCancel(parent Context) (ctx Context, cancel CancelFunc) { function newCancelCtx (line 218) | func newCancelCtx(parent Context) cancelCtx { function propagateCancel (line 226) | func propagateCancel(parent Context, child canceler) { function parentCancelCtx (line 256) | func parentCancelCtx(parent Context) (*cancelCtx, bool) { function removeChild (line 272) | func removeChild(parent Context, child canceler) { type canceler (line 286) | type canceler interface type cancelCtx (line 293) | type cancelCtx struct method Done (line 303) | func (c *cancelCtx) Done() <-chan struct{} { method Err (line 307) | func (c *cancelCtx) Err() error { method String (line 313) | func (c *cancelCtx) String() string { method cancel (line 319) | func (c *cancelCtx) cancel(removeFromParent bool, err error) { function WithDeadline (line 351) | func WithDeadline(parent Context, deadline time.Time) (Context, CancelFu... type timerCtx (line 379) | type timerCtx struct method Deadline (line 386) | func (c *timerCtx) Deadline() (deadline time.Time, ok bool) { method String (line 390) | func (c *timerCtx) String() string { method cancel (line 394) | func (c *timerCtx) cancel(removeFromParent bool, err error) { function WithTimeout (line 418) | func WithTimeout(parent Context, timeout time.Duration) (Context, Cancel... function WithValue (line 427) | func WithValue(parent Context, key interface{}, val interface{}) Context { type valueCtx (line 433) | type valueCtx struct method String (line 438) | func (c *valueCtx) String() string { method Value (line 442) | func (c *valueCtx) Value(key interface{}) interface{} { FILE: vendor/golang.org/x/oauth2/client_appengine.go function init (line 19) | func init() { function contextClientAppEngine (line 23) | func contextClientAppEngine(ctx context.Context) (*http.Client, error) { FILE: vendor/golang.org/x/oauth2/clientcredentials/clientcredentials.go function tokenFromInternal (line 28) | func tokenFromInternal(t *internal.Token) *oauth2.Token { function retrieveToken (line 44) | func retrieveToken(ctx context.Context, c *Config, v url.Values) (*oauth... type Config (line 54) | type Config struct method Token (line 72) | func (c *Config) Token(ctx context.Context) (*oauth2.Token, error) { method Client (line 83) | func (c *Config) Client(ctx context.Context) *http.Client { method TokenSource (line 92) | func (c *Config) TokenSource(ctx context.Context) oauth2.TokenSource { type tokenSource (line 100) | type tokenSource struct method Token (line 107) | func (c *tokenSource) Token() (*oauth2.Token, error) { FILE: vendor/golang.org/x/oauth2/google/appengine.go function AppEngineTokenSource (line 26) | func AppEngineTokenSource(ctx context.Context, scope ...string) oauth2.T... type tokenLock (line 45) | type tokenLock struct type appEngineTokenSource (line 50) | type appEngineTokenSource struct method Token (line 56) | func (ts *appEngineTokenSource) Token() (*oauth2.Token, error) { FILE: vendor/golang.org/x/oauth2/google/appengine_hook.go function init (line 11) | func init() { FILE: vendor/golang.org/x/oauth2/google/default.go function DefaultClient (line 33) | func DefaultClient(ctx context.Context, scope ...string) (*http.Client, ... function DefaultTokenSource (line 59) | func DefaultTokenSource(ctx context.Context, scope ...string) (oauth2.To... function wellKnownFile (line 101) | func wellKnownFile() string { function tokenSourceFromFile (line 109) | func tokenSourceFromFile(ctx context.Context, filename string, scopes []... FILE: vendor/golang.org/x/oauth2/google/google.go constant JWTTokenURL (line 36) | JWTTokenURL = "https://accounts.google.com/o/oauth2/token" function ConfigFromJSON (line 43) | func ConfigFromJSON(jsonKey []byte, scope ...string) (*oauth2.Config, er... function JWTConfigFromJSON (line 86) | func JWTConfigFromJSON(jsonKey []byte, scope ...string) (*jwt.Config, er... function ComputeTokenSource (line 108) | func ComputeTokenSource(account string) oauth2.TokenSource { type computeSource (line 112) | type computeSource struct method Token (line 116) | func (cs computeSource) Token() (*oauth2.Token, error) { FILE: vendor/golang.org/x/oauth2/google/sdk.go type sdkCredentials (line 24) | type sdkCredentials struct type SDKConfig (line 42) | type SDKConfig struct method Client (line 127) | func (c *SDKConfig) Client(ctx context.Context) *http.Client { method TokenSource (line 140) | func (c *SDKConfig) TokenSource(ctx context.Context) oauth2.TokenSource { method Scopes (line 145) | func (c *SDKConfig) Scopes() []string { function NewSDKConfig (line 53) | func NewSDKConfig(account string) (*SDKConfig, error) { function guessUnixHomeDir (line 162) | func guessUnixHomeDir() string { FILE: vendor/golang.org/x/oauth2/internal/oauth2.go function ParseKey (line 24) | func ParseKey(key []byte) (*rsa.PrivateKey, error) { function ParseINI (line 43) | func ParseINI(ini io.Reader) (map[string]map[string]string, error) { function CondVal (line 71) | func CondVal(v string) []string { FILE: vendor/golang.org/x/oauth2/internal/token.go type Token (line 30) | type Token struct type tokenJSON (line 58) | type tokenJSON struct method expiry (line 66) | func (e *tokenJSON) expiry() (t time.Time) { type expirationTime (line 76) | type expirationTime method UnmarshalJSON (line 78) | func (e *expirationTime) UnmarshalJSON(b []byte) error { function providerAuthHeaderWorks (line 122) | func providerAuthHeaderWorks(tokenURL string) bool { function RetrieveToken (line 137) | func RetrieveToken(ctx context.Context, ClientID, ClientSecret, TokenURL... FILE: vendor/golang.org/x/oauth2/internal/transport.go type ContextKey (line 21) | type ContextKey struct type ContextClientFunc (line 27) | type ContextClientFunc function RegisterContextClientFunc (line 31) | func RegisterContextClientFunc(fn ContextClientFunc) { function ContextClient (line 35) | func ContextClient(ctx context.Context) (*http.Client, error) { function ContextTransport (line 51) | func ContextTransport(ctx context.Context) http.RoundTripper { type ErrorTransport (line 63) | type ErrorTransport struct method RoundTrip (line 65) | func (t ErrorTransport) RoundTrip(*http.Request) (*http.Response, erro... FILE: vendor/golang.org/x/oauth2/jws/jws.go type ClaimSet (line 26) | type ClaimSet struct method encode (line 49) | func (c *ClaimSet) encode() (string, error) { type Header (line 90) | type Header struct method encode (line 98) | func (h *Header) encode() (string, error) { function Decode (line 107) | func Decode(payload string) (*ClaimSet, error) { function Encode (line 124) | func Encode(header *Header, c *ClaimSet, signature *rsa.PrivateKey) (str... function base64Encode (line 146) | func base64Encode(b []byte) string { function base64Decode (line 151) | func base64Decode(s string) ([]byte, error) { FILE: vendor/golang.org/x/oauth2/jwt/jwt.go type Config (line 34) | type Config struct method TokenSource (line 61) | func (c *Config) TokenSource(ctx context.Context) oauth2.TokenSource { method Client (line 70) | func (c *Config) Client(ctx context.Context) *http.Client { type jwtSource (line 76) | type jwtSource struct method Token (line 81) | func (js jwtSource) Token() (*oauth2.Token, error) { FILE: vendor/golang.org/x/oauth2/oauth2.go type Config (line 28) | type Config struct method AuthCodeURL (line 110) | func (c *Config) AuthCodeURL(state string, opts ...AuthCodeOption) str... method PasswordCredentialsToken (line 143) | func (c *Config) PasswordCredentialsToken(ctx context.Context, usernam... method Exchange (line 162) | func (c *Config) Exchange(ctx context.Context, code string) (*Token, e... method Client (line 175) | func (c *Config) Client(ctx context.Context, t *Token) *http.Client { method TokenSource (line 183) | func (c *Config) TokenSource(ctx context.Context, t *Token) TokenSource { type TokenSource (line 50) | type TokenSource interface type Endpoint (line 59) | type Endpoint struct type AuthCodeOption (line 86) | type AuthCodeOption interface type setParam (line 90) | type setParam struct method setValue (line 92) | func (p setParam) setValue(m url.Values) { m.Set(p.k, p.v) } function SetAuthURLParam (line 96) | func SetAuthURLParam(key, value string) AuthCodeOption { type tokenRefresher (line 199) | type tokenRefresher struct method Token (line 209) | func (tf *tokenRefresher) Token() (*Token, error) { type reuseTokenSource (line 232) | type reuseTokenSource struct method Token (line 242) | func (s *reuseTokenSource) Token() (*Token, error) { function StaticTokenSource (line 259) | func StaticTokenSource(t *Token) TokenSource { type staticTokenSource (line 264) | type staticTokenSource struct method Token (line 268) | func (s staticTokenSource) Token() (*Token, error) { function NewClient (line 282) | func NewClient(ctx context.Context, src TokenSource) *http.Client { function ReuseTokenSource (line 310) | func ReuseTokenSource(t *Token, src TokenSource) TokenSource { FILE: vendor/golang.org/x/oauth2/token.go constant expiryDelta (line 20) | expiryDelta = 10 * time.Second type Token (line 29) | type Token struct method Type (line 56) | func (t *Token) Type() string { method SetAuthHeader (line 77) | func (t *Token) SetAuthHeader(r *http.Request) { method WithExtra (line 84) | func (t *Token) WithExtra(extra interface{}) *Token { method Extra (line 94) | func (t *Token) Extra(key string) interface{} { method expired (line 107) | func (t *Token) expired() bool { method Valid (line 115) | func (t *Token) Valid() bool { function tokenFromInternal (line 121) | func tokenFromInternal(t *internal.Token) *Token { function retrieveToken (line 137) | func retrieveToken(ctx context.Context, c *Config, v url.Values) (*Token... FILE: vendor/golang.org/x/oauth2/transport.go type Transport (line 20) | type Transport struct method RoundTrip (line 36) | func (t *Transport) RoundTrip(req *http.Request) (*http.Response, erro... method CancelRequest (line 61) | func (t *Transport) CancelRequest(req *http.Request) { method base (line 74) | func (t *Transport) base() http.RoundTripper { method setModReq (line 81) | func (t *Transport) setModReq(orig, mod *http.Request) { function cloneRequest (line 96) | func cloneRequest(r *http.Request) *http.Request { type onEOFReader (line 108) | type onEOFReader struct method Read (line 113) | func (r *onEOFReader) Read(p []byte) (n int, err error) { method Close (line 121) | func (r *onEOFReader) Close() error { method runFunc (line 127) | func (r *onEOFReader) runFunc() { FILE: vendor/google.golang.org/api/bigquery/v2/bigquery-gen.go constant apiId (line 39) | apiId = "bigquery:v2" constant apiName (line 40) | apiName = "bigquery" constant apiVersion (line 41) | apiVersion = "v2" constant basePath (line 42) | basePath = "https://www.googleapis.com/bigquery/v2/" constant BigqueryScope (line 47) | BigqueryScope = "https://www.googleapis.com/auth/bigquery" constant BigqueryInsertdataScope (line 50) | BigqueryInsertdataScope = "https://www.googleapis.com/auth/bigquery.inse... constant CloudPlatformScope (line 53) | CloudPlatformScope = "https://www.googleapis.com/auth/cloud-platform" constant DevstorageFullControlScope (line 56) | DevstorageFullControlScope = "https://www.googleapis.com/auth/devstorage... constant DevstorageReadOnlyScope (line 59) | DevstorageReadOnlyScope = "https://www.googleapis.com/auth/devstorage.re... constant DevstorageReadWriteScope (line 62) | DevstorageReadWriteScope = "https://www.googleapis.com/auth/devstorage.r... function New (line 65) | func New(client *http.Client) (*Service, error) { type Service (line 78) | type Service struct method userAgent (line 94) | func (s *Service) userAgent() string { function NewDatasetsService (line 101) | func NewDatasetsService(s *Service) *DatasetsService { type DatasetsService (line 106) | type DatasetsService struct method Delete (line 1269) | func (r *DatasetsService) Delete(projectId string, datasetId string) *... method Get (line 1365) | func (r *DatasetsService) Get(projectId string, datasetId string) *Dat... method Insert (line 1452) | func (r *DatasetsService) Insert(projectId string, dataset *Dataset) *... method List (line 1540) | func (r *DatasetsService) List(projectId string) *DatasetsListCall { method Patch (line 1668) | func (r *DatasetsService) Patch(projectId string, datasetId string, da... method Update (line 1768) | func (r *DatasetsService) Update(projectId string, datasetId string, d... function NewJobsService (line 110) | func NewJobsService(s *Service) *JobsService { type JobsService (line 115) | type JobsService struct method Get (line 1867) | func (r *JobsService) Get(projectId string, jobId string) *JobsGetCall { method GetQueryResults (line 1954) | func (r *JobsService) GetQueryResults(projectId string, jobId string) ... method Insert (line 2112) | func (r *JobsService) Insert(projectId string, job *Job) *JobsInsertCa... method List (line 2293) | func (r *JobsService) List(projectId string) *JobsListCall { method Query (line 2476) | func (r *JobsService) Query(projectId string, queryrequest *QueryReque... function NewProjectsService (line 119) | func NewProjectsService(s *Service) *ProjectsService { type ProjectsService (line 124) | type ProjectsService struct method List (line 2563) | func (r *ProjectsService) List() *ProjectsListCall { function NewTabledataService (line 128) | func NewTabledataService(s *Service) *TabledataService { type TabledataService (line 133) | type TabledataService struct method InsertAll (line 2663) | func (r *TabledataService) InsertAll(projectId string, datasetId strin... method List (line 2772) | func (r *TabledataService) List(projectId string, datasetId string, ta... function NewTablesService (line 137) | func NewTablesService(s *Service) *TablesService { type TablesService (line 142) | type TablesService struct method Delete (line 2917) | func (r *TablesService) Delete(projectId string, datasetId string, tab... method Get (line 3009) | func (r *TablesService) Get(projectId string, datasetId string, tableI... method Insert (line 3106) | func (r *TablesService) Insert(projectId string, datasetId string, tab... method List (line 3204) | func (r *TablesService) List(projectId string, datasetId string) *Tabl... method Patch (line 3327) | func (r *TablesService) Patch(projectId string, datasetId string, tabl... method Update (line 3437) | func (r *TablesService) Update(projectId string, datasetId string, tab... type CsvOptions (line 146) | type CsvOptions struct type Dataset (line 189) | type Dataset struct type DatasetAccess (line 253) | type DatasetAccess struct type DatasetList (line 287) | type DatasetList struct type DatasetListDatasets (line 307) | type DatasetListDatasets struct type DatasetReference (line 323) | type DatasetReference struct type ErrorProto (line 333) | type ErrorProto struct type ExternalDataConfiguration (line 348) | type ExternalDataConfiguration struct type GetQueryResultsResponse (line 387) | type GetQueryResultsResponse struct type Job (line 433) | type Job struct type JobConfiguration (line 466) | type JobConfiguration struct type JobConfigurationExtract (line 489) | type JobConfigurationExtract struct type JobConfigurationLink (line 522) | type JobConfigurationLink struct type JobConfigurationLoad (line 551) | type JobConfigurationLoad struct type JobConfigurationQuery (line 670) | type JobConfigurationQuery struct type JobConfigurationTableCopy (line 736) | type JobConfigurationTableCopy struct type JobList (line 768) | type JobList struct type JobListJobs (line 785) | type JobListJobs struct type JobReference (line 819) | type JobReference struct type JobStatistics (line 829) | type JobStatistics struct type JobStatistics2 (line 858) | type JobStatistics2 struct type JobStatistics3 (line 868) | type JobStatistics3 struct type JobStatistics4 (line 887) | type JobStatistics4 struct type JobStatus (line 895) | type JobStatus struct type JsonValue (line 909) | type JsonValue interface type ProjectList (line 911) | type ProjectList struct type ProjectListProjects (line 928) | type ProjectListProjects struct type ProjectReference (line 945) | type ProjectReference struct type QueryRequest (line 951) | type QueryRequest struct type QueryResponse (line 998) | type QueryResponse struct type Table (line 1041) | type Table struct type TableCell (line 1100) | type TableCell struct type TableDataInsertAllRequest (line 1104) | type TableDataInsertAllRequest struct type TableDataInsertAllRequestRows (line 1122) | type TableDataInsertAllRequestRows struct type TableDataInsertAllResponse (line 1134) | type TableDataInsertAllResponse struct type TableDataInsertAllResponseInsertErrors (line 1142) | type TableDataInsertAllResponseInsertErrors struct type TableDataList (line 1151) | type TableDataList struct type TableFieldSchema (line 1170) | type TableFieldSchema struct type TableList (line 1194) | type TableList struct type TableListTables (line 1211) | type TableListTables struct type TableReference (line 1228) | type TableReference struct type TableRow (line 1241) | type TableRow struct type TableSchema (line 1245) | type TableSchema struct type ViewDefinition (line 1250) | type ViewDefinition struct type DatasetsDeleteCall (line 1258) | type DatasetsDeleteCall struct method DeleteContents (line 1279) | func (c *DatasetsDeleteCall) DeleteContents(deleteContents bool) *Data... method Fields (line 1287) | func (c *DatasetsDeleteCall) Fields(s ...googleapi.Field) *DatasetsDel... method Do (line 1292) | func (c *DatasetsDeleteCall) Do() error { type DatasetsGetCall (line 1357) | type DatasetsGetCall struct method Fields (line 1375) | func (c *DatasetsGetCall) Fields(s ...googleapi.Field) *DatasetsGetCall { method Do (line 1380) | func (c *DatasetsGetCall) Do() (*Dataset, error) { type DatasetsInsertCall (line 1444) | type DatasetsInsertCall struct method Fields (line 1462) | func (c *DatasetsInsertCall) Fields(s ...googleapi.Field) *DatasetsIns... method Do (line 1467) | func (c *DatasetsInsertCall) Do() (*Dataset, error) { type DatasetsListCall (line 1532) | type DatasetsListCall struct method All (line 1548) | func (c *DatasetsListCall) All(all bool) *DatasetsListCall { method MaxResults (line 1555) | func (c *DatasetsListCall) MaxResults(maxResults int64) *DatasetsListC... method PageToken (line 1562) | func (c *DatasetsListCall) PageToken(pageToken string) *DatasetsListCa... method Fields (line 1570) | func (c *DatasetsListCall) Fields(s ...googleapi.Field) *DatasetsListC... method Do (line 1575) | func (c *DatasetsListCall) Do() (*DatasetList, error) { type DatasetsPatchCall (line 1656) | type DatasetsPatchCall struct method Fields (line 1679) | func (c *DatasetsPatchCall) Fields(s ...googleapi.Field) *DatasetsPatc... method Do (line 1684) | func (c *DatasetsPatchCall) Do() (*Dataset, error) { type DatasetsUpdateCall (line 1757) | type DatasetsUpdateCall struct method Fields (line 1779) | func (c *DatasetsUpdateCall) Fields(s ...googleapi.Field) *DatasetsUpd... method Do (line 1784) | func (c *DatasetsUpdateCall) Do() (*Dataset, error) { type JobsGetCall (line 1857) | type JobsGetCall struct method Fields (line 1877) | func (c *JobsGetCall) Fields(s ...googleapi.Field) *JobsGetCall { method Do (line 1882) | func (c *JobsGetCall) Do() (*Job, error) { type JobsGetQueryResultsCall (line 1946) | type JobsGetQueryResultsCall struct method MaxResults (line 1963) | func (c *JobsGetQueryResultsCall) MaxResults(maxResults int64) *JobsGe... method PageToken (line 1970) | func (c *JobsGetQueryResultsCall) PageToken(pageToken string) *JobsGet... method StartIndex (line 1977) | func (c *JobsGetQueryResultsCall) StartIndex(startIndex uint64) *JobsG... method TimeoutMs (line 1986) | func (c *JobsGetQueryResultsCall) TimeoutMs(timeoutMs int64) *JobsGetQ... method Fields (line 1994) | func (c *JobsGetQueryResultsCall) Fields(s ...googleapi.Field) *JobsGe... method Do (line 1999) | func (c *JobsGetQueryResultsCall) Do() (*GetQueryResultsResponse, erro... type JobsInsertCall (line 2098) | type JobsInsertCall struct method Media (line 2121) | func (c *JobsInsertCall) Media(r io.Reader) *JobsInsertCall { method ResumableMedia (line 2131) | func (c *JobsInsertCall) ResumableMedia(ctx context.Context, r io.Read... method ProgressUpdater (line 2142) | func (c *JobsInsertCall) ProgressUpdater(pu googleapi.ProgressUpdater)... method Fields (line 2150) | func (c *JobsInsertCall) Fields(s ...googleapi.Field) *JobsInsertCall { method Do (line 2155) | func (c *JobsInsertCall) Do() (*Job, error) { type JobsListCall (line 2282) | type JobsListCall struct method AllUsers (line 2301) | func (c *JobsListCall) AllUsers(allUsers bool) *JobsListCall { method MaxResults (line 2308) | func (c *JobsListCall) MaxResults(maxResults int64) *JobsListCall { method PageToken (line 2315) | func (c *JobsListCall) PageToken(pageToken string) *JobsListCall { method Projection (line 2326) | func (c *JobsListCall) Projection(projection string) *JobsListCall { method StateFilter (line 2338) | func (c *JobsListCall) StateFilter(stateFilter string) *JobsListCall { method Fields (line 2346) | func (c *JobsListCall) Fields(s ...googleapi.Field) *JobsListCall { method Do (line 2351) | func (c *JobsListCall) Do() (*JobList, error) { type JobsQueryCall (line 2467) | type JobsQueryCall struct method Fields (line 2486) | func (c *JobsQueryCall) Fields(s ...googleapi.Field) *JobsQueryCall { method Do (line 2491) | func (c *JobsQueryCall) Do() (*QueryResponse, error) { type ProjectsListCall (line 2556) | type ProjectsListCall struct method MaxResults (line 2570) | func (c *ProjectsListCall) MaxResults(maxResults int64) *ProjectsListC... method PageToken (line 2577) | func (c *ProjectsListCall) PageToken(pageToken string) *ProjectsListCa... method Fields (line 2585) | func (c *ProjectsListCall) Fields(s ...googleapi.Field) *ProjectsListC... method Do (line 2590) | func (c *ProjectsListCall) Do() (*ProjectList, error) { type TabledataInsertAllCall (line 2652) | type TabledataInsertAllCall struct method Fields (line 2675) | func (c *TabledataInsertAllCall) Fields(s ...googleapi.Field) *Tableda... method Do (line 2680) | func (c *TabledataInsertAllCall) Do() (*TableDataInsertAllResponse, er... type TabledataListCall (line 2762) | type TabledataListCall struct method MaxResults (line 2782) | func (c *TabledataListCall) MaxResults(maxResults int64) *TabledataLis... method PageToken (line 2789) | func (c *TabledataListCall) PageToken(pageToken string) *TabledataList... method StartIndex (line 2796) | func (c *TabledataListCall) StartIndex(startIndex uint64) *TabledataLi... method Fields (line 2804) | func (c *TabledataListCall) Fields(s ...googleapi.Field) *TabledataLis... method Do (line 2809) | func (c *TabledataListCall) Do() (*TableDataList, error) { type TablesDeleteCall (line 2907) | type TablesDeleteCall struct method Fields (line 2928) | func (c *TablesDeleteCall) Fields(s ...googleapi.Field) *TablesDeleteC... method Do (line 2933) | func (c *TablesDeleteCall) Do() error { type TablesGetCall (line 2998) | type TablesGetCall struct method Fields (line 3020) | func (c *TablesGetCall) Fields(s ...googleapi.Field) *TablesGetCall { method Do (line 3025) | func (c *TablesGetCall) Do() (*Table, error) { type TablesInsertCall (line 3097) | type TablesInsertCall struct method Fields (line 3117) | func (c *TablesInsertCall) Fields(s ...googleapi.Field) *TablesInsertC... method Do (line 3122) | func (c *TablesInsertCall) Do() (*Table, error) { type TablesListCall (line 3195) | type TablesListCall struct method MaxResults (line 3213) | func (c *TablesListCall) MaxResults(maxResults int64) *TablesListCall { method PageToken (line 3220) | func (c *TablesListCall) PageToken(pageToken string) *TablesListCall { method Fields (line 3228) | func (c *TablesListCall) Fields(s ...googleapi.Field) *TablesListCall { method Do (line 3233) | func (c *TablesListCall) Do() (*TableList, error) { type TablesPatchCall (line 3314) | type TablesPatchCall struct method Fields (line 3339) | func (c *TablesPatchCall) Fields(s ...googleapi.Field) *TablesPatchCall { method Do (line 3344) | func (c *TablesPatchCall) Do() (*Table, error) { type TablesUpdateCall (line 3425) | type TablesUpdateCall struct method Fields (line 3449) | func (c *TablesUpdateCall) Fields(s ...googleapi.Field) *TablesUpdateC... method Do (line 3454) | func (c *TablesUpdateCall) Do() (*Table, error) { FILE: vendor/google.golang.org/api/container/v1beta1/container-gen.go constant apiId (line 39) | apiId = "container:v1beta1" constant apiName (line 40) | apiName = "container" constant apiVersion (line 41) | apiVersion = "v1beta1" constant basePath (line 42) | basePath = "https://www.googleapis.com/container/v1beta1/projects/" constant CloudPlatformScope (line 47) | CloudPlatformScope = "https://www.googleapis.com/auth/cloud-platform" function New (line 50) | func New(client *http.Client) (*Service, error) { type Service (line 59) | type Service struct method userAgent (line 67) | func (s *Service) userAgent() string { function NewProjectsService (line 74) | func NewProjectsService(s *Service) *ProjectsService { type ProjectsService (line 82) | type ProjectsService struct function NewProjectsClustersService (line 92) | func NewProjectsClustersService(s *Service) *ProjectsClustersService { type ProjectsClustersService (line 97) | type ProjectsClustersService struct method List (line 363) | func (r *ProjectsClustersService) List(projectId string) *ProjectsClus... function NewProjectsOperationsService (line 101) | func NewProjectsOperationsService(s *Service) *ProjectsOperationsService { type ProjectsOperationsService (line 106) | type ProjectsOperationsService struct method List (line 439) | func (r *ProjectsOperationsService) List(projectId string) *ProjectsOp... function NewProjectsZonesService (line 110) | func NewProjectsZonesService(s *Service) *ProjectsZonesService { type ProjectsZonesService (line 117) | type ProjectsZonesService struct function NewProjectsZonesClustersService (line 125) | func NewProjectsZonesClustersService(s *Service) *ProjectsZonesClustersS... type ProjectsZonesClustersService (line 130) | type ProjectsZonesClustersService struct method Create (line 529) | func (r *ProjectsZonesClustersService) Create(projectId string, zoneId... method Delete (line 630) | func (r *ProjectsZonesClustersService) Delete(projectId string, zoneId... method Get (line 726) | func (r *ProjectsZonesClustersService) Get(projectId string, zoneId st... method List (line 821) | func (r *ProjectsZonesClustersService) List(projectId string, zoneId s... function NewProjectsZonesOperationsService (line 134) | func NewProjectsZonesOperationsService(s *Service) *ProjectsZonesOperati... type ProjectsZonesOperationsService (line 139) | type ProjectsZonesOperationsService struct method Get (line 908) | func (r *ProjectsZonesOperationsService) Get(projectId string, zoneId ... method List (line 1003) | func (r *ProjectsZonesOperationsService) List(projectId string, zoneId... type Cluster (line 143) | type Cluster struct type CreateClusterRequest (line 235) | type CreateClusterRequest struct type ListAggregatedClustersResponse (line 240) | type ListAggregatedClustersResponse struct type ListAggregatedOperationsResponse (line 245) | type ListAggregatedOperationsResponse struct type ListClustersResponse (line 250) | type ListClustersResponse struct type ListOperationsResponse (line 255) | type ListOperationsResponse struct type MasterAuth (line 261) | type MasterAuth struct type NodeConfig (line 278) | type NodeConfig struct type Operation (line 307) | type Operation struct type ServiceAccount (line 345) | type ServiceAccount struct type ProjectsClustersListCall (line 356) | type ProjectsClustersListCall struct method Fields (line 372) | func (c *ProjectsClustersListCall) Fields(s ...googleapi.Field) *Proje... method Do (line 377) | func (c *ProjectsClustersListCall) Do() (*ListAggregatedClustersRespon... type ProjectsOperationsListCall (line 432) | type ProjectsOperationsListCall struct method Fields (line 448) | func (c *ProjectsOperationsListCall) Fields(s ...googleapi.Field) *Pro... method Do (line 453) | func (c *ProjectsOperationsListCall) Do() (*ListAggregatedOperationsRe... type ProjectsZonesClustersCreateCall (line 508) | type ProjectsZonesClustersCreateCall struct method Fields (line 540) | func (c *ProjectsZonesClustersCreateCall) Fields(s ...googleapi.Field)... method Do (line 545) | func (c *ProjectsZonesClustersCreateCall) Do() (*Operation, error) { type ProjectsZonesClustersDeleteCall (line 617) | type ProjectsZonesClustersDeleteCall struct method Fields (line 641) | func (c *ProjectsZonesClustersDeleteCall) Fields(s ...googleapi.Field)... method Do (line 646) | func (c *ProjectsZonesClustersDeleteCall) Do() (*Operation, error) { type ProjectsZonesClustersGetCall (line 717) | type ProjectsZonesClustersGetCall struct method Fields (line 737) | func (c *ProjectsZonesClustersGetCall) Fields(s ...googleapi.Field) *P... method Do (line 742) | func (c *ProjectsZonesClustersGetCall) Do() (*Cluster, error) { type ProjectsZonesClustersListCall (line 813) | type ProjectsZonesClustersListCall struct method Fields (line 831) | func (c *ProjectsZonesClustersListCall) Fields(s ...googleapi.Field) *... method Do (line 836) | func (c *ProjectsZonesClustersListCall) Do() (*ListClustersResponse, e... type ProjectsZonesOperationsGetCall (line 899) | type ProjectsZonesOperationsGetCall struct method Fields (line 919) | func (c *ProjectsZonesOperationsGetCall) Fields(s ...googleapi.Field) ... method Do (line 924) | func (c *ProjectsZonesOperationsGetCall) Do() (*Operation, error) { type ProjectsZonesOperationsListCall (line 995) | type ProjectsZonesOperationsListCall struct method Fields (line 1013) | func (c *ProjectsZonesOperationsListCall) Fields(s ...googleapi.Field)... method Do (line 1018) | func (c *ProjectsZonesOperationsListCall) Do() (*ListOperationsRespons... FILE: vendor/google.golang.org/api/googleapi/googleapi.go type ContentTyper (line 34) | type ContentTyper interface type SizeReaderAt (line 40) | type SizeReaderAt interface constant Version (line 46) | Version = "0.5" constant statusResumeIncomplete (line 49) | statusResumeIncomplete = 308 constant UserAgent (line 52) | UserAgent = "google-api-go-client/" + Version constant uploadPause (line 55) | uploadPause = 1 * time.Second type Error (line 59) | type Error struct method Error (line 80) | func (e *Error) Error() string { type ErrorItem (line 73) | type ErrorItem struct type errorReply (line 103) | type errorReply struct function CheckResponse (line 109) | func CheckResponse(res *http.Response) error { type MarshalStyle (line 131) | type MarshalStyle method JSONReader (line 136) | func (wrap MarshalStyle) JSONReader(v interface{}) (io.Reader, error) { function getMediaType (line 151) | func getMediaType(media io.Reader) (io.Reader, string) { function DetectMediaType (line 178) | func DetectMediaType(media io.ReaderAt) string { type Lengther (line 193) | type Lengther interface type endingWithErrorReader (line 199) | type endingWithErrorReader struct method Read (line 204) | func (er endingWithErrorReader) Read(p []byte) (n int, err error) { function typeHeader (line 212) | func typeHeader(contentType string) textproto.MIMEHeader { type countingWriter (line 220) | type countingWriter struct method Write (line 224) | func (w countingWriter) Write(p []byte) (int, error) { function ConditionallyIncludeMedia (line 240) | func ConditionallyIncludeMedia(media io.Reader, bodyp *io.Reader, ctypep... type ProgressUpdater (line 292) | type ProgressUpdater type ResumableUpload (line 296) | type ResumableUpload struct method Progress (line 324) | func (rx *ResumableUpload) Progress() int64 { method transferStatus (line 330) | func (rx *ResumableUpload) transferStatus() (int64, *http.Response, er... method transferChunks (line 356) | func (rx *ResumableUpload) transferChunks(ctx context.Context) (*http.... method Upload (line 402) | func (rx *ResumableUpload) Upload(ctx context.Context) (*http.Response... type chunk (line 350) | type chunk struct function ResolveRelative (line 421) | func ResolveRelative(basestr, relstr string) string { function init (line 436) | func init() { function SetOpaque (line 450) | func SetOpaque(u *url.URL) { function Expand (line 461) | func Expand(u *url.URL, expansions map[string]string) { function CloseBody (line 472) | func CloseBody(res *http.Response) { function VariantType (line 495) | func VariantType(t map[string]interface{}) string { function ConvertVariant (line 503) | func ConvertVariant(v map[string]interface{}, dst interface{}) bool { type Field (line 535) | type Field function CombineFields (line 538) | func CombineFields(s []Field) string { FILE: vendor/google.golang.org/api/googleapi/internal/uritemplates/uritemplates.go function pctEncode (line 37) | func pctEncode(src []byte) []byte { function escape (line 48) | func escape(s string, allowReserved bool) (escaped string) { type UriTemplate (line 58) | type UriTemplate struct method Expand (line 188) | func (self *UriTemplate) Expand(value interface{}) (string, error) { function Parse (line 64) | func Parse(rawtemplate string) (template *UriTemplate, err error) { type templatePart (line 96) | type templatePart struct method expand (line 207) | func (self *templatePart) expand(buf *bytes.Buffer, values map[string]... method expandName (line 253) | func (self *templatePart) expandName(buf *bytes.Buffer, name string, e... method expandString (line 264) | func (self *templatePart) expandString(buf *bytes.Buffer, t templateTe... method expandArray (line 272) | func (self *templatePart) expandArray(buf *bytes.Buffer, t templateTer... method expandMap (line 301) | func (self *templatePart) expandMap(buf *bytes.Buffer, t templateTerm,... type templateTerm (line 106) | type templateTerm struct function parseExpression (line 112) | func parseExpression(expression string) (result templatePart, err error) { function parseTerm (line 162) | func parseTerm(term string) (result templateTerm, err error) { function struct2map (line 336) | func struct2map(v interface{}) (map[string]interface{}, bool) { FILE: vendor/google.golang.org/api/googleapi/internal/uritemplates/utils.go function Expand (line 3) | func Expand(path string, expansions map[string]string) (string, error) { FILE: vendor/google.golang.org/api/googleapi/transport/apikey.go type APIKey (line 16) | type APIKey struct method RoundTrip (line 25) | func (t *APIKey) RoundTrip(req *http.Request) (*http.Response, error) { FILE: vendor/google.golang.org/api/googleapi/types.go type Int64s (line 13) | type Int64s method UnmarshalJSON (line 15) | func (q *Int64s) UnmarshalJSON(raw []byte) error { method MarshalJSON (line 122) | func (s Int64s) MarshalJSON() ([]byte, error) { type Int32s (line 32) | type Int32s method UnmarshalJSON (line 34) | func (q *Int32s) UnmarshalJSON(raw []byte) error { method MarshalJSON (line 128) | func (s Int32s) MarshalJSON() ([]byte, error) { type Uint64s (line 51) | type Uint64s method UnmarshalJSON (line 53) | func (q *Uint64s) UnmarshalJSON(raw []byte) error { method MarshalJSON (line 134) | func (s Uint64s) MarshalJSON() ([]byte, error) { type Uint32s (line 70) | type Uint32s method UnmarshalJSON (line 72) | func (q *Uint32s) UnmarshalJSON(raw []byte) error { method MarshalJSON (line 140) | func (s Uint32s) MarshalJSON() ([]byte, error) { type Float64s (line 89) | type Float64s method UnmarshalJSON (line 91) | func (q *Float64s) UnmarshalJSON(raw []byte) error { method MarshalJSON (line 146) | func (s Float64s) MarshalJSON() ([]byte, error) { function quotedList (line 107) | func quotedList(n int, fn func(dst []byte, i int) []byte) ([]byte, error) { FILE: vendor/google.golang.org/api/pubsub/v1beta2/pubsub-gen.go constant apiId (line 37) | apiId = "pubsub:v1beta2" constant apiName (line 38) | apiName = "pubsub" constant apiVersion (line 39) | apiVersion = "v1beta2" constant basePath (line 40) | basePath = "https://pubsub.googleapis.com/v1beta2/" constant CloudPlatformScope (line 45) | CloudPlatformScope = "https://www.googleapis.com/auth/cloud-platform" constant PubsubScope (line 48) | PubsubScope = "https://www.googleapis.com/auth/pubsub" function New (line 51) | func New(client *http.Client) (*Service, error) { type Service (line 60) | type Service struct method userAgent (line 68) | func (s *Service) userAgent() string { function NewProjectsService (line 75) | func NewProjectsService(s *Service) *ProjectsService { type ProjectsService (line 82) | type ProjectsService struct function NewProjectsSubscriptionsService (line 90) | func NewProjectsSubscriptionsService(s *Service) *ProjectsSubscriptionsS... type ProjectsSubscriptionsService (line 95) | type ProjectsSubscriptionsService struct method Acknowledge (line 222) | func (r *ProjectsSubscriptionsService) Acknowledge(subscription string... method Create (line 314) | func (r *ProjectsSubscriptionsService) Create(name string, subscriptio... method Delete (line 405) | func (r *ProjectsSubscriptionsService) Delete(subscription string) *Pr... method Get (line 481) | func (r *ProjectsSubscriptionsService) Get(subscription string) *Proje... method List (line 557) | func (r *ProjectsSubscriptionsService) List(project string) *ProjectsS... method ModifyAckDeadline (line 664) | func (r *ProjectsSubscriptionsService) ModifyAckDeadline(subscription ... method ModifyPushConfig (line 756) | func (r *ProjectsSubscriptionsService) ModifyPushConfig(subscription s... method Pull (line 846) | func (r *ProjectsSubscriptionsService) Pull(subscription string, pullr... function NewProjectsTopicsService (line 99) | func NewProjectsTopicsService(s *Service) *ProjectsTopicsService { type ProjectsTopicsService (line 105) | type ProjectsTopicsService struct method Create (line 933) | func (r *ProjectsTopicsService) Create(name string, topic *Topic) *Pro... method Delete (line 1023) | func (r *ProjectsTopicsService) Delete(topic string) *ProjectsTopicsDe... method Get (line 1099) | func (r *ProjectsTopicsService) Get(topic string) *ProjectsTopicsGetCa... method List (line 1175) | func (r *ProjectsTopicsService) List(project string) *ProjectsTopicsLi... method Publish (line 1280) | func (r *ProjectsTopicsService) Publish(topic string, publishrequest *... function NewProjectsTopicsSubscriptionsService (line 111) | func NewProjectsTopicsSubscriptionsService(s *Service) *ProjectsTopicsSu... type ProjectsTopicsSubscriptionsService (line 116) | type ProjectsTopicsSubscriptionsService struct method List (line 1366) | func (r *ProjectsTopicsSubscriptionsService) List(topic string) *Proje... type AcknowledgeRequest (line 120) | type AcknowledgeRequest struct type Empty (line 124) | type Empty struct type ListSubscriptionsResponse (line 127) | type ListSubscriptionsResponse struct type ListTopicSubscriptionsResponse (line 133) | type ListTopicSubscriptionsResponse struct type ListTopicsResponse (line 139) | type ListTopicsResponse struct type ModifyAckDeadlineRequest (line 145) | type ModifyAckDeadlineRequest struct type ModifyPushConfigRequest (line 151) | type ModifyPushConfigRequest struct type PublishRequest (line 155) | type PublishRequest struct type PublishResponse (line 159) | type PublishResponse struct type PubsubMessage (line 163) | type PubsubMessage struct type PullRequest (line 171) | type PullRequest struct type PullResponse (line 177) | type PullResponse struct type PushConfig (line 181) | type PushConfig struct type ReceivedMessage (line 187) | type ReceivedMessage struct type Subscription (line 193) | type Subscription struct type Topic (line 203) | type Topic struct type ProjectsSubscriptionsAcknowledgeCall (line 209) | type ProjectsSubscriptionsAcknowledgeCall struct method Fields (line 232) | func (c *ProjectsSubscriptionsAcknowledgeCall) Fields(s ...googleapi.F... method Do (line 237) | func (c *ProjectsSubscriptionsAcknowledgeCall) Do() (*Empty, error) { type ProjectsSubscriptionsCreateCall (line 301) | type ProjectsSubscriptionsCreateCall struct method Fields (line 324) | func (c *ProjectsSubscriptionsCreateCall) Fields(s ...googleapi.Field)... method Do (line 329) | func (c *ProjectsSubscriptionsCreateCall) Do() (*Subscription, error) { type ProjectsSubscriptionsDeleteCall (line 393) | type ProjectsSubscriptionsDeleteCall struct method Fields (line 414) | func (c *ProjectsSubscriptionsDeleteCall) Fields(s ...googleapi.Field)... method Do (line 419) | func (c *ProjectsSubscriptionsDeleteCall) Do() (*Empty, error) { type ProjectsSubscriptionsGetCall (line 474) | type ProjectsSubscriptionsGetCall struct method Fields (line 490) | func (c *ProjectsSubscriptionsGetCall) Fields(s ...googleapi.Field) *P... method Do (line 495) | func (c *ProjectsSubscriptionsGetCall) Do() (*Subscription, error) { type ProjectsSubscriptionsListCall (line 550) | type ProjectsSubscriptionsListCall struct method PageSize (line 564) | func (c *ProjectsSubscriptionsListCall) PageSize(pageSize int64) *Proj... method PageToken (line 570) | func (c *ProjectsSubscriptionsListCall) PageToken(pageToken string) *P... method Fields (line 578) | func (c *ProjectsSubscriptionsListCall) Fields(s ...googleapi.Field) *... method Do (line 583) | func (c *ProjectsSubscriptionsListCall) Do() (*ListSubscriptionsRespon... type ProjectsSubscriptionsModifyAckDeadlineCall (line 653) | type ProjectsSubscriptionsModifyAckDeadlineCall struct method Fields (line 674) | func (c *ProjectsSubscriptionsModifyAckDeadlineCall) Fields(s ...googl... method Do (line 679) | func (c *ProjectsSubscriptionsModifyAckDeadlineCall) Do() (*Empty, err... type ProjectsSubscriptionsModifyPushConfigCall (line 743) | type ProjectsSubscriptionsModifyPushConfigCall struct method Fields (line 766) | func (c *ProjectsSubscriptionsModifyPushConfigCall) Fields(s ...google... method Do (line 771) | func (c *ProjectsSubscriptionsModifyPushConfigCall) Do() (*Empty, erro... type ProjectsSubscriptionsPullCall (line 835) | type ProjectsSubscriptionsPullCall struct method Fields (line 856) | func (c *ProjectsSubscriptionsPullCall) Fields(s ...googleapi.Field) *... method Do (line 861) | func (c *ProjectsSubscriptionsPullCall) Do() (*PullResponse, error) { type ProjectsTopicsCreateCall (line 925) | type ProjectsTopicsCreateCall struct method Fields (line 943) | func (c *ProjectsTopicsCreateCall) Fields(s ...googleapi.Field) *Proje... method Do (line 948) | func (c *ProjectsTopicsCreateCall) Do() (*Topic, error) { type ProjectsTopicsDeleteCall (line 1012) | type ProjectsTopicsDeleteCall struct method Fields (line 1032) | func (c *ProjectsTopicsDeleteCall) Fields(s ...googleapi.Field) *Proje... method Do (line 1037) | func (c *ProjectsTopicsDeleteCall) Do() (*Empty, error) { type ProjectsTopicsGetCall (line 1092) | type ProjectsTopicsGetCall struct method Fields (line 1108) | func (c *ProjectsTopicsGetCall) Fields(s ...googleapi.Field) *Projects... method Do (line 1113) | func (c *ProjectsTopicsGetCall) Do() (*Topic, error) { type ProjectsTopicsListCall (line 1168) | type ProjectsTopicsListCall struct method PageSize (line 1182) | func (c *ProjectsTopicsListCall) PageSize(pageSize int64) *ProjectsTop... method PageToken (line 1188) | func (c *ProjectsTopicsListCall) PageToken(pageToken string) *Projects... method Fields (line 1196) | func (c *ProjectsTopicsListCall) Fields(s ...googleapi.Field) *Project... method Do (line 1201) | func (c *ProjectsTopicsListCall) Do() (*ListTopicsResponse, error) { type ProjectsTopicsPublishCall (line 1271) | type ProjectsTopicsPublishCall struct method Fields (line 1290) | func (c *ProjectsTopicsPublishCall) Fields(s ...googleapi.Field) *Proj... method Do (line 1295) | func (c *ProjectsTopicsPublishCall) Do() (*PublishResponse, error) { type ProjectsTopicsSubscriptionsListCall (line 1359) | type ProjectsTopicsSubscriptionsListCall struct method PageSize (line 1373) | func (c *ProjectsTopicsSubscriptionsListCall) PageSize(pageSize int64)... method PageToken (line 1379) | func (c *ProjectsTopicsSubscriptionsListCall) PageToken(pageToken stri... method Fields (line 1387) | func (c *ProjectsTopicsSubscriptionsListCall) Fields(s ...googleapi.Fi... method Do (line 1392) | func (c *ProjectsTopicsSubscriptionsListCall) Do() (*ListTopicSubscrip... FILE: vendor/google.golang.org/api/storage/v1/storage-gen.go constant apiId (line 39) | apiId = "storage:v1" constant apiName (line 40) | apiName = "storage" constant apiVersion (line 41) | apiVersion = "v1" constant basePath (line 42) | basePath = "https://www.googleapis.com/storage/v1/" constant CloudPlatformScope (line 47) | CloudPlatformScope = "https://www.googleapis.com/auth/cloud-platform" constant DevstorageFullControlScope (line 50) | DevstorageFullControlScope = "https://www.googleapis.com/auth/devstorage... constant DevstorageReadOnlyScope (line 53) | DevstorageReadOnlyScope = "https://www.googleapis.com/auth/devstorage.re... constant DevstorageReadWriteScope (line 56) | DevstorageReadWriteScope = "https://www.googleapis.com/auth/devstorage.r... function New (line 59) | func New(client *http.Client) (*Service, error) { type Service (line 73) | type Service struct method userAgent (line 91) | func (s *Service) userAgent() string { function NewBucketAccessControlsService (line 98) | func NewBucketAccessControlsService(s *Service) *BucketAccessControlsSer... type BucketAccessControlsService (line 103) | type BucketAccessControlsService struct method Delete (line 694) | func (r *BucketAccessControlsService) Delete(bucket string, entity str... method Get (line 774) | func (r *BucketAccessControlsService) Get(bucket string, entity string... method Insert (line 860) | func (r *BucketAccessControlsService) Insert(bucket string, bucketacce... method List (line 946) | func (r *BucketAccessControlsService) List(bucket string) *BucketAcces... method Patch (line 1025) | func (r *BucketAccessControlsService) Patch(bucket string, entity stri... method Update (line 1122) | func (r *BucketAccessControlsService) Update(bucket string, entity str... function NewBucketsService (line 107) | func NewBucketsService(s *Service) *BucketsService { type BucketsService (line 112) | type BucketsService struct method Delete (line 1217) | func (r *BucketsService) Delete(bucket string) *BucketsDeleteCall { method Get (line 1322) | func (r *BucketsService) Get(bucket string) *BucketsGetCall { method Insert (line 1465) | func (r *BucketsService) Insert(projectid string, bucket *Bucket) *Buc... method List (line 1666) | func (r *BucketsService) List(projectid string) *BucketsListCall { method Patch (line 1820) | func (r *BucketsService) Patch(bucket string, bucket2 *Bucket) *Bucket... method Update (line 2057) | func (r *BucketsService) Update(bucket string, bucket2 *Bucket) *Bucke... function NewChannelsService (line 116) | func NewChannelsService(s *Service) *ChannelsService { type ChannelsService (line 121) | type ChannelsService struct method Stop (line 2293) | func (r *ChannelsService) Stop(channel *Channel) *ChannelsStopCall { function NewDefaultObjectAccessControlsService (line 125) | func NewDefaultObjectAccessControlsService(s *Service) *DefaultObjectAcc... type DefaultObjectAccessControlsService (line 130) | type DefaultObjectAccessControlsService struct method Delete (line 2364) | func (r *DefaultObjectAccessControlsService) Delete(bucket string, ent... method Get (line 2444) | func (r *DefaultObjectAccessControlsService) Get(bucket string, entity... method Insert (line 2531) | func (r *DefaultObjectAccessControlsService) Insert(bucket string, obj... method List (line 2617) | func (r *DefaultObjectAccessControlsService) List(bucket string) *Defa... method Patch (line 2731) | func (r *DefaultObjectAccessControlsService) Patch(bucket string, enti... method Update (line 2828) | func (r *DefaultObjectAccessControlsService) Update(bucket string, ent... function NewObjectAccessControlsService (line 134) | func NewObjectAccessControlsService(s *Service) *ObjectAccessControlsSer... type ObjectAccessControlsService (line 139) | type ObjectAccessControlsService struct method Delete (line 2926) | func (r *ObjectAccessControlsService) Delete(bucket string, object str... method Get (line 3033) | func (r *ObjectAccessControlsService) Get(bucket string, object string... method Insert (line 3146) | func (r *ObjectAccessControlsService) Insert(bucket string, object str... method List (line 3259) | func (r *ObjectAccessControlsService) List(bucket string, object strin... method Patch (line 3365) | func (r *ObjectAccessControlsService) Patch(bucket string, object stri... method Update (line 3489) | func (r *ObjectAccessControlsService) Update(bucket string, object str... function NewObjectsService (line 143) | func NewObjectsService(s *Service) *ObjectsService { type ObjectsService (line 148) | type ObjectsService struct method Compose (line 3613) | func (r *ObjectsService) Compose(destinationBucket string, destination... method Copy (line 3795) | func (r *ObjectsService) Copy(sourceBucket string, sourceObject string... method Delete (line 4146) | func (r *ObjectsService) Delete(bucket string, object string) *Objects... method Get (line 4313) | func (r *ObjectsService) Get(bucket string, object string) *ObjectsGet... method Insert (line 4521) | func (r *ObjectsService) Insert(bucket string, object *Object) *Object... method List (line 4873) | func (r *ObjectsService) List(bucket string) *ObjectsListCall { method Patch (line 5068) | func (r *ObjectsService) Patch(bucket string, object string, object2 *... method Rewrite (line 5327) | func (r *ObjectsService) Rewrite(sourceBucket string, sourceObject str... method Update (line 5718) | func (r *ObjectsService) Update(bucket string, object string, object2 ... method WatchAll (line 5974) | func (r *ObjectsService) WatchAll(bucket string, channel *Channel) *Ob... type Bucket (line 152) | type Bucket struct type BucketCors (line 221) | type BucketCors struct type BucketLifecycle (line 242) | type BucketLifecycle struct type BucketLifecycleRule (line 248) | type BucketLifecycleRule struct type BucketLifecycleRuleAction (line 256) | type BucketLifecycleRuleAction struct type BucketLifecycleRuleCondition (line 261) | type BucketLifecycleRuleCondition struct type BucketLogging (line 282) | type BucketLogging struct type BucketOwner (line 291) | type BucketOwner struct type BucketVersioning (line 299) | type BucketVersioning struct type BucketWebsite (line 305) | type BucketWebsite struct type BucketAccessControl (line 315) | type BucketAccessControl struct type BucketAccessControlProjectTeam (line 366) | type BucketAccessControlProjectTeam struct type BucketAccessControls (line 374) | type BucketAccessControls struct type Buckets (line 383) | type Buckets struct type Channel (line 397) | type Channel struct type ComposeRequest (line 436) | type ComposeRequest struct type ComposeRequestSourceObjects (line 448) | type ComposeRequestSourceObjects struct type ComposeRequestSourceObjectsObjectPreconditions (line 461) | type ComposeRequestSourceObjectsObjectPreconditions struct type Object (line 469) | type Object struct type ObjectOwner (line 556) | type ObjectOwner struct type ObjectAccessControl (line 564) | type ObjectAccessControl struct type ObjectAccessControlProjectTeam (line 620) | type ObjectAccessControlProjectTeam struct type ObjectAccessControls (line 628) | type ObjectAccessControls struct type Objects (line 637) | type Objects struct type RewriteResponse (line 655) | type RewriteResponse struct type BucketAccessControlsDeleteCall (line 685) | type BucketAccessControlsDeleteCall struct method Fields (line 704) | func (c *BucketAccessControlsDeleteCall) Fields(s ...googleapi.Field) ... method Do (line 709) | func (c *BucketAccessControlsDeleteCall) Do() error { type BucketAccessControlsGetCall (line 765) | type BucketAccessControlsGetCall struct method Fields (line 784) | func (c *BucketAccessControlsGetCall) Fields(s ...googleapi.Field) *Bu... method Do (line 789) | func (c *BucketAccessControlsGetCall) Do() (*BucketAccessControl, erro... type BucketAccessControlsInsertCall (line 852) | type BucketAccessControlsInsertCall struct method Fields (line 870) | func (c *BucketAccessControlsInsertCall) Fields(s ...googleapi.Field) ... method Do (line 875) | func (c *BucketAccessControlsInsertCall) Do() (*BucketAccessControl, e... type BucketAccessControlsListCall (line 939) | type BucketAccessControlsListCall struct method Fields (line 955) | func (c *BucketAccessControlsListCall) Fields(s ...googleapi.Field) *B... method Do (line 960) | func (c *BucketAccessControlsListCall) Do() (*BucketAccessControls, er... type BucketAccessControlsPatchCall (line 1015) | type BucketAccessControlsPatchCall struct method Fields (line 1036) | func (c *BucketAccessControlsPatchCall) Fields(s ...googleapi.Field) *... method Do (line 1041) | func (c *BucketAccessControlsPatchCall) Do() (*BucketAccessControl, er... type BucketAccessControlsUpdateCall (line 1113) | type BucketAccessControlsUpdateCall struct method Fields (line 1133) | func (c *BucketAccessControlsUpdateCall) Fields(s ...googleapi.Field) ... method Do (line 1138) | func (c *BucketAccessControlsUpdateCall) Do() (*BucketAccessControl, e... type BucketsDeleteCall (line 1210) | type BucketsDeleteCall struct method IfMetagenerationMatch (line 1226) | func (c *BucketsDeleteCall) IfMetagenerationMatch(ifMetagenerationMatc... method IfMetagenerationNotMatch (line 1234) | func (c *BucketsDeleteCall) IfMetagenerationNotMatch(ifMetagenerationN... method Fields (line 1242) | func (c *BucketsDeleteCall) Fields(s ...googleapi.Field) *BucketsDelet... method Do (line 1247) | func (c *BucketsDeleteCall) Do() error { type BucketsGetCall (line 1315) | type BucketsGetCall struct method IfMetagenerationMatch (line 1332) | func (c *BucketsGetCall) IfMetagenerationMatch(ifMetagenerationMatch i... method IfMetagenerationNotMatch (line 1341) | func (c *BucketsGetCall) IfMetagenerationNotMatch(ifMetagenerationNotM... method Projection (line 1352) | func (c *BucketsGetCall) Projection(projection string) *BucketsGetCall { method Fields (line 1360) | func (c *BucketsGetCall) Fields(s ...googleapi.Field) *BucketsGetCall { method Do (line 1365) | func (c *BucketsGetCall) Do() (*Bucket, error) { type BucketsInsertCall (line 1457) | type BucketsInsertCall struct method PredefinedAcl (line 1485) | func (c *BucketsInsertCall) PredefinedAcl(predefinedAcl string) *Bucke... method PredefinedDefaultObjectAcl (line 1506) | func (c *BucketsInsertCall) PredefinedDefaultObjectAcl(predefinedDefau... method Projection (line 1519) | func (c *BucketsInsertCall) Projection(projection string) *BucketsInse... method Fields (line 1527) | func (c *BucketsInsertCall) Fields(s ...googleapi.Field) *BucketsInser... method Do (line 1532) | func (c *BucketsInsertCall) Do() (*Bucket, error) { type BucketsListCall (line 1659) | type BucketsListCall struct method MaxResults (line 1674) | func (c *BucketsListCall) MaxResults(maxResults int64) *BucketsListCall { method PageToken (line 1682) | func (c *BucketsListCall) PageToken(pageToken string) *BucketsListCall { method Prefix (line 1689) | func (c *BucketsListCall) Prefix(prefix string) *BucketsListCall { method Projection (line 1700) | func (c *BucketsListCall) Projection(projection string) *BucketsListCa... method Fields (line 1708) | func (c *BucketsListCall) Fields(s ...googleapi.Field) *BucketsListCall { method Do (line 1713) | func (c *BucketsListCall) Do() (*Buckets, error) { type BucketsPatchCall (line 1812) | type BucketsPatchCall struct method IfMetagenerationMatch (line 1831) | func (c *BucketsPatchCall) IfMetagenerationMatch(ifMetagenerationMatch... method IfMetagenerationNotMatch (line 1840) | func (c *BucketsPatchCall) IfMetagenerationNotMatch(ifMetagenerationNo... method PredefinedAcl (line 1858) | func (c *BucketsPatchCall) PredefinedAcl(predefinedAcl string) *Bucket... method PredefinedDefaultObjectAcl (line 1879) | func (c *BucketsPatchCall) PredefinedDefaultObjectAcl(predefinedDefaul... method Projection (line 1890) | func (c *BucketsPatchCall) Projection(projection string) *BucketsPatch... method Fields (line 1898) | func (c *BucketsPatchCall) Fields(s ...googleapi.Field) *BucketsPatchC... method Do (line 1903) | func (c *BucketsPatchCall) Do() (*Bucket, error) { type BucketsUpdateCall (line 2049) | type BucketsUpdateCall struct method IfMetagenerationMatch (line 2068) | func (c *BucketsUpdateCall) IfMetagenerationMatch(ifMetagenerationMatc... method IfMetagenerationNotMatch (line 2077) | func (c *BucketsUpdateCall) IfMetagenerationNotMatch(ifMetagenerationN... method PredefinedAcl (line 2095) | func (c *BucketsUpdateCall) PredefinedAcl(predefinedAcl string) *Bucke... method PredefinedDefaultObjectAcl (line 2116) | func (c *BucketsUpdateCall) PredefinedDefaultObjectAcl(predefinedDefau... method Projection (line 2127) | func (c *BucketsUpdateCall) Projection(projection string) *BucketsUpda... method Fields (line 2135) | func (c *BucketsUpdateCall) Fields(s ...googleapi.Field) *BucketsUpdat... method Do (line 2140) | func (c *BucketsUpdateCall) Do() (*Bucket, error) { type ChannelsStopCall (line 2286) | type ChannelsStopCall struct method Fields (line 2302) | func (c *ChannelsStopCall) Fields(s ...googleapi.Field) *ChannelsStopC... method Do (line 2307) | func (c *ChannelsStopCall) Do() error { type DefaultObjectAccessControlsDeleteCall (line 2355) | type DefaultObjectAccessControlsDeleteCall struct method Fields (line 2374) | func (c *DefaultObjectAccessControlsDeleteCall) Fields(s ...googleapi.... method Do (line 2379) | func (c *DefaultObjectAccessControlsDeleteCall) Do() error { type DefaultObjectAccessControlsGetCall (line 2435) | type DefaultObjectAccessControlsGetCall struct method Fields (line 2454) | func (c *DefaultObjectAccessControlsGetCall) Fields(s ...googleapi.Fie... method Do (line 2459) | func (c *DefaultObjectAccessControlsGetCall) Do() (*ObjectAccessContro... type DefaultObjectAccessControlsInsertCall (line 2522) | type DefaultObjectAccessControlsInsertCall struct method Fields (line 2541) | func (c *DefaultObjectAccessControlsInsertCall) Fields(s ...googleapi.... method Do (line 2546) | func (c *DefaultObjectAccessControlsInsertCall) Do() (*ObjectAccessCon... type DefaultObjectAccessControlsListCall (line 2610) | type DefaultObjectAccessControlsListCall struct method IfMetagenerationMatch (line 2626) | func (c *DefaultObjectAccessControlsListCall) IfMetagenerationMatch(if... method IfMetagenerationNotMatch (line 2635) | func (c *DefaultObjectAccessControlsListCall) IfMetagenerationNotMatch... method Fields (line 2643) | func (c *DefaultObjectAccessControlsListCall) Fields(s ...googleapi.Fi... method Do (line 2648) | func (c *DefaultObjectAccessControlsListCall) Do() (*ObjectAccessContr... type DefaultObjectAccessControlsPatchCall (line 2721) | type DefaultObjectAccessControlsPatchCall struct method Fields (line 2742) | func (c *DefaultObjectAccessControlsPatchCall) Fields(s ...googleapi.F... method Do (line 2747) | func (c *DefaultObjectAccessControlsPatchCall) Do() (*ObjectAccessCont... type DefaultObjectAccessControlsUpdateCall (line 2819) | type DefaultObjectAccessControlsUpdateCall struct method Fields (line 2839) | func (c *DefaultObjectAccessControlsUpdateCall) Fields(s ...googleapi.... method Do (line 2844) | func (c *DefaultObjectAccessControlsUpdateCall) Do() (*ObjectAccessCon... type ObjectAccessControlsDeleteCall (line 2916) | type ObjectAccessControlsDeleteCall struct method Generation (line 2937) | func (c *ObjectAccessControlsDeleteCall) Generation(generation int64) ... method Fields (line 2945) | func (c *ObjectAccessControlsDeleteCall) Fields(s ...googleapi.Field) ... method Do (line 2950) | func (c *ObjectAccessControlsDeleteCall) Do() error { type ObjectAccessControlsGetCall (line 3023) | type ObjectAccessControlsGetCall struct method Generation (line 3044) | func (c *ObjectAccessControlsGetCall) Generation(generation int64) *Ob... method Fields (line 3052) | func (c *ObjectAccessControlsGetCall) Fields(s ...googleapi.Field) *Ob... method Do (line 3057) | func (c *ObjectAccessControlsGetCall) Do() (*ObjectAccessControl, erro... type ObjectAccessControlsInsertCall (line 3137) | type ObjectAccessControlsInsertCall struct method Generation (line 3157) | func (c *ObjectAccessControlsInsertCall) Generation(generation int64) ... method Fields (line 3165) | func (c *ObjectAccessControlsInsertCall) Fields(s ...googleapi.Field) ... method Do (line 3170) | func (c *ObjectAccessControlsInsertCall) Do() (*ObjectAccessControl, e... type ObjectAccessControlsListCall (line 3251) | type ObjectAccessControlsListCall struct method Generation (line 3269) | func (c *ObjectAccessControlsListCall) Generation(generation int64) *O... method Fields (line 3277) | func (c *ObjectAccessControlsListCall) Fields(s ...googleapi.Field) *O... method Do (line 3282) | func (c *ObjectAccessControlsListCall) Do() (*ObjectAccessControls, er... type ObjectAccessControlsPatchCall (line 3354) | type ObjectAccessControlsPatchCall struct method Generation (line 3377) | func (c *ObjectAccessControlsPatchCall) Generation(generation int64) *... method Fields (line 3385) | func (c *ObjectAccessControlsPatchCall) Fields(s ...googleapi.Field) *... method Do (line 3390) | func (c *ObjectAccessControlsPatchCall) Do() (*ObjectAccessControl, er... type ObjectAccessControlsUpdateCall (line 3479) | type ObjectAccessControlsUpdateCall struct method Generation (line 3501) | func (c *ObjectAccessControlsUpdateCall) Generation(generation int64) ... method Fields (line 3509) | func (c *ObjectAccessControlsUpdateCall) Fields(s ...googleapi.Field) ... method Do (line 3514) | func (c *ObjectAccessControlsUpdateCall) Do() (*ObjectAccessControl, e... type ObjectsComposeCall (line 3603) | type ObjectsComposeCall struct method DestinationPredefinedAcl (line 3637) | func (c *ObjectsComposeCall) DestinationPredefinedAcl(destinationPrede... method IfGenerationMatch (line 3645) | func (c *ObjectsComposeCall) IfGenerationMatch(ifGenerationMatch int64... method IfMetagenerationMatch (line 3653) | func (c *ObjectsComposeCall) IfMetagenerationMatch(ifMetagenerationMat... method Fields (line 3661) | func (c *ObjectsComposeCall) Fields(s ...googleapi.Field) *ObjectsComp... method Do (line 3666) | func (c *ObjectsComposeCall) Do() (*Object, error) { type ObjectsCopyCall (line 3783) | type ObjectsCopyCall struct method DestinationPredefinedAcl (line 3821) | func (c *ObjectsCopyCall) DestinationPredefinedAcl(destinationPredefin... method IfGenerationMatch (line 3829) | func (c *ObjectsCopyCall) IfGenerationMatch(ifGenerationMatch int64) *... method IfGenerationNotMatch (line 3838) | func (c *ObjectsCopyCall) IfGenerationNotMatch(ifGenerationNotMatch in... method IfMetagenerationMatch (line 3847) | func (c *ObjectsCopyCall) IfMetagenerationMatch(ifMetagenerationMatch ... method IfMetagenerationNotMatch (line 3856) | func (c *ObjectsCopyCall) IfMetagenerationNotMatch(ifMetagenerationNot... method IfSourceGenerationMatch (line 3864) | func (c *ObjectsCopyCall) IfSourceGenerationMatch(ifSourceGenerationMa... method IfSourceGenerationNotMatch (line 3873) | func (c *ObjectsCopyCall) IfSourceGenerationNotMatch(ifSourceGeneratio... method IfSourceMetagenerationMatch (line 3882) | func (c *ObjectsCopyCall) IfSourceMetagenerationMatch(ifSourceMetagene... method IfSourceMetagenerationNotMatch (line 3891) | func (c *ObjectsCopyCall) IfSourceMetagenerationNotMatch(ifSourceMetag... method Projection (line 3903) | func (c *ObjectsCopyCall) Projection(projection string) *ObjectsCopyCa... method SourceGeneration (line 3911) | func (c *ObjectsCopyCall) SourceGeneration(sourceGeneration int64) *Ob... method Fields (line 3919) | func (c *ObjectsCopyCall) Fields(s ...googleapi.Field) *ObjectsCopyCall { method Do (line 3924) | func (c *ObjectsCopyCall) Do() (*Object, error) { type ObjectsDeleteCall (line 4136) | type ObjectsDeleteCall struct method Generation (line 4156) | func (c *ObjectsDeleteCall) Generation(generation int64) *ObjectsDelet... method IfGenerationMatch (line 4164) | func (c *ObjectsDeleteCall) IfGenerationMatch(ifGenerationMatch int64)... method IfGenerationNotMatch (line 4172) | func (c *ObjectsDeleteCall) IfGenerationNotMatch(ifGenerationNotMatch ... method IfMetagenerationMatch (line 4180) | func (c *ObjectsDeleteCall) IfMetagenerationMatch(ifMetagenerationMatc... method IfMetagenerationNotMatch (line 4189) | func (c *ObjectsDeleteCall) IfMetagenerationNotMatch(ifMetagenerationN... method Fields (line 4197) | func (c *ObjectsDeleteCall) Fields(s ...googleapi.Field) *ObjectsDelet... method Do (line 4202) | func (c *ObjectsDeleteCall) Do() error { type ObjectsGetCall (line 4305) | type ObjectsGetCall struct method Generation (line 4323) | func (c *ObjectsGetCall) Generation(generation int64) *ObjectsGetCall { method IfGenerationMatch (line 4331) | func (c *ObjectsGetCall) IfGenerationMatch(ifGenerationMatch int64) *O... method IfGenerationNotMatch (line 4339) | func (c *ObjectsGetCall) IfGenerationNotMatch(ifGenerationNotMatch int... method IfMetagenerationMatch (line 4347) | func (c *ObjectsGetCall) IfMetagenerationMatch(ifMetagenerationMatch i... method IfMetagenerationNotMatch (line 4356) | func (c *ObjectsGetCall) IfMetagenerationNotMatch(ifMetagenerationNotM... method Projection (line 4367) | func (c *ObjectsGetCall) Projection(projection string) *ObjectsGetCall { method Fields (line 4375) | func (c *ObjectsGetCall) Fields(s ...googleapi.Field) *ObjectsGetCall { method Do (line 4380) | func (c *ObjectsGetCall) Do() (*Object, error) { type ObjectsInsertCall (line 4508) | type ObjectsInsertCall struct method ContentEncoding (line 4534) | func (c *ObjectsInsertCall) ContentEncoding(contentEncoding string) *O... method IfGenerationMatch (line 4542) | func (c *ObjectsInsertCall) IfGenerationMatch(ifGenerationMatch int64)... method IfGenerationNotMatch (line 4550) | func (c *ObjectsInsertCall) IfGenerationNotMatch(ifGenerationNotMatch ... method IfMetagenerationMatch (line 4558) | func (c *ObjectsInsertCall) IfMetagenerationMatch(ifMetagenerationMatc... method IfMetagenerationNotMatch (line 4567) | func (c *ObjectsInsertCall) IfMetagenerationNotMatch(ifMetagenerationN... method Name (line 4575) | func (c *ObjectsInsertCall) Name(name string) *ObjectsInsertCall { method PredefinedAcl (line 4595) | func (c *ObjectsInsertCall) PredefinedAcl(predefinedAcl string) *Objec... method Projection (line 4607) | func (c *ObjectsInsertCall) Projection(projection string) *ObjectsInse... method Media (line 4614) | func (c *ObjectsInsertCall) Media(r io.Reader) *ObjectsInsertCall { method ResumableMedia (line 4624) | func (c *ObjectsInsertCall) ResumableMedia(ctx context.Context, r io.R... method ProgressUpdater (line 4635) | func (c *ObjectsInsertCall) ProgressUpdater(pu googleapi.ProgressUpdat... method Fields (line 4643) | func (c *ObjectsInsertCall) Fields(s ...googleapi.Field) *ObjectsInser... method Do (line 4648) | func (c *ObjectsInsertCall) Do() (*Object, error) { type ObjectsListCall (line 4866) | type ObjectsListCall struct method Delimiter (line 4885) | func (c *ObjectsListCall) Delimiter(delimiter string) *ObjectsListCall { method MaxResults (line 4894) | func (c *ObjectsListCall) MaxResults(maxResults int64) *ObjectsListCall { method PageToken (line 4902) | func (c *ObjectsListCall) PageToken(pageToken string) *ObjectsListCall { method Prefix (line 4909) | func (c *ObjectsListCall) Prefix(prefix string) *ObjectsListCall { method Projection (line 4920) | func (c *ObjectsListCall) Projection(projection string) *ObjectsListCa... method Versions (line 4928) | func (c *ObjectsListCall) Versions(versions bool) *ObjectsListCall { method Fields (line 4936) | func (c *ObjectsListCall) Fields(s ...googleapi.Field) *ObjectsListCall { method Do (line 4941) | func (c *ObjectsListCall) Do() (*Objects, error) { type ObjectsPatchCall (line 5058) | type ObjectsPatchCall struct method Generation (line 5079) | func (c *ObjectsPatchCall) Generation(generation int64) *ObjectsPatchC... method IfGenerationMatch (line 5087) | func (c *ObjectsPatchCall) IfGenerationMatch(ifGenerationMatch int64) ... method IfGenerationNotMatch (line 5095) | func (c *ObjectsPatchCall) IfGenerationNotMatch(ifGenerationNotMatch i... method IfMetagenerationMatch (line 5103) | func (c *ObjectsPatchCall) IfMetagenerationMatch(ifMetagenerationMatch... method IfMetagenerationNotMatch (line 5112) | func (c *ObjectsPatchCall) IfMetagenerationNotMatch(ifMetagenerationNo... method PredefinedAcl (line 5132) | func (c *ObjectsPatchCall) PredefinedAcl(predefinedAcl string) *Object... method Projection (line 5143) | func (c *ObjectsPatchCall) Projection(projection string) *ObjectsPatch... method Fields (line 5151) | func (c *ObjectsPatchCall) Fields(s ...googleapi.Field) *ObjectsPatchC... method Do (line 5156) | func (c *ObjectsPatchCall) Do() (*Object, error) { type ObjectsRewriteCall (line 5315) | type ObjectsRewriteCall struct method DestinationPredefinedAcl (line 5353) | func (c *ObjectsRewriteCall) DestinationPredefinedAcl(destinationPrede... method IfGenerationMatch (line 5361) | func (c *ObjectsRewriteCall) IfGenerationMatch(ifGenerationMatch int64... method IfGenerationNotMatch (line 5370) | func (c *ObjectsRewriteCall) IfGenerationNotMatch(ifGenerationNotMatch... method IfMetagenerationMatch (line 5379) | func (c *ObjectsRewriteCall) IfMetagenerationMatch(ifMetagenerationMat... method IfMetagenerationNotMatch (line 5388) | func (c *ObjectsRewriteCall) IfMetagenerationNotMatch(ifMetageneration... method IfSourceGenerationMatch (line 5396) | func (c *ObjectsRewriteCall) IfSourceGenerationMatch(ifSourceGeneratio... method IfSourceGenerationNotMatch (line 5405) | func (c *ObjectsRewriteCall) IfSourceGenerationNotMatch(ifSourceGenera... method IfSourceMetagenerationMatch (line 5414) | func (c *ObjectsRewriteCall) IfSourceMetagenerationMatch(ifSourceMetag... method IfSourceMetagenerationNotMatch (line 5423) | func (c *ObjectsRewriteCall) IfSourceMetagenerationNotMatch(ifSourceMe... method MaxBytesRewrittenPerCall (line 5437) | func (c *ObjectsRewriteCall) MaxBytesRewrittenPerCall(maxBytesRewritte... method Projection (line 5449) | func (c *ObjectsRewriteCall) Projection(projection string) *ObjectsRew... method RewriteToken (line 5460) | func (c *ObjectsRewriteCall) RewriteToken(rewriteToken string) *Object... method SourceGeneration (line 5468) | func (c *ObjectsRewriteCall) SourceGeneration(sourceGeneration int64) ... method Fields (line 5476) | func (c *ObjectsRewriteCall) Fields(s ...googleapi.Field) *ObjectsRewr... method Do (line 5481) | func (c *ObjectsRewriteCall) Do() (*RewriteResponse, error) { type ObjectsUpdateCall (line 5709) | type ObjectsUpdateCall struct method Generation (line 5729) | func (c *ObjectsUpdateCall) Generation(generation int64) *ObjectsUpdat... method IfGenerationMatch (line 5737) | func (c *ObjectsUpdateCall) IfGenerationMatch(ifGenerationMatch int64)... method IfGenerationNotMatch (line 5745) | func (c *ObjectsUpdateCall) IfGenerationNotMatch(ifGenerationNotMatch ... method IfMetagenerationMatch (line 5753) | func (c *ObjectsUpdateCall) IfMetagenerationMatch(ifMetagenerationMatc... method IfMetagenerationNotMatch (line 5762) | func (c *ObjectsUpdateCall) IfMetagenerationNotMatch(ifMetagenerationN... method PredefinedAcl (line 5782) | func (c *ObjectsUpdateCall) PredefinedAcl(predefinedAcl string) *Objec... method Projection (line 5793) | func (c *ObjectsUpdateCall) Projection(projection string) *ObjectsUpda... method Fields (line 5801) | func (c *ObjectsUpdateCall) Fields(s ...googleapi.Field) *ObjectsUpdat... method Do (line 5806) | func (c *ObjectsUpdateCall) Do() (*Object, error) { type ObjectsWatchAllCall (line 5966) | type ObjectsWatchAllCall struct method Delimiter (line 5987) | func (c *ObjectsWatchAllCall) Delimiter(delimiter string) *ObjectsWatc... method MaxResults (line 5996) | func (c *ObjectsWatchAllCall) MaxResults(maxResults int64) *ObjectsWat... method PageToken (line 6004) | func (c *ObjectsWatchAllCall) PageToken(pageToken string) *ObjectsWatc... method Prefix (line 6011) | func (c *ObjectsWatchAllCall) Prefix(prefix string) *ObjectsWatchAllCa... method Projection (line 6022) | func (c *ObjectsWatchAllCall) Projection(projection string) *ObjectsWa... method Versions (line 6030) | func (c *ObjectsWatchAllCall) Versions(versions bool) *ObjectsWatchAll... method Fields (line 6038) | func (c *ObjectsWatchAllCall) Fields(s ...googleapi.Field) *ObjectsWat... method Do (line 6043) | func (c *ObjectsWatchAllCall) Do() (*Channel, error) { FILE: vendor/google.golang.org/appengine/aetest/instance.go type Instance (line 12) | type Instance interface type Options (line 20) | type Options struct function NewContext (line 32) | func NewContext() (context.Context, func(), error) { FILE: vendor/google.golang.org/appengine/aetest/instance_classic.go function NewInstance (line 11) | func NewInstance(opts *Options) (Instance, error) { FILE: vendor/google.golang.org/appengine/aetest/instance_vm.go function NewInstance (line 28) | func NewInstance(opts *Options) (Instance, error) { function newSessionID (line 42) | func newSessionID() string { type instance (line 49) | type instance struct method NewRequest (line 60) | func (i *instance) NewRequest(method, urlStr string, body io.Reader) (... method Close (line 77) | func (i *instance) Close() (err error) { method startChild (line 146) | func (i *instance) startChild() (err error) { method appYAML (line 256) | func (i *instance) appYAML() string { function fileExists (line 118) | func fileExists(path string) bool { function findPython (line 123) | func findPython() (path string, err error) { function findDevAppserver (line 133) | func findDevAppserver() (string, error) { constant appYAMLTemplate (line 260) | appYAMLTemplate = ` constant appSource (line 272) | appSource = ` FILE: vendor/google.golang.org/appengine/aetest/user.go function Login (line 12) | func Login(u *user.User, req *http.Request) { function Logout (line 30) | func Logout(req *http.Request) { FILE: vendor/google.golang.org/appengine/appengine.go function IsDevAppServer (line 22) | func IsDevAppServer() bool { function NewContext (line 28) | func NewContext(req *http.Request) context.Context { function WithContext (line 35) | func WithContext(parent context.Context, req *http.Request) context.Cont... type BlobKey (line 46) | type BlobKey type GeoPoint (line 49) | type GeoPoint struct method Valid (line 54) | func (g GeoPoint) Valid() bool { type APICallFunc (line 60) | type APICallFunc function WithAPICallFunc (line 66) | func WithAPICallFunc(ctx context.Context, f APICallFunc) context.Context { function APICall (line 74) | func APICall(ctx context.Context, service, method string, in, out proto.... FILE: vendor/google.golang.org/appengine/appengine_vm.go function Main (line 47) | func Main() { function BackgroundContext (line 54) | func BackgroundContext() context.Context { FILE: vendor/google.golang.org/appengine/blobstore/blobstore.go constant blobInfoKind (line 36) | blobInfoKind = "__BlobInfo__" constant blobFileIndexKind (line 37) | blobFileIndexKind = "__BlobFileIndex__" constant zeroKey (line 38) | zeroKey = appengine.BlobKey("") type BlobInfo (line 43) | type BlobInfo struct function isErrFieldMismatch (line 61) | func isErrFieldMismatch(err error) bool { function Stat (line 68) | func Stat(c context.Context, blobKey appengine.BlobKey) (*BlobInfo, erro... function Send (line 83) | func Send(response http.ResponseWriter, blobKey appengine.BlobKey) { function UploadURL (line 99) | func UploadURL(c context.Context, successPath string, opts *UploadURLOpt... type UploadURLOptions (line 122) | type UploadURLOptions struct function Delete (line 137) | func Delete(c context.Context, blobKey appengine.BlobKey) error { function DeleteMulti (line 142) | func DeleteMulti(c context.Context, blobKey []appengine.BlobKey) error { function errorf (line 157) | func errorf(format string, args ...interface{}) error { function ParseUpload (line 165) | func ParseUpload(req *http.Request) (blobs map[string][]*BlobInfo, other... type Reader (line 253) | type Reader interface function NewReader (line 261) | func NewReader(c context.Context, blobKey appengine.BlobKey) Reader { function BlobKeyForFile (line 267) | func BlobKeyForFile(c context.Context, filename string) (appengine.BlobK... FILE: vendor/google.golang.org/appengine/blobstore/read.go function openBlob (line 25) | func openBlob(c context.Context, blobKey appengine.BlobKey) Reader { constant readBufferSize (line 32) | readBufferSize = 256 * 1024 type reader (line 35) | type reader struct method Close (line 56) | func (r *reader) Close() error { method Read (line 64) | func (r *reader) Read(p []byte) (int, error) { method ReadAt (line 80) | func (r *reader) ReadAt(p []byte, off int64) (int, error) { method Seek (line 112) | func (r *reader) Seek(offset int64, whence int) (ret int64, err error) { method fetch (line 133) | func (r *reader) fetch(off int64) error { method seek (line 152) | func (r *reader) seek(off int64) (int64, error) { FILE: vendor/google.golang.org/appengine/capability/capability.go function Enabled (line 31) | func Enabled(ctx context.Context, api, capability string) bool { FILE: vendor/google.golang.org/appengine/channel/channel.go function Create (line 36) | func Create(c context.Context, clientID string) (token string, err error) { function Send (line 47) | func Send(c context.Context, clientID, message string) error { function SendJSON (line 58) | func SendJSON(c context.Context, clientID string, value interface{}) err... function remapError (line 67) | func remapError(err error) error { function init (line 78) | func init() { FILE: vendor/google.golang.org/appengine/cloudsql/cloudsql.go function Dial (line 60) | func Dial(instance string) (net.Conn, error) { FILE: vendor/google.golang.org/appengine/cloudsql/cloudsql_classic.go function connect (line 15) | func connect(instance string) (net.Conn, error) { FILE: vendor/google.golang.org/appengine/cloudsql/cloudsql_vm.go function connect (line 14) | func connect(instance string) (net.Conn, error) { FILE: vendor/google.golang.org/appengine/cmd/aebundler/aebundler.go constant newMain (line 45) | newMain = `package main function usage (line 53) | func usage() { function main (line 60) | func main() { function errorf (line 87) | func errorf(format string, a ...interface{}) { type app (line 92) | type app struct method bundle (line 128) | func (s *app) bundle(tarFile string) (err error) { function analyze (line 100) | func analyze(tags []string) (*app, error) { function buildContext (line 116) | func buildContext(tags []string) *build.Context { function synthesizeMain (line 168) | func synthesizeMain(tw *tar.Writer, appFiles []string) error { function imports (line 199) | func imports(ctxt *build.Context, srcDir string, gopath []string) (map[s... function findInGopath (line 228) | func findInGopath(dir string, gopath []string) (string, error) { function copyTree (line 239) | func copyTree(tw *tar.Writer, dstDir, srcDir string) error { function copyFile (line 265) | func copyFile(tw *tar.Writer, dst, src string) error { function checkMain (line 293) | func checkMain(ctxt *build.Context) (bool, []string, error) { function isMain (line 316) | func isMain(f *ast.FuncDecl) bool { function readFile (line 322) | func readFile(filename string) (hasMain bool, err error) { FILE: vendor/google.golang.org/appengine/cmd/aedeploy/aedeploy.go function usage (line 39) | func usage() { function main (line 44) | func main() { function aedeploy (line 58) | func aedeploy() error { function deploy (line 80) | func deploy() error { type app (line 89) | type app struct method bundle (line 123) | func (s *app) bundle() (tmpdir string, err error) { function analyze (line 96) | func analyze(tags []string) (*app, error) { function buildContext (line 111) | func buildContext(tags []string) *build.Context { function imports (line 143) | func imports(ctxt *build.Context, srcDir string, gopath []string) (map[s... function findInGopath (line 175) | func findInGopath(dir string, gopath []string) (string, error) { function copyTree (line 190) | func copyTree(dstRoot, dstDir, srcDir string) error { function copyFile (line 226) | func copyFile(dstRoot, dst, src string) error { function appFiles (line 250) | func appFiles(ctxt *build.Context) ([]string, error) { FILE: vendor/google.golang.org/appengine/datastore/datastore.go type ErrFieldMismatch (line 35) | type ErrFieldMismatch struct method Error (line 41) | func (e *ErrFieldMismatch) Error() string { function protoToKey (line 47) | func protoToKey(r *pb.Reference) (k *Key, err error) { function keyToProto (line 67) | func keyToProto(defaultAppID string, k *Key) *pb.Reference { function multiKeyToProto (line 104) | func multiKeyToProto(appID string, key []*Key) []*pb.Reference { function multiValid (line 114) | func multiValid(key []*Key) error { function referenceValueToKey (line 140) | func referenceValueToKey(r *pb.PropertyValue_ReferenceValue) (k *Key, er... function keyToReferenceValue (line 161) | func keyToReferenceValue(defaultAppID string, k *Key) *pb.PropertyValue_... type multiArgType (line 178) | type multiArgType constant multiArgTypeInvalid (line 181) | multiArgTypeInvalid multiArgType = iota constant multiArgTypePropertyLoadSaver (line 182) | multiArgTypePropertyLoadSaver constant multiArgTypeStruct (line 183) | multiArgTypeStruct constant multiArgTypeStructPtr (line 184) | multiArgTypeStructPtr constant multiArgTypeInterface (line 185) | multiArgTypeInterface function checkMultiArg (line 196) | func checkMultiArg(v reflect.Value) (m multiArgType, elemType reflect.Ty... function Get (line 233) | func Get(c context.Context, key *Key, dst interface{}) error { function GetMulti (line 254) | func GetMulti(c context.Context, key []*Key, dst interface{}) error { function Put (line 307) | func Put(c context.Context, key *Key, src interface{}) (*Key, error) { function PutMulti (line 321) | func PutMulti(c context.Context, key []*Key, src interface{}) ([]*Key, e... function Delete (line 368) | func Delete(c context.Context, key *Key) error { function DeleteMulti (line 377) | func DeleteMulti(c context.Context, key []*Key) error { function namespaceMod (line 391) | func namespaceMod(m proto.Message, namespace string) { function init (line 402) | func init() { FILE: vendor/google.golang.org/appengine/datastore/key.go type Key (line 24) | type Key struct method Kind (line 34) | func (k *Key) Kind() string { method StringID (line 40) | func (k *Key) StringID() string { method IntID (line 45) | func (k *Key) IntID() int64 { method Parent (line 50) | func (k *Key) Parent() *Key { method AppID (line 55) | func (k *Key) AppID() string { method Namespace (line 60) | func (k *Key) Namespace() string { method Incomplete (line 66) | func (k *Key) Incomplete() bool { method valid (line 71) | func (k *Key) valid() bool { method Equal (line 95) | func (k *Key) Equal(o *Key) bool { method root (line 106) | func (k *Key) root() *Key { method marshal (line 114) | func (k *Key) marshal(b *bytes.Buffer) { method String (line 129) | func (k *Key) String() string { method GobEncode (line 175) | func (k *Key) GobEncode() ([]byte, error) { method GobDecode (line 183) | func (k *Key) GobDecode(buf []byte) error { method MarshalJSON (line 192) | func (k *Key) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 196) | func (k *Key) UnmarshalJSON(buf []byte) error { method Encode (line 211) | func (k *Key) Encode() string { type gobKey (line 138) | type gobKey struct function keyToGobKey (line 147) | func keyToGobKey(k *Key) *gobKey { function gobKeyToKey (line 161) | func gobKeyToKey(gk *gobKey) *Key { function DecodeKey (line 224) | func DecodeKey(encoded string) (*Key, error) { function NewIncompleteKey (line 245) | func NewIncompleteKey(c context.Context, kind string, parent *Key) *Key { function NewKey (line 254) | func NewKey(c context.Context, kind, stringID string, intID int64, paren... function AllocateIDs (line 283) | func AllocateIDs(c context.Context, kind string, parent *Key, n int) (lo... FILE: vendor/google.golang.org/appengine/datastore/load.go function typeMismatchReason (line 26) | func typeMismatchReason(p Property, v reflect.Value) string { type propertyLoader (line 53) | type propertyLoader struct method load (line 59) | func (l *propertyLoader) load(codec *structCodec, structValue reflect.... function loadEntity (line 218) | func loadEntity(dst interface{}, src *pb.EntityProto) (err error) { method Load (line 229) | func (s structPLS) Load(props []Property) error { function protoToProperties (line 250) | func protoToProperties(src *pb.EntityProto) ([]Property, error) { function propValue (line 289) | func propValue(v *pb.PropertyValue, m pb.Property_Meaning) (interface{},... type indexValue (line 332) | type indexValue struct FILE: vendor/google.golang.org/appengine/datastore/metadata.go constant namespaceKind (line 11) | namespaceKind = "__namespace__" constant kindKind (line 12) | kindKind = "__kind__" constant propertyKind (line 13) | propertyKind = "__property__" constant entityGroupKind (line 14) | entityGroupKind = "__entitygroup__" function Namespaces (line 18) | func Namespaces(ctx context.Context) ([]string, error) { function Kinds (line 31) | func Kinds(ctx context.Context) ([]string, error) { function keyNames (line 42) | func keyNames(keys []*Key) []string { function KindProperties (line 61) | func KindProperties(ctx context.Context, kind string) (map[string][]stri... FILE: vendor/google.golang.org/appengine/datastore/prop.go constant maxIndexedProperties (line 16) | maxIndexedProperties = 20000 constant maxBlobLen (line 19) | maxBlobLen = 1 << 20 type Property (line 25) | type Property struct type ByteString (line 67) | type ByteString type PropertyLoadSaver (line 70) | type PropertyLoadSaver interface type PropertyList (line 76) | type PropertyList method Load (line 85) | func (l *PropertyList) Load(p []Property) error { method Save (line 91) | func (l *PropertyList) Save() ([]Property, error) { function validPropertyName (line 97) | func validPropertyName(name string) bool { type structTag (line 126) | type structTag struct type structCodec (line 133) | type structCodec struct type fieldCodec (line 148) | type fieldCodec struct function getStructCodec (line 160) | func getStructCodec(t reflect.Type) (*structCodec, error) { function getStructCodecLocked (line 168) | func getStructCodecLocked(t reflect.Type) (ret *structCodec, retErr erro... type structPLS (line 257) | type structPLS struct function newStructPLS (line 263) | func newStructPLS(p interface{}) (PropertyLoadSaver, error) { function LoadStruct (line 278) | func LoadStruct(dst interface{}, p []Property) error { function SaveStruct (line 288) | func SaveStruct(src interface{}) ([]Property, error) { FILE: vendor/google.golang.org/appengine/datastore/query.go type operator (line 22) | type operator constant lessThan (line 25) | lessThan operator = iota constant lessEq (line 26) | lessEq constant equal (line 27) | equal constant greaterEq (line 28) | greaterEq constant greaterThan (line 29) | greaterThan type filter (line 41) | type filter struct type sortDirection (line 47) | type sortDirection constant ascending (line 50) | ascending sortDirection = iota constant descending (line 51) | descending type order (line 60) | type order struct function NewQuery (line 70) | func NewQuery(kind string) *Query { type Query (line 78) | type Query struct method clone (line 96) | func (q *Query) clone() *Query { method Ancestor (line 112) | func (q *Query) Ancestor(ancestor *Key) *Query { method EventualConsistency (line 125) | func (q *Query) EventualConsistency() *Query { method Filter (line 136) | func (q *Query) Filter(filterStr string, value interface{}) *Query { method Order (line 169) | func (q *Query) Order(fieldName string) *Query { method Project (line 193) | func (q *Query) Project(fieldNames ...string) *Query { method Distinct (line 202) | func (q *Query) Distinct() *Query { method KeysOnly (line 210) | func (q *Query) KeysOnly() *Query { method Limit (line 218) | func (q *Query) Limit(limit int) *Query { method Offset (line 230) | func (q *Query) Offset(offset int) *Query { method Start (line 245) | func (q *Query) Start(c Cursor) *Query { method End (line 256) | func (q *Query) End(c Cursor) *Query { method toProto (line 267) | func (q *Query) toProto(dst *pb.Query, appID string) error { method Count (line 335) | func (q *Query) Count(c context.Context) (int, error) { method GetAll (line 441) | func (q *Query) GetAll(c context.Context, dst interface{}) ([]*Key, er... method Run (line 508) | func (q *Query) Run(c context.Context) *Iterator { function callNext (line 407) | func callNext(c context.Context, res *pb.QueryResult, offset, limit int3... type Iterator (line 548) | type Iterator struct method Next (line 574) | func (t *Iterator) Next(dst interface{}) (*Key, error) { method next (line 585) | func (t *Iterator) next() (*Key, *pb.EntityProto, error) { method Cursor (line 629) | func (t *Iterator) Cursor() (Cursor, error) { type Cursor (line 677) | type Cursor struct method String (line 682) | func (c Cursor) String() string { function DecodeCursor (line 697) | func DecodeCursor(s string) (Cursor, error) { FILE: vendor/google.golang.org/appengine/datastore/save.go function toUnixMicro (line 20) | func toUnixMicro(t time.Time) int64 { function fromUnixMicro (line 27) | func fromUnixMicro(t int64) time.Time { function valueToProto (line 38) | func valueToProto(defaultAppID, name string, v reflect.Value, multiple b... function saveEntity (line 115) | func saveEntity(defaultAppID string, key *Key, src interface{}) (*pb.Ent... function saveStructProperty (line 129) | func saveStructProperty(props *[]Property, name string, noIndex, multipl... method Save (line 179) | func (s structPLS) Save() ([]Property, error) { method save (line 187) | func (s structPLS) save(props *[]Property, prefix string, noIndex, multi... function propertiesToProto (line 218) | func propertiesToProto(defaultAppID string, key *Key, props []Property) ... FILE: vendor/google.golang.org/appengine/datastore/transaction.go function init (line 16) | func init() { function RunInTransaction (line 56) | func RunInTransaction(c context.Context, f func(tc context.Context) erro... type TransactionOptions (line 74) | type TransactionOptions struct FILE: vendor/google.golang.org/appengine/delay/delay.go type Function (line 63) | type Function struct method Call (line 141) | func (f *Function) Call(c context.Context, args ...interface{}) error { method Task (line 153) | func (f *Function) Task(args ...interface{}) (*taskqueue.Task, error) { constant path (line 71) | path = "/_ah/queue/go/delay" constant queue (line 73) | queue = "" function Func (line 96) | func Func(key string, i interface{}) *Function { type invocation (line 131) | type invocation struct function init (line 223) | func init() { function runFunc (line 229) | func runFunc(c context.Context, w http.ResponseWriter, req *http.Request) { FILE: vendor/google.golang.org/appengine/demos/guestbook/guestbook.go type Greeting (line 25) | type Greeting struct function main (line 31) | func main() { function guestbookKey (line 38) | func guestbookKey(ctx context.Context) *datastore.Key { function handleMainPage (line 45) | func handleMainPage(w http.ResponseWriter, r *http.Request) { function handleSign (line 89) | func handleSign(w http.ResponseWriter, r *http.Request) { FILE: vendor/google.golang.org/appengine/demos/helloworld/helloworld.go function main (line 21) | func main() { function handle (line 26) | func handle(w http.ResponseWriter, r *http.Request) { FILE: vendor/google.golang.org/appengine/errors.go function IsOverQuota (line 17) | func IsOverQuota(err error) bool { type MultiError (line 25) | type MultiError method Error (line 27) | func (m MultiError) Error() string { FILE: vendor/google.golang.org/appengine/file/file.go function DefaultBucketName (line 19) | func DefaultBucketName(c context.Context) (string, error) { FILE: vendor/google.golang.org/appengine/identity.go function AppID (line 20) | func AppID(c context.Context) string { return internal.AppID(c) } function DefaultVersionHostname (line 25) | func DefaultVersionHostname(c context.Context) string { function ModuleName (line 30) | func ModuleName(c context.Context) string { function ModuleHostname (line 39) | func ModuleHostname(c context.Context, module, version, instance string)... function VersionID (line 61) | func VersionID(c context.Context) string { return internal.VersionID(c) } function InstanceID (line 64) | func InstanceID() string { return internal.InstanceID() } function Datacenter (line 67) | func Datacenter(c context.Context) string { return internal.Datacenter(c) } function ServerSoftware (line 72) | func ServerSoftware() string { return internal.ServerSoftware() } function RequestID (line 75) | func RequestID(c context.Context) string { return internal.RequestID(c) } function AccessToken (line 80) | func AccessToken(c context.Context, scopes ...string) (token string, exp... type Certificate (line 92) | type Certificate struct function PublicCertificates (line 99) | func PublicCertificates(c context.Context) ([]Certificate, error) { function ServiceAccount (line 117) | func ServiceAccount(c context.Context) (string, error) { function SignBytes (line 129) | func SignBytes(c context.Context, bytes []byte) (keyName string, signatu... function init (line 139) | func init() { FILE: vendor/google.golang.org/appengine/image/image.go type ServingURLOptions (line 19) | type ServingURLOptions struct function ServingURL (line 31) | func ServingURL(c context.Context, key appengine.BlobKey, opts *ServingU... function DeleteServingURL (line 57) | func DeleteServingURL(c context.Context, key appengine.BlobKey) error { function init (line 65) | func init() { FILE: vendor/google.golang.org/appengine/internal/aetesting/fake.go function FakeSingleContext (line 23) | func FakeSingleContext(t *testing.T, service, method string, f interface... type single (line 55) | type single struct method call (line 61) | func (s *single) call(ctx context.Context, service, method string, in,... FILE: vendor/google.golang.org/appengine/internal/api.go constant apiPath (line 35) | apiPath = "/rpc_http" function apiURL (line 65) | func apiURL() *url.URL { function handleHTTP (line 80) | func handleHTTP(w http.ResponseWriter, r *http.Request) { function executeRequestSafely (line 144) | func executeRequestSafely(c *context, r *http.Request) { function renderPanic (line 155) | func renderPanic(x interface{}) string { type context (line 208) | type context struct method Header (line 338) | func (c *context) Header() http.Header { return c.outHeader } method Write (line 355) | func (c *context) Write(b []byte) (int, error) { method WriteHeader (line 366) | func (c *context) WriteHeader(code int) { method post (line 374) | func (c *context) post(body []byte, timeout time.Duration) (b []byte, ... method Request (line 520) | func (c *context) Request() *http.Request { method addLogLine (line 524) | func (c *context) addLogLine(ll *logpb.UserAppLogLine) { method flushLog (line 559) | func (c *context) flushLog(force bool) (flushed bool) { method logFlusher (line 620) | func (c *context) logFlusher(stop <-chan int) { function fromContext (line 226) | func fromContext(ctx netcontext.Context) *context { function withContext (line 231) | func withContext(parent netcontext.Context, c *context) netcontext.Conte... function toContext (line 239) | func toContext(c *context) netcontext.Context { function IncomingHeaders (line 243) | func IncomingHeaders(ctx netcontext.Context) http.Header { function WithContext (line 250) | func WithContext(parent netcontext.Context, req *http.Request) netcontex... function BackgroundContext (line 269) | func BackgroundContext() netcontext.Context { function RegisterTestRequest (line 305) | func RegisterTestRequest(req *http.Request, apiURL *url.URL, decorate fu... function bodyAllowedForStatus (line 343) | func bodyAllowedForStatus(status int) bool { function Call (line 434) | func Call(ctx netcontext.Context, service, method string, in, out proto.... function logf (line 546) | func logf(c *context, level int64, format string, args ...interface{}) { constant flushInterval (line 616) | flushInterval = 1 * time.Second constant forceFlushInterval (line 617) | forceFlushInterval = 60 * time.Second function ContextForTesting (line 638) | func ContextForTesting(req *http.Request) netcontext.Context { FILE: vendor/google.golang.org/appengine/internal/api_classic.go function fromContext (line 24) | func fromContext(ctx netcontext.Context) appengine.Context { function ClassicContextFromContext (line 30) | func ClassicContextFromContext(ctx netcontext.Context) appengine.Context { function withContext (line 34) | func withContext(parent netcontext.Context, c appengine.Context) netcont... function IncomingHeaders (line 46) | func IncomingHeaders(ctx netcontext.Context) http.Header { function WithContext (line 55) | func WithContext(parent netcontext.Context, req *http.Request) netcontex... function Call (line 60) | func Call(ctx netcontext.Context, service, method string, in, out proto.... function handleHTTP (line 111) | func handleHTTP(w http.ResponseWriter, r *http.Request) { function logf (line 115) | func logf(c appengine.Context, level int64, format string, args ...inter... FILE: vendor/google.golang.org/appengine/internal/api_common.go type CallOverrideFunc (line 12) | type CallOverrideFunc function WithCallOverride (line 16) | func WithCallOverride(ctx netcontext.Context, f CallOverrideFunc) netcon... function callOverrideFromContext (line 27) | func callOverrideFromContext(ctx netcontext.Context) (CallOverrideFunc, ... type logOverrideFunc (line 39) | type logOverrideFunc function WithLogOverride (line 43) | func WithLogOverride(ctx netcontext.Context, f logOverrideFunc) netconte... function WithAppIDOverride (line 49) | func WithAppIDOverride(ctx netcontext.Context, appID string) netcontext.... function withNamespace (line 55) | func withNamespace(ctx netcontext.Context, ns string) netcontext.Context { function NamespaceFromContext (line 59) | func NamespaceFromContext(ctx netcontext.Context) string { function FullyQualifiedAppID (line 68) | func FullyQualifiedAppID(ctx netcontext.Context) string { function Logf (line 75) | func Logf(ctx netcontext.Context, level int64, format string, args ...in... function NamespacedContext (line 84) | func NamespacedContext(ctx netcontext.Context, namespace string) netcont... type namespacedContext (line 91) | type namespacedContext struct method call (line 95) | func (n *namespacedContext) call(ctx netcontext.Context, service, meth... FILE: vendor/google.golang.org/appengine/internal/app_id.go function parseFullAppID (line 11) | func parseFullAppID(appid string) (partition, domain, displayID string) { function appID (line 22) | func appID(fullAppID string) string { FILE: vendor/google.golang.org/appengine/internal/app_identity/app_identity_service.pb.go type AppIdentityServiceError_ErrorCode (line 36) | type AppIdentityServiceError_ErrorCode method Enum (line 70) | func (x AppIdentityServiceError_ErrorCode) Enum() *AppIdentityServiceE... method String (line 75) | func (x AppIdentityServiceError_ErrorCode) String() string { method UnmarshalJSON (line 78) | func (x *AppIdentityServiceError_ErrorCode) UnmarshalJSON(data []byte)... constant AppIdentityServiceError_SUCCESS (line 39) | AppIdentityServiceError_SUCCESS AppIdentityServiceError_ErrorC... constant AppIdentityServiceError_UNKNOWN_SCOPE (line 40) | AppIdentityServiceError_UNKNOWN_SCOPE AppIdentityServiceError_ErrorC... constant AppIdentityServiceError_BLOB_TOO_LARGE (line 41) | AppIdentityServiceError_BLOB_TOO_LARGE AppIdentityServiceError_ErrorC... constant AppIdentityServiceError_DEADLINE_EXCEEDED (line 42) | AppIdentityServiceError_DEADLINE_EXCEEDED AppIdentityServiceError_ErrorC... constant AppIdentityServiceError_NOT_A_VALID_APP (line 43) | AppIdentityServiceError_NOT_A_VALID_APP AppIdentityServiceError_ErrorC... constant AppIdentityServiceError_UNKNOWN_ERROR (line 44) | AppIdentityServiceError_UNKNOWN_ERROR AppIdentityServiceError_ErrorC... constant AppIdentityServiceError_NOT_ALLOWED (line 45) | AppIdentityServiceError_NOT_ALLOWED AppIdentityServiceError_ErrorC... constant AppIdentityServiceError_NOT_IMPLEMENTED (line 46) | AppIdentityServiceError_NOT_IMPLEMENTED AppIdentityServiceError_ErrorC... type AppIdentityServiceError (line 87) | type AppIdentityServiceError struct method Reset (line 91) | func (m *AppIdentityServiceError) Reset() { *m = AppIdentitySe... method String (line 92) | func (m *AppIdentityServiceError) String() string { return proto.Compa... method ProtoMessage (line 93) | func (*AppIdentityServiceError) ProtoMessage() {} type SignForAppRequest (line 95) | type SignForAppRequest struct method Reset (line 100) | func (m *SignForAppRequest) Reset() { *m = SignForAppRequest{} } method String (line 101) | func (m *SignForAppRequest) String() string { return proto.CompactText... method ProtoMessage (line 102) | func (*SignForAppRequest) ProtoMessage() {} method GetBytesToSign (line 104) | func (m *SignForAppRequest) GetBytesToSign() []byte { type SignForAppResponse (line 111) | type SignForAppResponse struct method Reset (line 117) | func (m *SignForAppResponse) Reset() { *m = SignForAppResponse... method String (line 118) | func (m *SignForAppResponse) String() string { return proto.CompactTex... method ProtoMessage (line 119) | func (*SignForAppResponse) ProtoMessage() {} method GetKeyName (line 121) | func (m *SignForAppResponse) GetKeyName() string { method GetSignatureBytes (line 128) | func (m *SignForAppResponse) GetSignatureBytes() []byte { type GetPublicCertificateForAppRequest (line 135) | type GetPublicCertificateForAppRequest struct method Reset (line 139) | func (m *GetPublicCertificateForAppRequest) Reset() { *m = Get... method String (line 140) | func (m *GetPublicCertificateForAppRequest) String() string { return p... method ProtoMessage (line 141) | func (*GetPublicCertificateForAppRequest) ProtoMessage() {} type PublicCertificate (line 143) | type PublicCertificate struct method Reset (line 149) | func (m *PublicCertificate) Reset() { *m = PublicCertificate{} } method String (line 150) | func (m *PublicCertificate) String() string { return proto.CompactText... method ProtoMessage (line 151) | func (*PublicCertificate) ProtoMessage() {} method GetKeyName (line 153) | func (m *PublicCertificate) GetKeyName() string { method GetX509CertificatePem (line 160) | func (m *PublicCertificate) GetX509CertificatePem() string { type GetPublicCertificateForAppResponse (line 167) | type GetPublicCertificateForAppResponse struct method Reset (line 173) | func (m *GetPublicCertificateForAppResponse) Reset() { *m = Ge... method String (line 174) | func (m *GetPublicCertificateForAppResponse) String() string { return ... method ProtoMessage (line 175) | func (*GetPublicCertificateForAppResponse) ProtoMessage() {} method GetPublicCertificateList (line 177) | func (m *GetPublicCertificateForAppResponse) GetPublicCertificateList(... method GetMaxClientCacheTimeInSecond (line 184) | func (m *GetPublicCertificateForAppResponse) GetMaxClientCacheTimeInSe... type GetServiceAccountNameRequest (line 191) | type GetServiceAccountNameRequest struct method Reset (line 195) | func (m *GetServiceAccountNameRequest) Reset() { *m = GetServi... method String (line 196) | func (m *GetServiceAccountNameRequest) String() string { return proto.... method ProtoMessage (line 197) | func (*GetServiceAccountNameRequest) ProtoMessage() {} type GetServiceAccountNameResponse (line 199) | type GetServiceAccountNameResponse struct method Reset (line 204) | func (m *GetServiceAccountNameResponse) Reset() { *m = GetServ... method String (line 205) | func (m *GetServiceAccountNameResponse) String() string { return proto... method ProtoMessage (line 206) | func (*GetServiceAccountNameResponse) ProtoMessage() {} method GetServiceAccountName (line 208) | func (m *GetServiceAccountNameResponse) GetServiceAccountName() string { type GetAccessTokenRequest (line 215) | type GetAccessTokenRequest struct method Reset (line 222) | func (m *GetAccessTokenRequest) Reset() { *m = GetAccessTokenR... method String (line 223) | func (m *GetAccessTokenRequest) String() string { return proto.Compact... method ProtoMessage (line 224) | func (*GetAccessTokenRequest) ProtoMessage() {} method GetScope (line 226) | func (m *GetAccessTokenRequest) GetScope() []string { method GetServiceAccountId (line 233) | func (m *GetAccessTokenRequest) GetServiceAccountId() int64 { method GetServiceAccountName (line 240) | func (m *GetAccessTokenRequest) GetServiceAccountName() string { type GetAccessTokenResponse (line 247) | type GetAccessTokenResponse struct method Reset (line 253) | func (m *GetAccessTokenResponse) Reset() { *m = GetAccessToken... method String (line 254) | func (m *GetAccessTokenResponse) String() string { return proto.Compac... method ProtoMessage (line 255) | func (*GetAccessTokenResponse) ProtoMessage() {} method GetAccessToken (line 257) | func (m *GetAccessTokenResponse) GetAccessToken() string { method GetExpirationTime (line 264) | func (m *GetAccessTokenResponse) GetExpirationTime() int64 { type GetDefaultGcsBucketNameRequest (line 271) | type GetDefaultGcsBucketNameRequest struct method Reset (line 275) | func (m *GetDefaultGcsBucketNameRequest) Reset() { *m = GetDef... method String (line 276) | func (m *GetDefaultGcsBucketNameRequest) String() string { return prot... method ProtoMessage (line 277) | func (*GetDefaultGcsBucketNameRequest) ProtoMessage() {} type GetDefaultGcsBucketNameResponse (line 279) | type GetDefaultGcsBucketNameResponse struct method Reset (line 284) | func (m *GetDefaultGcsBucketNameResponse) Reset() { *m = GetDe... method String (line 285) | func (m *GetDefaultGcsBucketNameResponse) String() string { return pro... method ProtoMessage (line 286) | func (*GetDefaultGcsBucketNameResponse) ProtoMessage() {} method GetDefaultGcsBucketName (line 288) | func (m *GetDefaultGcsBucketNameResponse) GetDefaultGcsBucketName() st... function init (line 295) | func init() { FILE: vendor/google.golang.org/appengine/internal/base/api_base.pb.go type StringProto (line 31) | type StringProto struct method Reset (line 36) | func (m *StringProto) Reset() { *m = StringProto{} } method String (line 37) | func (m *StringProto) String() string { return proto.CompactTextString... method ProtoMessage (line 38) | func (*StringProto) ProtoMessage() {} method GetValue (line 40) | func (m *StringProto) GetValue() string { type Integer32Proto (line 47) | type Integer32Proto struct method Reset (line 52) | func (m *Integer32Proto) Reset() { *m = Integer32Proto{} } method String (line 53) | func (m *Integer32Proto) String() string { return proto.CompactTextStr... method ProtoMessage (line 54) | func (*Integer32Proto) ProtoMessage() {} method GetValue (line 56) | func (m *Integer32Proto) GetValue() int32 { type Integer64Proto (line 63) | type Integer64Proto struct method Reset (line 68) | func (m *Integer64Proto) Reset() { *m = Integer64Proto{} } method String (line 69) | func (m *Integer64Proto) String() string { return proto.CompactTextStr... method ProtoMessage (line 70) | func (*Integer64Proto) ProtoMessage() {} method GetValue (line 72) | func (m *Integer64Proto) GetValue() int64 { type BoolProto (line 79) | type BoolProto struct method Reset (line 84) | func (m *BoolProto) Reset() { *m = BoolProto{} } method String (line 85) | func (m *BoolProto) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 86) | func (*BoolProto) ProtoMessage() {} method GetValue (line 88) | func (m *BoolProto) GetValue() bool { type DoubleProto (line 95) | type DoubleProto struct method Reset (line 100) | func (m *DoubleProto) Reset() { *m = DoubleProto{} } method String (line 101) | func (m *DoubleProto) String() string { return proto.CompactTextString... method ProtoMessage (line 102) | func (*DoubleProto) ProtoMessage() {} method GetValue (line 104) | func (m *DoubleProto) GetValue() float64 { type BytesProto (line 111) | type BytesProto struct method Reset (line 116) | func (m *BytesProto) Reset() { *m = BytesProto{} } method String (line 117) | func (m *BytesProto) String() string { return proto.CompactTextString(... method ProtoMessage (line 118) | func (*BytesProto) ProtoMessage() {} method GetValue (line 120) | func (m *BytesProto) GetValue() []byte { type VoidProto (line 127) | type VoidProto struct method Reset (line 131) | func (m *VoidProto) Reset() { *m = VoidProto{} } method String (line 132) | func (m *VoidProto) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 133) | func (*VoidProto) ProtoMessage() {} FILE: vendor/google.golang.org/appengine/internal/blobstore/blobstore_service.pb.go type BlobstoreServiceError_ErrorCode (line 36) | type BlobstoreServiceError_ErrorCode method Enum (line 73) | func (x BlobstoreServiceError_ErrorCode) Enum() *BlobstoreServiceError... method String (line 78) | func (x BlobstoreServiceError_ErrorCode) String() string { method UnmarshalJSON (line 81) | func (x *BlobstoreServiceError_ErrorCode) UnmarshalJSON(data []byte) e... constant BlobstoreServiceError_OK (line 39) | BlobstoreServiceError_OK BlobstoreServiceError_Er... constant BlobstoreServiceError_INTERNAL_ERROR (line 40) | BlobstoreServiceError_INTERNAL_ERROR BlobstoreServiceError_Er... constant BlobstoreServiceError_URL_TOO_LONG (line 41) | BlobstoreServiceError_URL_TOO_LONG BlobstoreServiceError_Er... constant BlobstoreServiceError_PERMISSION_DENIED (line 42) | BlobstoreServiceError_PERMISSION_DENIED BlobstoreServiceError_Er... constant BlobstoreServiceError_BLOB_NOT_FOUND (line 43) | BlobstoreServiceError_BLOB_NOT_FOUND BlobstoreServiceError_Er... constant BlobstoreServiceError_DATA_INDEX_OUT_OF_RANGE (line 44) | BlobstoreServiceError_DATA_INDEX_OUT_OF_RANGE BlobstoreServiceError_Er... constant BlobstoreServiceError_BLOB_FETCH_SIZE_TOO_LARGE (line 45) | BlobstoreServiceError_BLOB_FETCH_SIZE_TOO_LARGE BlobstoreServiceError_Er... constant BlobstoreServiceError_ARGUMENT_OUT_OF_RANGE (line 46) | BlobstoreServiceError_ARGUMENT_OUT_OF_RANGE BlobstoreServiceError_Er... constant BlobstoreServiceError_INVALID_BLOB_KEY (line 47) | BlobstoreServiceError_INVALID_BLOB_KEY BlobstoreServiceError_Er... type BlobstoreServiceError (line 90) | type BlobstoreServiceError struct method Reset (line 94) | func (m *BlobstoreServiceError) Reset() { *m = BlobstoreServic... method String (line 95) | func (m *BlobstoreServiceError) String() string { return proto.Compact... method ProtoMessage (line 96) | func (*BlobstoreServiceError) ProtoMessage() {} type CreateUploadURLRequest (line 98) | type CreateUploadURLRequest struct method Reset (line 107) | func (m *CreateUploadURLRequest) Reset() { *m = CreateUploadUR... method String (line 108) | func (m *CreateUploadURLRequest) String() string { return proto.Compac... method ProtoMessage (line 109) | func (*CreateUploadURLRequest) ProtoMessage() {} method GetSuccessPath (line 111) | func (m *CreateUploadURLRequest) GetSuccessPath() string { method GetMaxUploadSizeBytes (line 118) | func (m *CreateUploadURLRequest) GetMaxUploadSizeBytes() int64 { method GetMaxUploadSizePerBlobBytes (line 125) | func (m *CreateUploadURLRequest) GetMaxUploadSizePerBlobBytes() int64 { method GetGsBucketName (line 132) | func (m *CreateUploadURLRequest) GetGsBucketName() string { method GetUrlExpiryTimeSeconds (line 139) | func (m *CreateUploadURLRequest) GetUrlExpiryTimeSeconds() int32 { type CreateUploadURLResponse (line 146) | type CreateUploadURLResponse struct method Reset (line 151) | func (m *CreateUploadURLResponse) Reset() { *m = CreateUploadU... method String (line 152) | func (m *CreateUploadURLResponse) String() string { return proto.Compa... method ProtoMessage (line 153) | func (*CreateUploadURLResponse) ProtoMessage() {} method GetUrl (line 155) | func (m *CreateUploadURLResponse) GetUrl() string { type DeleteBlobRequest (line 162) | type DeleteBlobRequest struct method Reset (line 168) | func (m *DeleteBlobRequest) Reset() { *m = DeleteBlobRequest{} } method String (line 169) | func (m *DeleteBlobRequest) String() string { return proto.CompactText... method ProtoMessage (line 170) | func (*DeleteBlobRequest) ProtoMessage() {} method GetBlobKey (line 172) | func (m *DeleteBlobRequest) GetBlobKey() []string { method GetToken (line 179) | func (m *DeleteBlobRequest) GetToken() string { type FetchDataRequest (line 186) | type FetchDataRequest struct method Reset (line 193) | func (m *FetchDataRequest) Reset() { *m = FetchDataRequest{} } method String (line 194) | func (m *FetchDataRequest) String() string { return proto.CompactTextS... method ProtoMessage (line 195) | func (*FetchDataRequest) ProtoMessage() {} method GetBlobKey (line 197) | func (m *FetchDataRequest) GetBlobKey() string { method GetStartIndex (line 204) | func (m *FetchDataRequest) GetStartIndex() int64 { method GetEndIndex (line 211) | func (m *FetchDataRequest) GetEndIndex() int64 { type FetchDataResponse (line 218) | type FetchDataResponse struct method Reset (line 223) | func (m *FetchDataResponse) Reset() { *m = FetchDataResponse{} } method String (line 224) | func (m *FetchDataResponse) String() string { return proto.CompactText... method ProtoMessage (line 225) | func (*FetchDataResponse) ProtoMessage() {} method GetData (line 227) | func (m *FetchDataResponse) GetData() []byte { type CloneBlobRequest (line 234) | type CloneBlobRequest struct method Reset (line 241) | func (m *CloneBlobRequest) Reset() { *m = CloneBlobRequest{} } method String (line 242) | func (m *CloneBlobRequest) String() string { return proto.CompactTextS... method ProtoMessage (line 243) | func (*CloneBlobRequest) ProtoMessage() {} method GetBlobKey (line 245) | func (m *CloneBlobRequest) GetBlobKey() []byte { method GetMimeType (line 252) | func (m *CloneBlobRequest) GetMimeType() []byte { method GetTargetAppId (line 259) | func (m *CloneBlobRequest) GetTargetAppId() []byte { type CloneBlobResponse (line 266) | type CloneBlobResponse struct method Reset (line 271) | func (m *CloneBlobResponse) Reset() { *m = CloneBlobResponse{} } method String (line 272) | func (m *CloneBlobResponse) String() string { return proto.CompactText... method ProtoMessage (line 273) | func (*CloneBlobResponse) ProtoMessage() {} method GetBlobKey (line 275) | func (m *CloneBlobResponse) GetBlobKey() []byte { type DecodeBlobKeyRequest (line 282) | type DecodeBlobKeyRequest struct method Reset (line 287) | func (m *DecodeBlobKeyRequest) Reset() { *m = DecodeBlobKeyReq... method String (line 288) | func (m *DecodeBlobKeyRequest) String() string { return proto.CompactT... method ProtoMessage (line 289) | func (*DecodeBlobKeyRequest) ProtoMessage() {} method GetBlobKey (line 291) | func (m *DecodeBlobKeyRequest) GetBlobKey() []string { type DecodeBlobKeyResponse (line 298) | type DecodeBlobKeyResponse struct method Reset (line 303) | func (m *DecodeBlobKeyResponse) Reset() { *m = DecodeBlobKeyRe... method String (line 304) | func (m *DecodeBlobKeyResponse) String() string { return proto.Compact... method ProtoMessage (line 305) | func (*DecodeBlobKeyResponse) ProtoMessage() {} method GetDecoded (line 307) | func (m *DecodeBlobKeyResponse) GetDecoded() []string { type CreateEncodedGoogleStorageKeyRequest (line 314) | type CreateEncodedGoogleStorageKeyRequest struct method Reset (line 319) | func (m *CreateEncodedGoogleStorageKeyRequest) Reset() { *m = ... method String (line 320) | func (m *CreateEncodedGoogleStorageKeyRequest) String() string { retur... method ProtoMessage (line 321) | func (*CreateEncodedGoogleStorageKeyRequest) ProtoMessage() {} method GetFilename (line 323) | func (m *CreateEncodedGoogleStorageKeyRequest) GetFilename() string { type CreateEncodedGoogleStorageKeyResponse (line 330) | type CreateEncodedGoogleStorageKeyResponse struct method Reset (line 335) | func (m *CreateEncodedGoogleStorageKeyResponse) Reset() { *m =... method String (line 336) | func (m *CreateEncodedGoogleStorageKeyResponse) String() string { retu... method ProtoMessage (line 337) | func (*CreateEncodedGoogleStorageKeyResponse) ProtoMessage() {} method GetBlobKey (line 339) | func (m *CreateEncodedGoogleStorageKeyResponse) GetBlobKey() string { function init (line 346) | func init() { FILE: vendor/google.golang.org/appengine/internal/capability/capability_service.pb.go type IsEnabledResponse_SummaryStatus (line 26) | type IsEnabledResponse_SummaryStatus method Enum (line 54) | func (x IsEnabledResponse_SummaryStatus) Enum() *IsEnabledResponse_Sum... method String (line 59) | func (x IsEnabledResponse_SummaryStatus) String() string { method UnmarshalJSON (line 62) | func (x *IsEnabledResponse_SummaryStatus) UnmarshalJSON(data []byte) e... constant IsEnabledResponse_DEFAULT (line 29) | IsEnabledResponse_DEFAULT IsEnabledResponse_SummaryStatus = 0 constant IsEnabledResponse_ENABLED (line 30) | IsEnabledResponse_ENABLED IsEnabledResponse_SummaryStatus = 1 constant IsEnabledResponse_SCHEDULED_FUTURE (line 31) | IsEnabledResponse_SCHEDULED_FUTURE IsEnabledResponse_SummaryStatus = 2 constant IsEnabledResponse_SCHEDULED_NOW (line 32) | IsEnabledResponse_SCHEDULED_NOW IsEnabledResponse_SummaryStatus = 3 constant IsEnabledResponse_DISABLED (line 33) | IsEnabledResponse_DISABLED IsEnabledResponse_SummaryStatus = 4 constant IsEnabledResponse_UNKNOWN (line 34) | IsEnabledResponse_UNKNOWN IsEnabledResponse_SummaryStatus = 5 type IsEnabledRequest (line 71) | type IsEnabledRequest struct method Reset (line 78) | func (m *IsEnabledRequest) Reset() { *m = IsEnabledRequest{} } method String (line 79) | func (m *IsEnabledRequest) String() string { return proto.CompactTextS... method ProtoMessage (line 80) | func (*IsEnabledRequest) ProtoMessage() {} method GetPackage (line 82) | func (m *IsEnabledRequest) GetPackage() string { method GetCapability (line 89) | func (m *IsEnabledRequest) GetCapability() []string { method GetCall (line 96) | func (m *IsEnabledRequest) GetCall() []string { type IsEnabledResponse (line 103) | type IsEnabledResponse struct method Reset (line 109) | func (m *IsEnabledResponse) Reset() { *m = IsEnabledResponse{} } method String (line 110) | func (m *IsEnabledResponse) String() string { return proto.CompactText... method ProtoMessage (line 111) | func (*IsEnabledResponse) ProtoMessage() {} method GetSummaryStatus (line 113) | func (m *IsEnabledResponse) GetSummaryStatus() IsEnabledResponse_Summa... method GetTimeUntilScheduled (line 120) | func (m *IsEnabledResponse) GetTimeUntilScheduled() int64 { FILE: vendor/google.golang.org/appengine/internal/channel/channel_service.pb.go type ChannelServiceError_ErrorCode (line 28) | type ChannelServiceError_ErrorCode method Enum (line 56) | func (x ChannelServiceError_ErrorCode) Enum() *ChannelServiceError_Err... method String (line 61) | func (x ChannelServiceError_ErrorCode) String() string { method UnmarshalJSON (line 64) | func (x *ChannelServiceError_ErrorCode) UnmarshalJSON(data []byte) err... constant ChannelServiceError_OK (line 31) | ChannelServiceError_OK ChannelServiceError_E... constant ChannelServiceError_INTERNAL_ERROR (line 32) | ChannelServiceError_INTERNAL_ERROR ChannelServiceError_E... constant ChannelServiceError_INVALID_CHANNEL_KEY (line 33) | ChannelServiceError_INVALID_CHANNEL_KEY ChannelServiceError_E... constant ChannelServiceError_BAD_MESSAGE (line 34) | ChannelServiceError_BAD_MESSAGE ChannelServiceError_E... constant ChannelServiceError_INVALID_CHANNEL_TOKEN_DURATION (line 35) | ChannelServiceError_INVALID_CHANNEL_TOKEN_DURATION ChannelServiceError_E... constant ChannelServiceError_APPID_ALIAS_REQUIRED (line 36) | ChannelServiceError_APPID_ALIAS_REQUIRED ChannelServiceError_E... type ChannelServiceError (line 73) | type ChannelServiceError struct method Reset (line 77) | func (m *ChannelServiceError) Reset() { *m = ChannelServiceErr... method String (line 78) | func (m *ChannelServiceError) String() string { return proto.CompactTe... method ProtoMessage (line 79) | func (*ChannelServiceError) ProtoMessage() {} type CreateChannelRequest (line 81) | type CreateChannelRequest struct method Reset (line 87) | func (m *CreateChannelRequest) Reset() { *m = CreateChannelReq... method String (line 88) | func (m *CreateChannelRequest) String() string { return proto.CompactT... method ProtoMessage (line 89) | func (*CreateChannelRequest) ProtoMessage() {} method GetApplicationKey (line 91) | func (m *CreateChannelRequest) GetApplicationKey() string { method GetDurationMinutes (line 98) | func (m *CreateChannelRequest) GetDurationMinutes() int32 { type CreateChannelResponse (line 105) | type CreateChannelResponse struct method Reset (line 111) | func (m *CreateChannelResponse) Reset() { *m = CreateChannelRe... method String (line 112) | func (m *CreateChannelResponse) String() string { return proto.Compact... method ProtoMessage (line 113) | func (*CreateChannelResponse) ProtoMessage() {} method GetToken (line 115) | func (m *CreateChannelResponse) GetToken() string { method GetDurationMinutes (line 122) | func (m *CreateChannelResponse) GetDurationMinutes() int32 { type SendMessageRequest (line 129) | type SendMessageRequest struct method Reset (line 135) | func (m *SendMessageRequest) Reset() { *m = SendMessageRequest... method String (line 136) | func (m *SendMessageRequest) String() string { return proto.CompactTex... method ProtoMessage (line 137) | func (*SendMessageRequest) ProtoMessage() {} method GetApplicationKey (line 139) | func (m *SendMessageRequest) GetApplicationKey() string { method GetMessage (line 146) | func (m *SendMessageRequest) GetMessage() string { function init (line 153) | func init() { FILE: vendor/google.golang.org/appengine/internal/datastore/datastore_v3.pb.go type Property_Meaning (line 62) | type Property_Meaning method Enum (line 132) | func (x Property_Meaning) Enum() *Property_Meaning { method String (line 137) | func (x Property_Meaning) String() string { method UnmarshalJSON (line 140) | func (x *Property_Meaning) UnmarshalJSON(data []byte) error { constant Property_NO_MEANING (line 65) | Property_NO_MEANING Property_Meaning = 0 constant Property_BLOB (line 66) | Property_BLOB Property_Meaning = 14 constant Property_TEXT (line 67) | Property_TEXT Property_Meaning = 15 constant Property_BYTESTRING (line 68) | Property_BYTESTRING Property_Meaning = 16 constant Property_ATOM_CATEGORY (line 69) | Property_ATOM_CATEGORY Property_Meaning = 1 constant Property_ATOM_LINK (line 70) | Property_ATOM_LINK Property_Meaning = 2 constant Property_ATOM_TITLE (line 71) | Property_ATOM_TITLE Property_Meaning = 3 constant Property_ATOM_CONTENT (line 72) | Property_ATOM_CONTENT Property_Meaning = 4 constant Property_ATOM_SUMMARY (line 73) | Property_ATOM_SUMMARY Property_Meaning = 5 constant Property_ATOM_AUTHOR (line 74) | Property_ATOM_AUTHOR Property_Meaning = 6 constant Property_GD_WHEN (line 75) | Property_GD_WHEN Property_Meaning = 7 constant Property_GD_EMAIL (line 76) | Property_GD_EMAIL Property_Meaning = 8 constant Property_GEORSS_POINT (line 77) | Property_GEORSS_POINT Property_Meaning = 9 constant Property_GD_IM (line 78) | Property_GD_IM Property_Meaning = 10 constant Property_GD_PHONENUMBER (line 79) | Property_GD_PHONENUMBER Property_Meaning = 11 constant Property_GD_POSTALADDRESS (line 80) | Property_GD_POSTALADDRESS Property_Meaning = 12 constant Property_GD_RATING (line 81) | Property_GD_RATING Property_Meaning = 13 constant Property_BLOBKEY (line 82) | Property_BLOBKEY Property_Meaning = 17 constant Property_ENTITY_PROTO (line 83) | Property_ENTITY_PROTO Property_Meaning = 19 constant Property_INDEX_VALUE (line 84) | Property_INDEX_VALUE Property_Meaning = 18 type Property_FtsTokenizationOption (line 149) | type Property_FtsTokenizationOption method Enum (line 165) | func (x Property_FtsTokenizationOption) Enum() *Property_FtsTokenizati... method String (line 170) | func (x Property_FtsTokenizationOption) String() string { method UnmarshalJSON (line 173) | func (x *Property_FtsTokenizationOption) UnmarshalJSON(data []byte) er... constant Property_HTML (line 152) | Property_HTML Property_FtsTokenizationOption = 1 constant Property_ATOM (line 153) | Property_ATOM Property_FtsTokenizationOption = 2 type EntityProto_Kind (line 182) | type EntityProto_Kind method Enum (line 201) | func (x EntityProto_Kind) Enum() *EntityProto_Kind { method String (line 206) | func (x EntityProto_Kind) String() string { method UnmarshalJSON (line 209) | func (x *EntityProto_Kind) UnmarshalJSON(data []byte) error { constant EntityProto_GD_CONTACT (line 185) | EntityProto_GD_CONTACT EntityProto_Kind = 1 constant EntityProto_GD_EVENT (line 186) | EntityProto_GD_EVENT EntityProto_Kind = 2 constant EntityProto_GD_MESSAGE (line 187) | EntityProto_GD_MESSAGE EntityProto_Kind = 3 type Index_Property_Direction (line 218) | type Index_Property_Direction method Enum (line 234) | func (x Index_Property_Direction) Enum() *Index_Property_Direction { method String (line 239) | func (x Index_Property_Direction) String() string { method UnmarshalJSON (line 242) | func (x *Index_Property_Direction) UnmarshalJSON(data []byte) error { constant Index_Property_ASCENDING (line 221) | Index_Property_ASCENDING Index_Property_Direction = 1 constant Index_Property_DESCENDING (line 222) | Index_Property_DESCENDING Index_Property_Direction = 2 type CompositeIndex_State (line 251) | type CompositeIndex_State method Enum (line 273) | func (x CompositeIndex_State) Enum() *CompositeIndex_State { method String (line 278) | func (x CompositeIndex_State) String() string { method UnmarshalJSON (line 281) | func (x *CompositeIndex_State) UnmarshalJSON(data []byte) error { constant CompositeIndex_WRITE_ONLY (line 254) | CompositeIndex_WRITE_ONLY CompositeIndex_State = 1 constant CompositeIndex_READ_WRITE (line 255) | CompositeIndex_READ_WRITE CompositeIndex_State = 2 constant CompositeIndex_DELETED (line 256) | CompositeIndex_DELETED CompositeIndex_State = 3 constant CompositeIndex_ERROR (line 257) | CompositeIndex_ERROR CompositeIndex_State = 4 type Snapshot_Status (line 290) | type Snapshot_Status method Enum (line 306) | func (x Snapshot_Status) Enum() *Snapshot_Status { method String (line 311) | func (x Snapshot_Status) String() string { method UnmarshalJSON (line 314) | func (x *Snapshot_Status) UnmarshalJSON(data []byte) error { constant Snapshot_INACTIVE (line 293) | Snapshot_INACTIVE Snapshot_Status = 0 constant Snapshot_ACTIVE (line 294) | Snapshot_ACTIVE Snapshot_Status = 1 type Query_Hint (line 323) | type Query_Hint method Enum (line 342) | func (x Query_Hint) Enum() *Query_Hint { method String (line 347) | func (x Query_Hint) String() string { method UnmarshalJSON (line 350) | func (x *Query_Hint) UnmarshalJSON(data []byte) error { constant Query_ORDER_FIRST (line 326) | Query_ORDER_FIRST Query_Hint = 1 constant Query_ANCESTOR_FIRST (line 327) | Query_ANCESTOR_FIRST Query_Hint = 2 constant Query_FILTER_FIRST (line 328) | Query_FILTER_FIRST Query_Hint = 3 type Query_Filter_Operator (line 359) | type Query_Filter_Operator method Enum (line 390) | func (x Query_Filter_Operator) Enum() *Query_Filter_Operator { method String (line 395) | func (x Query_Filter_Operator) String() string { method UnmarshalJSON (line 398) | func (x *Query_Filter_Operator) UnmarshalJSON(data []byte) error { constant Query_Filter_LESS_THAN (line 362) | Query_Filter_LESS_THAN Query_Filter_Operator = 1 constant Query_Filter_LESS_THAN_OR_EQUAL (line 363) | Query_Filter_LESS_THAN_OR_EQUAL Query_Filter_Operator = 2 constant Query_Filter_GREATER_THAN (line 364) | Query_Filter_GREATER_THAN Query_Filter_Operator = 3 constant Query_Filter_GREATER_THAN_OR_EQUAL (line 365) | Query_Filter_GREATER_THAN_OR_EQUAL Query_Filter_Operator = 4 constant Query_Filter_EQUAL (line 366) | Query_Filter_EQUAL Query_Filter_Operator = 5 constant Query_Filter_IN (line 367) | Query_Filter_IN Query_Filter_Operator = 6 constant Query_Filter_EXISTS (line 368) | Query_Filter_EXISTS Query_Filter_Operator = 7 type Query_Order_Direction (line 407) | type Query_Order_Direction method Enum (line 423) | func (x Query_Order_Direction) Enum() *Query_Order_Direction { method String (line 428) | func (x Query_Order_Direction) String() string { method UnmarshalJSON (line 431) | func (x *Query_Order_Direction) UnmarshalJSON(data []byte) error { constant Query_Order_ASCENDING (line 410) | Query_Order_ASCENDING Query_Order_Direction = 1 constant Query_Order_DESCENDING (line 411) | Query_Order_DESCENDING Query_Order_Direction = 2 type Error_ErrorCode (line 440) | type Error_ErrorCode method Enum (line 483) | func (x Error_ErrorCode) Enum() *Error_ErrorCode { method String (line 488) | func (x Error_ErrorCode) String() string { method UnmarshalJSON (line 491) | func (x *Error_ErrorCode) UnmarshalJSON(data []byte) error { constant Error_BAD_REQUEST (line 443) | Error_BAD_REQUEST Error_ErrorCode = 1 constant Error_CONCURRENT_TRANSACTION (line 444) | Error_CONCURRENT_TRANSACTION Error_ErrorCode = 2 constant Error_INTERNAL_ERROR (line 445) | Error_INTERNAL_ERROR Error_ErrorCode = 3 constant Error_NEED_INDEX (line 446) | Error_NEED_INDEX Error_ErrorCode = 4 constant Error_TIMEOUT (line 447) | Error_TIMEOUT Error_ErrorCode = 5 constant Error_PERMISSION_DENIED (line 448) | Error_PERMISSION_DENIED Error_ErrorCode = 6 constant Error_BIGTABLE_ERROR (line 449) | Error_BIGTABLE_ERROR Error_ErrorCode = 7 constant Error_COMMITTED_BUT_STILL_APPLYING (line 450) | Error_COMMITTED_BUT_STILL_APPLYING Error_ErrorCode = 8 constant Error_CAPABILITY_DISABLED (line 451) | Error_CAPABILITY_DISABLED Error_ErrorCode = 9 constant Error_TRY_ALTERNATE_BACKEND (line 452) | Error_TRY_ALTERNATE_BACKEND Error_ErrorCode = 10 constant Error_SAFE_TIME_TOO_OLD (line 453) | Error_SAFE_TIME_TOO_OLD Error_ErrorCode = 11 type PutRequest_AutoIdPolicy (line 500) | type PutRequest_AutoIdPolicy method Enum (line 516) | func (x PutRequest_AutoIdPolicy) Enum() *PutRequest_AutoIdPolicy { method String (line 521) | func (x PutRequest_AutoIdPolicy) String() string { method UnmarshalJSON (line 524) | func (x *PutRequest_AutoIdPolicy) UnmarshalJSON(data []byte) error { constant PutRequest_CURRENT (line 503) | PutRequest_CURRENT PutRequest_AutoIdPolicy = 0 constant PutRequest_SEQUENTIAL (line 504) | PutRequest_SEQUENTIAL PutRequest_AutoIdPolicy = 1 type Action (line 533) | type Action struct method Reset (line 537) | func (m *Action) Reset() { *m = Action{} } method String (line 538) | func (m *Action) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 539) | func (*Action) ProtoMessage() {} type PropertyValue (line 541) | type PropertyValue struct method Reset (line 552) | func (m *PropertyValue) Reset() { *m = PropertyValue{} } method String (line 553) | func (m *PropertyValue) String() string { return proto.CompactTextStri... method ProtoMessage (line 554) | func (*PropertyValue) ProtoMessage() {} method GetInt64Value (line 556) | func (m *PropertyValue) GetInt64Value() int64 { method GetBooleanValue (line 563) | func (m *PropertyValue) GetBooleanValue() bool { method GetStringValue (line 570) | func (m *PropertyValue) GetStringValue() string { method GetDoubleValue (line 577) | func (m *PropertyValue) GetDoubleValue() float64 { method GetPointvalue (line 584) | func (m *PropertyValue) GetPointvalue() *PropertyValue_PointValue { method GetUservalue (line 591) | func (m *PropertyValue) GetUservalue() *PropertyValue_UserValue { method GetReferencevalue (line 598) | func (m *PropertyValue) GetReferencevalue() *PropertyValue_ReferenceVa... type PropertyValue_PointValue (line 605) | type PropertyValue_PointValue struct method Reset (line 611) | func (m *PropertyValue_PointValue) Reset() { *m = PropertyValu... method String (line 612) | func (m *PropertyValue_PointValue) String() string { return proto.Comp... method ProtoMessage (line 613) | func (*PropertyValue_PointValue) ProtoMessage() {} method GetX (line 615) | func (m *PropertyValue_PointValue) GetX() float64 { method GetY (line 622) | func (m *PropertyValue_PointValue) GetY() float64 { type PropertyValue_UserValue (line 629) | type PropertyValue_UserValue struct method Reset (line 638) | func (m *PropertyValue_UserValue) Reset() { *m = PropertyValue... method String (line 639) | func (m *PropertyValue_UserValue) String() string { return proto.Compa... method ProtoMessage (line 640) | func (*PropertyValue_UserValue) ProtoMessage() {} method GetEmail (line 642) | func (m *PropertyValue_UserValue) GetEmail() string { method GetAuthDomain (line 649) | func (m *PropertyValue_UserValue) GetAuthDomain() string { method GetNickname (line 656) | func (m *PropertyValue_UserValue) GetNickname() string { method GetFederatedIdentity (line 663) | func (m *PropertyValue_UserValue) GetFederatedIdentity() string { method GetFederatedProvider (line 670) | func (m *PropertyValue_UserValue) GetFederatedProvider() string { type PropertyValue_ReferenceValue (line 677) | type PropertyValue_ReferenceValue struct method Reset (line 684) | func (m *PropertyValue_ReferenceValue) Reset() { *m = Property... method String (line 685) | func (m *PropertyValue_ReferenceValue) String() string { return proto.... method ProtoMessage (line 686) | func (*PropertyValue_ReferenceValue) ProtoMessage() {} method GetApp (line 688) | func (m *PropertyValue_ReferenceValue) GetApp() string { method GetNameSpace (line 695) | func (m *PropertyValue_ReferenceValue) GetNameSpace() string { method GetPathelement (line 702) | func (m *PropertyValue_ReferenceValue) GetPathelement() []*PropertyVal... type PropertyValue_ReferenceValue_PathElement (line 709) | type PropertyValue_ReferenceValue_PathElement struct method Reset (line 716) | func (m *PropertyValue_ReferenceValue_PathElement) Reset() { method String (line 719) | func (m *PropertyValue_ReferenceValue_PathElement) String() string { r... method ProtoMessage (line 720) | func (*PropertyValue_ReferenceValue_PathElement) ProtoMessage() {} method GetType (line 722) | func (m *PropertyValue_ReferenceValue_PathElement) GetType() string { method GetId (line 729) | func (m *PropertyValue_ReferenceValue_PathElement) GetId() int64 { method GetName (line 736) | func (m *PropertyValue_ReferenceValue_PathElement) GetName() string { type Property (line 743) | type Property struct method Reset (line 755) | func (m *Property) Reset() { *m = Property{} } method String (line 756) | func (m *Property) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 757) | func (*Property) ProtoMessage() {} method GetMeaning (line 763) | func (m *Property) GetMeaning() Property_Meaning { method GetMeaningUri (line 770) | func (m *Property) GetMeaningUri() string { method GetName (line 777) | func (m *Property) GetName() string { method GetValue (line 784) | func (m *Property) GetValue() *PropertyValue { method GetMultiple (line 791) | func (m *Property) GetMultiple() bool { method GetSearchable (line 798) | func (m *Property) GetSearchable() bool { method GetFtsTokenizationOption (line 805) | func (m *Property) GetFtsTokenizationOption() Property_FtsTokenization... method GetLocale (line 812) | func (m *Property) GetLocale() string { constant Default_Property_Meaning (line 759) | Default_Property_Meaning Property_Meaning = Property_NO_MEANING constant Default_Property_Searchable (line 760) | Default_Property_Searchable bool = false constant Default_Property_Locale (line 761) | Default_Property_Locale string = "en" type Path (line 819) | type Path struct method Reset (line 824) | func (m *Path) Reset() { *m = Path{} } method String (line 825) | func (m *Path) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 826) | func (*Path) ProtoMessage() {} method GetElement (line 828) | func (m *Path) GetElement() []*Path_Element { type Path_Element (line 835) | type Path_Element struct method Reset (line 842) | func (m *Path_Element) Reset() { *m = Path_Element{} } method String (line 843) | func (m *Path_Element) String() string { return proto.CompactTextStrin... method ProtoMessage (line 844) | func (*Path_Element) ProtoMessage() {} method GetType (line 846) | func (m *Path_Element) GetType() string { method GetId (line 853) | func (m *Path_Element) GetId() int64 { method GetName (line 860) | func (m *Path_Element) GetName() string { type Reference (line 867) | type Reference struct method Reset (line 874) | func (m *Reference) Reset() { *m = Reference{} } method String (line 875) | func (m *Reference) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 876) | func (*Reference) ProtoMessage() {} method GetApp (line 878) | func (m *Reference) GetApp() string { method GetNameSpace (line 885) | func (m *Reference) GetNameSpace() string { method GetPath (line 892) | func (m *Reference) GetPath() *Path { type User (line 899) | type User struct method Reset (line 908) | func (m *User) Reset() { *m = User{} } method String (line 909) | func (m *User) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 910) | func (*User) ProtoMessage() {} method GetEmail (line 912) | func (m *User) GetEmail() string { method GetAuthDomain (line 919) | func (m *User) GetAuthDomain() string { method GetNickname (line 926) | func (m *User) GetNickname() string { method GetFederatedIdentity (line 933) | func (m *User) GetFederatedIdentity() string { method GetFederatedProvider (line 940) | func (m *User) GetFederatedProvider() string { type EntityProto (line 947) | type EntityProto struct method Reset (line 959) | func (m *EntityProto) Reset() { *m = EntityProto{} } method String (line 960) | func (m *EntityProto) String() string { return proto.CompactTextString... method ProtoMessage (line 961) | func (*EntityProto) ProtoMessage() {} method GetKey (line 963) | func (m *EntityProto) GetKey() *Reference { method GetEntityGroup (line 970) | func (m *EntityProto) GetEntityGroup() *Path { method GetOwner (line 977) | func (m *EntityProto) GetOwner() *User { method GetKind (line 984) | func (m *EntityProto) GetKind() EntityProto_Kind { method GetKindUri (line 991) | func (m *EntityProto) GetKindUri() string { method GetProperty (line 998) | func (m *EntityProto) GetProperty() []*Property { method GetRawProperty (line 1005) | func (m *EntityProto) GetRawProperty() []*Property { method GetRank (line 1012) | func (m *EntityProto) GetRank() int32 { type CompositeProperty (line 1019) | type CompositeProperty struct method Reset (line 1025) | func (m *CompositeProperty) Reset() { *m = CompositeProperty{} } method String (line 1026) | func (m *CompositeProperty) String() string { return proto.CompactText... method ProtoMessage (line 1027) | func (*CompositeProperty) ProtoMessage() {} method GetIndexId (line 1029) | func (m *CompositeProperty) GetIndexId() int64 { method GetValue (line 1036) | func (m *CompositeProperty) GetValue() []string { type Index (line 1043) | type Index struct method Reset (line 1050) | func (m *Index) Reset() { *m = Index{} } method String (line 1051) | func (m *Index) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 1052) | func (*Index) ProtoMessage() {} method GetEntityType (line 1054) | func (m *Index) GetEntityType() string { method GetAncestor (line 1061) | func (m *Index) GetAncestor() bool { method GetProperty (line 1068) | func (m *Index) GetProperty() []*Index_Property { type Index_Property (line 1075) | type Index_Property struct method Reset (line 1081) | func (m *Index_Property) Reset() { *m = Index_Property{} } method String (line 1082) | func (m *Index_Property) String() string { return proto.CompactTextStr... method ProtoMessage (line 1083) | func (*Index_Property) ProtoMessage() {} method GetName (line 1087) | func (m *Index_Property) GetName() string { method GetDirection (line 1094) | func (m *Index_Property) GetDirection() Index_Property_Direction { constant Default_Index_Property_Direction (line 1085) | Default_Index_Property_Direction Index_Property_Direction = Index_Proper... type CompositeIndex (line 1101) | type CompositeIndex struct method Reset (line 1110) | func (m *CompositeIndex) Reset() { *m = CompositeIndex{} } method String (line 1111) | func (m *CompositeIndex) String() string { return proto.CompactTextStr... method ProtoMessage (line 1112) | func (*CompositeIndex) ProtoMessage() {} method GetAppId (line 1116) | func (m *CompositeIndex) GetAppId() string { method GetId (line 1123) | func (m *CompositeIndex) GetId() int64 { method GetDefinition (line 1130) | func (m *CompositeIndex) GetDefinition() *Index { method GetState (line 1137) | func (m *CompositeIndex) GetState() CompositeIndex_State { method GetOnlyUseIfRequired (line 1144) | func (m *CompositeIndex) GetOnlyUseIfRequired() bool { constant Default_CompositeIndex_OnlyUseIfRequired (line 1114) | Default_CompositeIndex_OnlyUseIfRequired bool = false type IndexPostfix (line 1151) | type IndexPostfix struct method Reset (line 1158) | func (m *IndexPostfix) Reset() { *m = IndexPostfix{} } method String (line 1159) | func (m *IndexPostfix) String() string { return proto.CompactTextStrin... method ProtoMessage (line 1160) | func (*IndexPostfix) ProtoMessage() {} method GetIndexValue (line 1164) | func (m *IndexPostfix) GetIndexValue() []*IndexPostfix_IndexValue { method GetKey (line 1171) | func (m *IndexPostfix) GetKey() *Reference { method GetBefore (line 1178) | func (m *IndexPostfix) GetBefore() bool { constant Default_IndexPostfix_Before (line 1162) | Default_IndexPostfix_Before bool = true type IndexPostfix_IndexValue (line 1185) | type IndexPostfix_IndexValue struct method Reset (line 1191) | func (m *IndexPostfix_IndexValue) Reset() { *m = IndexPostfix_... method String (line 1192) | func (m *IndexPostfix_IndexValue) String() string { return proto.Compa... method ProtoMessage (line 1193) | func (*IndexPostfix_IndexValue) ProtoMessage() {} method GetPropertyName (line 1195) | func (m *IndexPostfix_IndexValue) GetPropertyName() string { method GetValue (line 1202) | func (m *IndexPostfix_IndexValue) GetValue() *PropertyValue { type IndexPosition (line 1209) | type IndexPosition struct method Reset (line 1215) | func (m *IndexPosition) Reset() { *m = IndexPosition{} } method String (line 1216) | func (m *IndexPosition) String() string { return proto.CompactTextStri... method ProtoMessage (line 1217) | func (*IndexPosition) ProtoMessage() {} method GetKey (line 1221) | func (m *IndexPosition) GetKey() string { method GetBefore (line 1228) | func (m *IndexPosition) GetBefore() bool { constant Default_IndexPosition_Before (line 1219) | Default_IndexPosition_Before bool = true type Snapshot (line 1235) | type Snapshot struct method Reset (line 1240) | func (m *Snapshot) Reset() { *m = Snapshot{} } method String (line 1241) | func (m *Snapshot) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 1242) | func (*Snapshot) ProtoMessage() {} method GetTs (line 1244) | func (m *Snapshot) GetTs() int64 { type InternalHeader (line 1251) | type InternalHeader struct method Reset (line 1256) | func (m *InternalHeader) Reset() { *m = InternalHeader{} } method String (line 1257) | func (m *InternalHeader) String() string { return proto.CompactTextStr... method ProtoMessage (line 1258) | func (*InternalHeader) ProtoMessage() {} method GetQos (line 1260) | func (m *InternalHeader) GetQos() string { type Transaction (line 1267) | type Transaction struct method Reset (line 1275) | func (m *Transaction) Reset() { *m = Transaction{} } method String (line 1276) | func (m *Transaction) String() string { return proto.CompactTextString... method ProtoMessage (line 1277) | func (*Transaction) ProtoMessage() {} method GetHeader (line 1281) | func (m *Transaction) GetHeader() *InternalHeader { method GetHandle (line 1288) | func (m *Transaction) GetHandle() uint64 { method GetApp (line 1295) | func (m *Transaction) GetApp() string { method GetMarkChanges (line 1302) | func (m *Transaction) GetMarkChanges() bool { constant Default_Transaction_MarkChanges (line 1279) | Default_Transaction_MarkChanges bool = false type Query (line 1309) | type Query struct method Reset (line 1340) | func (m *Query) Reset() { *m = Query{} } method String (line 1341) | func (m *Query) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 1342) | func (*Query) ProtoMessage() {} method GetHeader (line 1350) | func (m *Query) GetHeader() *InternalHeader { method GetApp (line 1357) | func (m *Query) GetApp() string { method GetNameSpace (line 1364) | func (m *Query) GetNameSpace() string { method GetKind (line 1371) | func (m *Query) GetKind() string { method GetAncestor (line 1378) | func (m *Query) GetAncestor() *Reference { method GetFilter (line 1385) | func (m *Query) GetFilter() []*Query_Filter { method GetSearchQuery (line 1392) | func (m *Query) GetSearchQuery() string { method GetOrder (line 1399) | func (m *Query) GetOrder() []*Query_Order { method GetHint (line 1406) | func (m *Query) GetHint() Query_Hint { method GetCount (line 1413) | func (m *Query) GetCount() int32 { method GetOffset (line 1420) | func (m *Query) GetOffset() int32 { method GetLimit (line 1427) | func (m *Query) GetLimit() int32 { method GetCompiledCursor (line 1434) | func (m *Query) GetCompiledCursor() *CompiledCursor { method GetEndCompiledCursor (line 1441) | func (m *Query) GetEndCompiledCursor() *CompiledCursor { method GetCompositeIndex (line 1448) | func (m *Query) GetCompositeIndex() []*CompositeIndex { method GetRequirePerfectPlan (line 1455) | func (m *Query) GetRequirePerfectPlan() bool { method GetKeysOnly (line 1462) | func (m *Query) GetKeysOnly() bool { method GetTransaction (line 1469) | func (m *Query) GetTransaction() *Transaction { method GetCompile (line 1476) | func (m *Query) GetCompile() bool { method GetFailoverMs (line 1483) | func (m *Query) GetFailoverMs() int64 { method GetStrong (line 1490) | func (m *Query) GetStrong() bool { method GetPropertyName (line 1497) | func (m *Query) GetPropertyName() []string { method GetGroupByPropertyName (line 1504) | func (m *Query) GetGroupByPropertyName() []string { method GetDistinct (line 1511) | func (m *Query) GetDistinct() bool { method GetMinSafeTimeSeconds (line 1518) | func (m *Query) GetMinSafeTimeSeconds() int64 { method GetSafeReplicaName (line 1525) | func (m *Query) GetSafeReplicaName() []string { method GetPersistOffset (line 1532) | func (m *Query) GetPersistOffset() bool { constant Default_Query_Offset (line 1344) | Default_Query_Offset int32 = 0 constant Default_Query_RequirePerfectPlan (line 1345) | Default_Query_RequirePerfectPlan bool = false constant Default_Query_KeysOnly (line 1346) | Default_Query_KeysOnly bool = false constant Default_Query_Compile (line 1347) | Default_Query_Compile bool = false constant Default_Query_PersistOffset (line 1348) | Default_Query_PersistOffset bool = false type Query_Filter (line 1539) | type Query_Filter struct method Reset (line 1545) | func (m *Query_Filter) Reset() { *m = Query_Filter{} } method String (line 1546) | func (m *Query_Filter) String() string { return proto.CompactTextStrin... method ProtoMessage (line 1547) | func (*Query_Filter) ProtoMessage() {} method GetOp (line 1549) | func (m *Query_Filter) GetOp() Query_Filter_Operator { method GetProperty (line 1556) | func (m *Query_Filter) GetProperty() []*Property { type Query_Order (line 1563) | type Query_Order struct method Reset (line 1569) | func (m *Query_Order) Reset() { *m = Query_Order{} } method String (line 1570) | func (m *Query_Order) String() string { return proto.CompactTextString... method ProtoMessage (line 1571) | func (*Query_Order) ProtoMessage() {} method GetProperty (line 1575) | func (m *Query_Order) GetProperty() string { method GetDirection (line 1582) | func (m *Query_Order) GetDirection() Query_Order_Direction { constant Default_Query_Order_Direction (line 1573) | Default_Query_Order_Direction Query_Order_Direction = Query_Order_ASCENDING type CompiledQuery (line 1589) | type CompiledQuery struct method Reset (line 1602) | func (m *CompiledQuery) Reset() { *m = CompiledQuery{} } method String (line 1603) | func (m *CompiledQuery) String() string { return proto.CompactTextStri... method ProtoMessage (line 1604) | func (*CompiledQuery) ProtoMessage() {} method GetPrimaryscan (line 1608) | func (m *CompiledQuery) GetPrimaryscan() *CompiledQuery_PrimaryScan { method GetMergejoinscan (line 1615) | func (m *CompiledQuery) GetMergejoinscan() []*CompiledQuery_MergeJoinS... method GetIndexDef (line 1622) | func (m *CompiledQuery) GetIndexDef() *Index { method GetOffset (line 1629) | func (m *CompiledQuery) GetOffset() int32 { method GetLimit (line 1636) | func (m *CompiledQuery) GetLimit() int32 { method GetKeysOnly (line 1643) | func (m *CompiledQuery) GetKeysOnly() bool { method GetPropertyName (line 1650) | func (m *CompiledQuery) GetPropertyName() []string { method GetDistinctInfixSize (line 1657) | func (m *CompiledQuery) GetDistinctInfixSize() int32 { method GetEntityfilter (line 1664) | func (m *CompiledQuery) GetEntityfilter() *CompiledQuery_EntityFilter { constant Default_CompiledQuery_Offset (line 1606) | Default_CompiledQuery_Offset int32 = 0 type CompiledQuery_PrimaryScan (line 1671) | type CompiledQuery_PrimaryScan struct method Reset (line 1683) | func (m *CompiledQuery_PrimaryScan) Reset() { *m = CompiledQue... method String (line 1684) | func (m *CompiledQuery_PrimaryScan) String() string { return proto.Com... method ProtoMessage (line 1685) | func (*CompiledQuery_PrimaryScan) ProtoMessage() {} method GetIndexName (line 1687) | func (m *CompiledQuery_PrimaryScan) GetIndexName() string { method GetStartKey (line 1694) | func (m *CompiledQuery_PrimaryScan) GetStartKey() string { method GetStartInclusive (line 1701) | func (m *CompiledQuery_PrimaryScan) GetStartInclusive() bool { method GetEndKey (line 1708) | func (m *CompiledQuery_PrimaryScan) GetEndKey() string { method GetEndInclusive (line 1715) | func (m *CompiledQuery_PrimaryScan) GetEndInclusive() bool { method GetStartPostfixValue (line 1722) | func (m *CompiledQuery_PrimaryScan) GetStartPostfixValue() []string { method GetEndPostfixValue (line 1729) | func (m *CompiledQuery_PrimaryScan) GetEndPostfixValue() []string { method GetEndUnappliedLogTimestampUs (line 1736) | func (m *CompiledQuery_PrimaryScan) GetEndUnappliedLogTimestampUs() in... type CompiledQuery_MergeJoinScan (line 1743) | type CompiledQuery_MergeJoinScan struct method Reset (line 1750) | func (m *CompiledQuery_MergeJoinScan) Reset() { *m = CompiledQ... method String (line 1751) | func (m *CompiledQuery_MergeJoinScan) String() string { return proto.C... method ProtoMessage (line 1752) | func (*CompiledQuery_MergeJoinScan) ProtoMessage() {} method GetIndexName (line 1756) | func (m *CompiledQuery_MergeJoinScan) GetIndexName() string { method GetPrefixValue (line 1763) | func (m *CompiledQuery_MergeJoinScan) GetPrefixValue() []string { method GetValuePrefix (line 1770) | func (m *CompiledQuery_MergeJoinScan) GetValuePrefix() bool { constant Default_CompiledQuery_MergeJoinScan_ValuePrefix (line 1754) | Default_CompiledQuery_MergeJoinScan_ValuePrefix bool = false type CompiledQuery_EntityFilter (line 1777) | type CompiledQuery_EntityFilter struct method Reset (line 1784) | func (m *CompiledQuery_EntityFilter) Reset() { *m = CompiledQu... method String (line 1785) | func (m *CompiledQuery_EntityFilter) String() string { return proto.Co... method ProtoMessage (line 1786) | func (*CompiledQuery_EntityFilter) ProtoMessage() {} method GetDistinct (line 1790) | func (m *CompiledQuery_EntityFilter) GetDistinct() bool { method GetKind (line 1797) | func (m *CompiledQuery_EntityFilter) GetKind() string { method GetAncestor (line 1804) | func (m *CompiledQuery_EntityFilter) GetAncestor() *Reference { constant Default_CompiledQuery_EntityFilter_Distinct (line 1788) | Default_CompiledQuery_EntityFilter_Distinct bool = false type CompiledCursor (line 1811) | type CompiledCursor struct method Reset (line 1816) | func (m *CompiledCursor) Reset() { *m = CompiledCursor{} } method String (line 1817) | func (m *CompiledCursor) String() string { return proto.CompactTextStr... method ProtoMessage (line 1818) | func (*CompiledCursor) ProtoMessage() {} method GetPosition (line 1820) | func (m *CompiledCursor) GetPosition() *CompiledCursor_Position { type CompiledCursor_Position (line 1827) | type CompiledCursor_Position struct method Reset (line 1835) | func (m *CompiledCursor_Position) Reset() { *m = CompiledCurso... method String (line 1836) | func (m *CompiledCursor_Position) String() string { return proto.Compa... method ProtoMessage (line 1837) | func (*CompiledCursor_Position) ProtoMessage() {} method GetStartKey (line 1841) | func (m *CompiledCursor_Position) GetStartKey() string { method GetIndexvalue (line 1848) | func (m *CompiledCursor_Position) GetIndexvalue() []*CompiledCursor_Po... method GetKey (line 1855) | func (m *CompiledCursor_Position) GetKey() *Reference { method GetStartInclusive (line 1862) | func (m *CompiledCursor_Position) GetStartInclusive() bool { constant Default_CompiledCursor_Position_StartInclusive (line 1839) | Default_CompiledCursor_Position_StartInclusive bool = true type CompiledCursor_Position_IndexValue (line 1869) | type CompiledCursor_Position_IndexValue struct method Reset (line 1875) | func (m *CompiledCursor_Position_IndexValue) Reset() { *m = Co... method String (line 1876) | func (m *CompiledCursor_Position_IndexValue) String() string { return ... method ProtoMessage (line 1877) | func (*CompiledCursor_Position_IndexValue) ProtoMessage() {} method GetProperty (line 1879) | func (m *CompiledCursor_Position_IndexValue) GetProperty() string { method GetValue (line 1886) | func (m *CompiledCursor_Position_IndexValue) GetValue() *PropertyValue { type Cursor (line 1893) | type Cursor struct method Reset (line 1899) | func (m *Cursor) Reset() { *m = Cursor{} } method String (line 1900) | func (m *Cursor) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 1901) | func (*Cursor) ProtoMessage() {} method GetCursor (line 1903) | func (m *Cursor) GetCursor() uint64 { method GetApp (line 1910) | func (m *Cursor) GetApp() string { type Error (line 1917) | type Error struct method Reset (line 1921) | func (m *Error) Reset() { *m = Error{} } method String (line 1922) | func (m *Error) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 1923) | func (*Error) ProtoMessage() {} type Cost (line 1925) | type Cost struct method Reset (line 1936) | func (m *Cost) Reset() { *m = Cost{} } method String (line 1937) | func (m *Cost) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 1938) | func (*Cost) ProtoMessage() {} method GetIndexWrites (line 1940) | func (m *Cost) GetIndexWrites() int32 { method GetIndexWriteBytes (line 1947) | func (m *Cost) GetIndexWriteBytes() int32 { method GetEntityWrites (line 1954) | func (m *Cost) GetEntityWrites() int32 { method GetEntityWriteBytes (line 1961) | func (m *Cost) GetEntityWriteBytes() int32 { method GetCommitcost (line 1968) | func (m *Cost) GetCommitcost() *Cost_CommitCost { method GetApproximateStorageDelta (line 1975) | func (m *Cost) GetApproximateStorageDelta() int32 { method GetIdSequenceUpdates (line 1982) | func (m *Cost) GetIdSequenceUpdates() int32 { type Cost_CommitCost (line 1989) | type Cost_CommitCost struct method Reset (line 1995) | func (m *Cost_CommitCost) Reset() { *m = Cost_CommitCost{} } method String (line 1996) | func (m *Cost_CommitCost) String() string { return proto.CompactTextSt... method ProtoMessage (line 1997) | func (*Cost_CommitCost) ProtoMessage() {} method GetRequestedEntityPuts (line 1999) | func (m *Cost_CommitCost) GetRequestedEntityPuts() int32 { method GetRequestedEntityDeletes (line 2006) | func (m *Cost_CommitCost) GetRequestedEntityDeletes() int32 { type GetRequest (line 2013) | type GetRequest struct method Reset (line 2023) | func (m *GetRequest) Reset() { *m = GetRequest{} } method String (line 2024) | func (m *GetRequest) String() string { return proto.CompactTextString(... method ProtoMessage (line 2025) | func (*GetRequest) ProtoMessage() {} method GetHeader (line 2029) | func (m *GetRequest) GetHeader() *InternalHeader { method GetKey (line 2036) | func (m *GetRequest) GetKey() []*Reference { method GetTransaction (line 2043) | func (m *GetRequest) GetTransaction() *Transaction { method GetFailoverMs (line 2050) | func (m *GetRequest) GetFailoverMs() int64 { method GetStrong (line 2057) | func (m *GetRequest) GetStrong() bool { method GetAllowDeferred (line 2064) | func (m *GetRequest) GetAllowDeferred() bool { constant Default_GetRequest_AllowDeferred (line 2027) | Default_GetRequest_AllowDeferred bool = false type GetResponse (line 2071) | type GetResponse struct method Reset (line 2078) | func (m *GetResponse) Reset() { *m = GetResponse{} } method String (line 2079) | func (m *GetResponse) String() string { return proto.CompactTextString... method ProtoMessage (line 2080) | func (*GetResponse) ProtoMessage() {} method GetEntity (line 2084) | func (m *GetResponse) GetEntity() []*GetResponse_Entity { method GetDeferred (line 2091) | func (m *GetResponse) GetDeferred() []*Reference { method GetInOrder (line 2098) | func (m *GetResponse) GetInOrder() bool { constant Default_GetResponse_InOrder (line 2082) | Default_GetResponse_InOrder bool = true type GetResponse_Entity (line 2105) | type GetResponse_Entity struct method Reset (line 2112) | func (m *GetResponse_Entity) Reset() { *m = GetResponse_Entity... method String (line 2113) | func (m *GetResponse_Entity) String() string { return proto.CompactTex... method ProtoMessage (line 2114) | func (*GetResponse_Entity) ProtoMessage() {} method GetEntity (line 2116) | func (m *GetResponse_Entity) GetEntity() *EntityProto { method GetKey (line 2123) | func (m *GetResponse_Entity) GetKey() *Reference { method GetVersion (line 2130) | func (m *GetResponse_Entity) GetVersion() int64 { type PutRequest (line 2137) | type PutRequest struct method Reset (line 2150) | func (m *PutRequest) Reset() { *m = PutRequest{} } method String (line 2151) | func (m *PutRequest) String() string { return proto.CompactTextString(... method ProtoMessage (line 2152) | func (*PutRequest) ProtoMessage() {} method GetHeader (line 2159) | func (m *PutRequest) GetHeader() *InternalHeader { method GetEntity (line 2166) | func (m *PutRequest) GetEntity() []*EntityProto { method GetTransaction (line 2173) | func (m *PutRequest) GetTransaction() *Transaction { method GetCompositeIndex (line 2180) | func (m *PutRequest) GetCompositeIndex() []*CompositeIndex { method GetTrusted (line 2187) | func (m *PutRequest) GetTrusted() bool { method GetForce (line 2194) | func (m *PutRequest) GetForce() bool { method GetMarkChanges (line 2201) | func (m *PutRequest) GetMarkChanges() bool { method GetSnapshot (line 2208) | func (m *PutRequest) GetSnapshot() []*Snapshot { method GetAutoIdPolicy (line 2215) | func (m *PutRequest) GetAutoIdPolicy() PutRequest_AutoIdPolicy { constant Default_PutRequest_Trusted (line 2154) | Default_PutRequest_Trusted bool = false constant Default_PutRequest_Force (line 2155) | Default_PutRequest_Force bool = false constant Default_PutRequest_MarkChanges (line 2156) | Default_PutRequest_MarkChanges bool = false constant Default_PutRequest_AutoIdPolicy (line 2157) | Default_PutRequest_AutoIdPolicy PutRequest_AutoIdPolicy = PutRequest_CUR... type PutResponse (line 2222) | type PutResponse struct method Reset (line 2229) | func (m *PutResponse) Reset() { *m = PutResponse{} } method String (line 2230) | func (m *PutResponse) String() string { return proto.CompactTextString... method ProtoMessage (line 2231) | func (*PutResponse) ProtoMessage() {} method GetKey (line 2233) | func (m *PutResponse) GetKey() []*Reference { method GetCost (line 2240) | func (m *PutResponse) GetCost() *Cost { method GetVersion (line 2247) | func (m *PutResponse) GetVersion() []int64 { type TouchRequest (line 2254) | type TouchRequest struct method Reset (line 2263) | func (m *TouchRequest) Reset() { *m = TouchRequest{} } method String (line 2264) | func (m *TouchRequest) String() string { return proto.CompactTextStrin... method ProtoMessage (line 2265) | func (*TouchRequest) ProtoMessage() {} method GetHeader (line 2269) | func (m *TouchRequest) GetHeader() *InternalHeader { method GetKey (line 2276) | func (m *TouchRequest) GetKey() []*Reference { method GetCompositeIndex (line 2283) | func (m *TouchRequest) GetCompositeIndex() []*CompositeIndex { method GetForce (line 2290) | func (m *TouchRequest) GetForce() bool { method GetSnapshot (line 2297) | func (m *TouchRequest) GetSnapshot() []*Snapshot { constant Default_TouchRequest_Force (line 2267) | Default_TouchRequest_Force bool = false type TouchResponse (line 2304) | type TouchResponse struct method Reset (line 2309) | func (m *TouchResponse) Reset() { *m = TouchResponse{} } method String (line 2310) | func (m *TouchResponse) String() string { return proto.CompactTextStri... method ProtoMessage (line 2311) | func (*TouchResponse) ProtoMessage() {} method GetCost (line 2313) | func (m *TouchResponse) GetCost() *Cost { type DeleteRequest (line 2320) | type DeleteRequest struct method Reset (line 2331) | func (m *DeleteRequest) Reset() { *m = DeleteRequest{} } method String (line 2332) | func (m *DeleteRequest) String() string { return proto.CompactTextStri... method ProtoMessage (line 2333) | func (*DeleteRequest) ProtoMessage() {} method GetHeader (line 2339) | func (m *DeleteRequest) GetHeader() *InternalHeader { method GetKey (line 2346) | func (m *DeleteRequest) GetKey() []*Reference { method GetTransaction (line 2353) | func (m *DeleteRequest) GetTransaction() *Transaction { method GetTrusted (line 2360) | func (m *DeleteRequest) GetTrusted() bool { method GetForce (line 2367) | func (m *DeleteRequest) GetForce() bool { method GetMarkChanges (line 2374) | func (m *DeleteRequest) GetMarkChanges() bool { method GetSnapshot (line 2381) | func (m *DeleteRequest) GetSnapshot() []*Snapshot { constant Default_DeleteRequest_Trusted (line 2335) | Default_DeleteRequest_Trusted bool = false constant Default_DeleteRequest_Force (line 2336) | Default_DeleteRequest_Force bool = false constant Default_DeleteRequest_MarkChanges (line 2337) | Default_DeleteRequest_MarkChanges bool = false type DeleteResponse (line 2388) | type DeleteResponse struct method Reset (line 2394) | func (m *DeleteResponse) Reset() { *m = DeleteResponse{} } method String (line 2395) | func (m *DeleteResponse) String() string { return proto.CompactTextStr... method ProtoMessage (line 2396) | func (*DeleteResponse) ProtoMessage() {} method GetCost (line 2398) | func (m *DeleteResponse) GetCost() *Cost { method GetVersion (line 2405) | func (m *DeleteResponse) GetVersion() []int64 { type NextRequest (line 2412) | type NextRequest struct method Reset (line 2421) | func (m *NextRequest) Reset() { *m = NextRequest{} } method String (line 2422) | func (m *NextRequest) String() string { return proto.CompactTextString... method ProtoMessage (line 2423) | func (*NextRequest) ProtoMessage() {} method GetHeader (line 2428) | func (m *NextRequest) GetHeader() *InternalHeader { method GetCursor (line 2435) | func (m *NextRequest) GetCursor() *Cursor { method GetCount (line 2442) | func (m *NextRequest) GetCount() int32 { method GetOffset (line 2449) | func (m *NextRequest) GetOffset() int32 { method GetCompile (line 2456) | func (m *NextRequest) GetCompile() bool { constant Default_NextRequest_Offset (line 2425) | Default_NextRequest_Offset int32 = 0 constant Default_NextRequest_Compile (line 2426) | Default_NextRequest_Compile bool = false type QueryResult (line 2463) | type QueryResult struct method Reset (line 2478) | func (m *QueryResult) Reset() { *m = QueryResult{} } method String (line 2479) | func (m *QueryResult) String() string { return proto.CompactTextString... method ProtoMessage (line 2480) | func (*QueryResult) ProtoMessage() {} method GetCursor (line 2482) | func (m *QueryResult) GetCursor() *Cursor { method GetResult (line 2489) | func (m *QueryResult) GetResult() []*EntityProto { method GetSkippedResults (line 2496) | func (m *QueryResult) GetSkippedResults() int32 { method GetMoreResults (line 2503) | func (m *QueryResult) GetMoreResults() bool { method GetKeysOnly (line 2510) | func (m *QueryResult) GetKeysOnly() bool { method GetIndexOnly (line 2517) | func (m *QueryResult) GetIndexOnly() bool { method GetSmallOps (line 2524) | func (m *QueryResult) GetSmallOps() bool { method GetCompiledQuery (line 2531) | func (m *QueryResult) GetCompiledQuery() *CompiledQuery { method GetCompiledCursor (line 2538) | func (m *QueryResult) GetCompiledCursor() *CompiledCursor { method GetIndex (line 2545) | func (m *QueryResult) GetIndex() []*CompositeIndex { method GetVersion (line 2552) | func (m *QueryResult) GetVersion() []int64 { type AllocateIdsRequest (line 2559) | type AllocateIdsRequest struct method Reset (line 2568) | func (m *AllocateIdsRequest) Reset() { *m = AllocateIdsRequest... method String (line 2569) | func (m *AllocateIdsRequest) String() string { return proto.CompactTex... method ProtoMessage (line 2570) | func (*AllocateIdsRequest) ProtoMessage() {} method GetHeader (line 2572) | func (m *AllocateIdsRequest) GetHeader() *InternalHeader { method GetModelKey (line 2579) | func (m *AllocateIdsRequest) GetModelKey() *Reference { method GetSize (line 2586) | func (m *AllocateIdsRequest) GetSize() int64 { method GetMax (line 2593) | func (m *AllocateIdsRequest) GetMax() int64 { method GetReserve (line 2600) | func (m *AllocateIdsRequest) GetReserve() []*Reference { type AllocateIdsResponse (line 2607) | type AllocateIdsResponse struct method Reset (line 2614) | func (m *AllocateIdsResponse) Reset() { *m = AllocateIdsRespon... method String (line 2615) | func (m *AllocateIdsResponse) String() string { return proto.CompactTe... method ProtoMessage (line 2616) | func (*AllocateIdsResponse) ProtoMessage() {} method GetStart (line 2618) | func (m *AllocateIdsResponse) GetStart() int64 { method GetEnd (line 2625) | func (m *AllocateIdsResponse) GetEnd() int64 { method GetCost (line 2632) | func (m *AllocateIdsResponse) GetCost() *Cost { type CompositeIndices (line 2639) | type CompositeIndices struct method Reset (line 2644) | func (m *CompositeIndices) Reset() { *m = CompositeIndices{} } method String (line 2645) | func (m *CompositeIndices) String() string { return proto.CompactTextS... method ProtoMessage (line 2646) | func (*CompositeIndices) ProtoMessage() {} method GetIndex (line 2648) | func (m *CompositeIndices) GetIndex() []*CompositeIndex { type AddActionsRequest (line 2655) | type AddActionsRequest struct method Reset (line 2662) | func (m *AddActionsRequest) Reset() { *m = AddActionsRequest{} } method String (line 2663) | func (m *AddActionsRequest) String() string { return proto.CompactText... method ProtoMessage (line 2664) | func (*AddActionsRequest) ProtoMessage() {} method GetHeader (line 2666) | func (m *AddActionsRequest) GetHeader() *InternalHeader { method GetTransaction (line 2673) | func (m *AddActionsRequest) GetTransaction() *Transaction { method GetAction (line 2680) | func (m *AddActionsRequest) GetAction() []*Action { type AddActionsResponse (line 2687) | type AddActionsResponse struct method Reset (line 2691) | func (m *AddActionsResponse) Reset() { *m = AddActionsResponse... method String (line 2692) | func (m *AddActionsResponse) String() string { return proto.CompactTex... method ProtoMessage (line 2693) | func (*AddActionsResponse) ProtoMessage() {} type BeginTransactionRequest (line 2695) | type BeginTransactionRequest struct method Reset (line 2702) | func (m *BeginTransactionRequest) Reset() { *m = BeginTransact... method String (line 2703) | func (m *BeginTransactionRequest) String() string { return proto.Compa... method ProtoMessage (line 2704) | func (*BeginTransactionRequest) ProtoMessage() {} method GetHeader (line 2708) | func (m *BeginTransactionRequest) GetHeader() *InternalHeader { method GetApp (line 2715) | func (m *BeginTransactionRequest) GetApp() string { method GetAllowMultipleEg (line 2722) | func (m *BeginTransactionRequest) GetAllowMultipleEg() bool { constant Default_BeginTransactionRequest_AllowMultipleEg (line 2706) | Default_BeginTransactionRequest_AllowMultipleEg bool = false type CommitResponse (line 2729) | type CommitResponse struct method Reset (line 2735) | func (m *CommitResponse) Reset() { *m = CommitResponse{} } method String (line 2736) | func (m *CommitResponse) String() string { return proto.CompactTextStr... method ProtoMessage (line 2737) | func (*CommitResponse) ProtoMessage() {} method GetCost (line 2739) | func (m *CommitResponse) GetCost() *Cost { method GetVersion (line 2746) | func (m *CommitResponse) GetVersion() []*CommitResponse_Version { type CommitResponse_Version (line 2753) | type CommitResponse_Version struct method Reset (line 2759) | func (m *CommitResponse_Version) Reset() { *m = CommitResponse... method String (line 2760) | func (m *CommitResponse_Version) String() string { return proto.Compac... method ProtoMessage (line 2761) | func (*CommitResponse_Version) ProtoMessage() {} method GetRootEntityKey (line 2763) | func (m *CommitResponse_Version) GetRootEntityKey() *Reference { method GetVersion (line 2770) | func (m *CommitResponse_Version) GetVersion() int64 { function init (line 2777) | func init() { FILE: vendor/google.golang.org/appengine/internal/identity.go function AppID (line 12) | func AppID(c netcontext.Context) string { FILE: vendor/google.golang.org/appengine/internal/identity_classic.go function DefaultVersionHostname (line 15) | func DefaultVersionHostname(ctx netcontext.Context) string { function RequestID (line 19) | func RequestID(ctx netcontext.Context) string { return appengine.Reques... function Datacenter (line 20) | func Datacenter(_ netcontext.Context) string { return appengine.Datace... function ServerSoftware (line 21) | func ServerSoftware() string { return appengine.Server... function ModuleName (line 22) | func ModuleName(ctx netcontext.Context) string { return appengine.Module... function VersionID (line 23) | func VersionID(ctx netcontext.Context) string { return appengine.Versio... function InstanceID (line 24) | func InstanceID() string { return appengine.Instan... function IsDevAppServer (line 25) | func IsDevAppServer() bool { return appengine.IsDevA... function fullyQualifiedAppID (line 27) | func fullyQualifiedAppID(ctx netcontext.Context) string { return fromCon... FILE: vendor/google.golang.org/appengine/internal/identity_vm.go constant hDefaultVersionHostname (line 20) | hDefaultVersionHostname = "X-AppEngine-Default-Version-Hostname" constant hRequestLogId (line 21) | hRequestLogId = "X-AppEngine-Request-Log-Id" constant hDatacenter (line 22) | hDatacenter = "X-AppEngine-Datacenter" function ctxHeaders (line 25) | func ctxHeaders(ctx netcontext.Context) http.Header { function DefaultVersionHostname (line 29) | func DefaultVersionHostname(ctx netcontext.Context) string { function RequestID (line 33) | func RequestID(ctx netcontext.Context) string { function Datacenter (line 37) | func Datacenter(ctx netcontext.Context) string { function ServerSoftware (line 41) | func ServerSoftware() string { function ModuleName (line 51) | func ModuleName(_ netcontext.Context) string { function VersionID (line 58) | func VersionID(_ netcontext.Context) string { function InstanceID (line 65) | func InstanceID() string { function partitionlessAppID (line 72) | func partitionlessAppID() string { function fullyQualifiedAppID (line 81) | func fullyQualifiedAppID(_ netcontext.Context) string { function IsDevAppServer (line 95) | func IsDevAppServer() bool { FILE: vendor/google.golang.org/appengine/internal/image/images_service.pb.go type ImagesServiceError_ErrorCode (line 43) | type ImagesServiceError_ErrorCode method Enum (line 77) | func (x ImagesServiceError_ErrorCode) Enum() *ImagesServiceError_Error... method String (line 82) | func (x ImagesServiceError_ErrorCode) String() string { method UnmarshalJSON (line 85) | func (x *ImagesServiceError_ErrorCode) UnmarshalJSON(data []byte) error { constant ImagesServiceError_UNSPECIFIED_ERROR (line 46) | ImagesServiceError_UNSPECIFIED_ERROR ImagesServiceError_ErrorCode = 1 constant ImagesServiceError_BAD_TRANSFORM_DATA (line 47) | ImagesServiceError_BAD_TRANSFORM_DATA ImagesServiceError_ErrorCode = 2 constant ImagesServiceError_NOT_IMAGE (line 48) | ImagesServiceError_NOT_IMAGE ImagesServiceError_ErrorCode = 3 constant ImagesServiceError_BAD_IMAGE_DATA (line 49) | ImagesServiceError_BAD_IMAGE_DATA ImagesServiceError_ErrorCode = 4 constant ImagesServiceError_IMAGE_TOO_LARGE (line 50) | ImagesServiceError_IMAGE_TOO_LARGE ImagesServiceError_ErrorCode = 5 constant ImagesServiceError_INVALID_BLOB_KEY (line 51) | ImagesServiceError_INVALID_BLOB_KEY ImagesServiceError_ErrorCode = 6 constant ImagesServiceError_ACCESS_DENIED (line 52) | ImagesServiceError_ACCESS_DENIED ImagesServiceError_ErrorCode = 7 constant ImagesServiceError_OBJECT_NOT_FOUND (line 53) | ImagesServiceError_OBJECT_NOT_FOUND ImagesServiceError_ErrorCode = 8 type ImagesServiceTransform_Type (line 94) | type ImagesServiceTransform_Type method Enum (line 122) | func (x ImagesServiceTransform_Type) Enum() *ImagesServiceTransform_Ty... method String (line 127) | func (x ImagesServiceTransform_Type) String() string { method UnmarshalJSON (line 130) | func (x *ImagesServiceTransform_Type) UnmarshalJSON(data []byte) error { constant ImagesServiceTransform_RESIZE (line 97) | ImagesServiceTransform_RESIZE ImagesServiceTransform_Type = 1 constant ImagesServiceTransform_ROTATE (line 98) | ImagesServiceTransform_ROTATE ImagesServiceTransform_Type = 2 constant ImagesServiceTransform_HORIZONTAL_FLIP (line 99) | ImagesServiceTransform_HORIZONTAL_FLIP ImagesServiceTransform_Type = 3 constant ImagesServiceTransform_VERTICAL_FLIP (line 100) | ImagesServiceTransform_VERTICAL_FLIP ImagesServiceTransform_Type = 4 constant ImagesServiceTransform_CROP (line 101) | ImagesServiceTransform_CROP ImagesServiceTransform_Type = 5 constant ImagesServiceTransform_IM_FEELING_LUCKY (line 102) | ImagesServiceTransform_IM_FEELING_LUCKY ImagesServiceTransform_Type = 6 type InputSettings_ORIENTATION_CORRECTION_TYPE (line 139) | type InputSettings_ORIENTATION_CORRECTION_TYPE method Enum (line 155) | func (x InputSettings_ORIENTATION_CORRECTION_TYPE) Enum() *InputSettin... method String (line 160) | func (x InputSettings_ORIENTATION_CORRECTION_TYPE) String() string { method UnmarshalJSON (line 163) | func (x *InputSettings_ORIENTATION_CORRECTION_TYPE) UnmarshalJSON(data... constant InputSettings_UNCHANGED_ORIENTATION (line 142) | InputSettings_UNCHANGED_ORIENTATION InputSettings_ORIENTATION_CORRECTION... constant InputSettings_CORRECT_ORIENTATION (line 143) | InputSettings_CORRECT_ORIENTATION InputSettings_ORIENTATION_CORRECTION... type OutputSettings_MIME_TYPE (line 172) | type OutputSettings_MIME_TYPE method Enum (line 191) | func (x OutputSettings_MIME_TYPE) Enum() *OutputSettings_MIME_TYPE { method String (line 196) | func (x OutputSettings_MIME_TYPE) String() string { method UnmarshalJSON (line 199) | func (x *OutputSettings_MIME_TYPE) UnmarshalJSON(data []byte) error { constant OutputSettings_PNG (line 175) | OutputSettings_PNG OutputSettings_MIME_TYPE = 0 constant OutputSettings_JPEG (line 176) | OutputSettings_JPEG OutputSettings_MIME_TYPE = 1 constant OutputSettings_WEBP (line 177) | OutputSettings_WEBP OutputSettings_MIME_TYPE = 2 type CompositeImageOptions_ANCHOR (line 208) | type CompositeImageOptions_ANCHOR method Enum (line 245) | func (x CompositeImageOptions_ANCHOR) Enum() *CompositeImageOptions_AN... method String (line 250) | func (x CompositeImageOptions_ANCHOR) String() string { method UnmarshalJSON (line 253) | func (x *CompositeImageOptions_ANCHOR) UnmarshalJSON(data []byte) error { constant CompositeImageOptions_TOP_LEFT (line 211) | CompositeImageOptions_TOP_LEFT CompositeImageOptions_ANCHOR = 0 constant CompositeImageOptions_TOP (line 212) | CompositeImageOptions_TOP CompositeImageOptions_ANCHOR = 1 constant CompositeImageOptions_TOP_RIGHT (line 213) | CompositeImageOptions_TOP_RIGHT CompositeImageOptions_ANCHOR = 2 constant CompositeImageOptions_LEFT (line 214) | CompositeImageOptions_LEFT CompositeImageOptions_ANCHOR = 3 constant CompositeImageOptions_CENTER (line 215) | CompositeImageOptions_CENTER CompositeImageOptions_ANCHOR = 4 constant CompositeImageOptions_RIGHT (line 216) | CompositeImageOptions_RIGHT CompositeImageOptions_ANCHOR = 5 constant CompositeImageOptions_BOTTOM_LEFT (line 217) | CompositeImageOptions_BOTTOM_LEFT CompositeImageOptions_ANCHOR = 6 constant CompositeImageOptions_BOTTOM (line 218) | CompositeImageOptions_BOTTOM CompositeImageOptions_ANCHOR = 7 constant CompositeImageOptions_BOTTOM_RIGHT (line 219) | CompositeImageOptions_BOTTOM_RIGHT CompositeImageOptions_ANCHOR = 8 type ImagesServiceError (line 262) | type ImagesServiceError struct method Reset (line 266) | func (m *ImagesServiceError) Reset() { *m = ImagesServiceError... method String (line 267) | func (m *ImagesServiceError) String() string { return proto.CompactTex... method ProtoMessage (line 268) | func (*ImagesServiceError) ProtoMessage() {} type ImagesServiceTransform (line 270) | type ImagesServiceTransform struct method Reset (line 274) | func (m *ImagesServiceTransform) Reset() { *m = ImagesServiceT... method String (line 275) | func (m *ImagesServiceTransform) String() string { return proto.Compac... method ProtoMessage (line 276) | func (*ImagesServiceTransform) ProtoMessage() {} type Transform (line 278) | type Transform struct method Reset (line 296) | func (m *Transform) Reset() { *m = Transform{} } method String (line 297) | func (m *Transform) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 298) | func (*Transform) ProtoMessage() {} method GetWidth (line 313) | func (m *Transform) GetWidth() int32 { method GetHeight (line 320) | func (m *Transform) GetHeight() int32 { method GetCropToFit (line 327) | func (m *Transform) GetCropToFit() bool { method GetCropOffsetX (line 334) | func (m *Transform) GetCropOffsetX() float32 { method GetCropOffsetY (line 341) | func (m *Transform) GetCropOffsetY() float32 { method GetRotate (line 348) | func (m *Transform) GetRotate() int32 { method GetHorizontalFlip (line 355) | func (m *Transform) GetHorizontalFlip() bool { method GetVerticalFlip (line 362) | func (m *Transform) GetVerticalFlip() bool { method GetCropLeftX (line 369) | func (m *Transform) GetCropLeftX() float32 { method GetCropTopY (line 376) | func (m *Transform) GetCropTopY() float32 { method GetCropRightX (line 383) | func (m *Transform) GetCropRightX() float32 { method GetCropBottomY (line 390) | func (m *Transform) GetCropBottomY() float32 { method GetAutolevels (line 397) | func (m *Transform) GetAutolevels() bool { method GetAllowStretch (line 404) | func (m *Transform) GetAllowStretch() bool { constant Default_Transform_CropToFit (line 300) | Default_Transform_CropToFit bool = false constant Default_Transform_CropOffsetX (line 301) | Default_Transform_CropOffsetX float32 = 0.5 constant Default_Transform_CropOffsetY (line 302) | Default_Transform_CropOffsetY float32 = 0.5 constant Default_Transform_Rotate (line 303) | Default_Transform_Rotate int32 = 0 constant Default_Transform_HorizontalFlip (line 304) | Default_Transform_HorizontalFlip bool = false constant Default_Transform_VerticalFlip (line 305) | Default_Transform_VerticalFlip bool = false constant Default_Transform_CropLeftX (line 306) | Default_Transform_CropLeftX float32 = 0 constant Default_Transform_CropTopY (line 307) | Default_Transform_CropTopY float32 = 0 constant Default_Transform_CropRightX (line 308) | Default_Transform_CropRightX float32 = 1 constant Default_Transform_CropBottomY (line 309) | Default_Transform_CropBottomY float32 = 1 constant Default_Transform_Autolevels (line 310) | Default_Transform_Autolevels bool = false constant Default_Transform_AllowStretch (line 311) | Default_Transform_AllowStretch bool = false type ImageData (line 411) | type ImageData struct method Reset (line 419) | func (m *ImageData) Reset() { *m = ImageData{} } method String (line 420) | func (m *ImageData) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 421) | func (*ImageData) ProtoMessage() {} method GetContent (line 423) | func (m *ImageData) GetContent() []byte { method GetBlobKey (line 430) | func (m *ImageData) GetBlobKey() string { method GetWidth (line 437) | func (m *ImageData) GetWidth() int32 { method GetHeight (line 444) | func (m *ImageData) GetHeight() int32 { type InputSettings (line 451) | type InputSettings struct method Reset (line 458) | func (m *InputSettings) Reset() { *m = InputSettings{} } method String (line 459) | func (m *InputSettings) String() string { return proto.CompactTextStri... method ProtoMessage (line 460) | func (*InputSettings) ProtoMessage() {} method GetCorrectExifOrientation (line 465) | func (m *InputSettings) GetCorrectExifOrientation() InputSettings_ORIE... method GetParseMetadata (line 472) | func (m *InputSettings) GetParseMetadata() bool { method GetTransparentSubstitutionRgb (line 479) | func (m *InputSettings) GetTransparentSubstitutionRgb() int32 { constant Default_InputSettings_CorrectExifOrientation (line 462) | Default_InputSettings_CorrectExifOrientation InputSettings_ORIENTATION_C... constant Default_InputSettings_ParseMetadata (line 463) | Default_InputSettings_ParseMetadata bool = false type OutputSettings (line 486) | type OutputSettings struct method Reset (line 492) | func (m *OutputSettings) Reset() { *m = OutputSettings{} } method String (line 493) | func (m *OutputSettings) String() string { return proto.CompactTextStr... method ProtoMessage (line 494) | func (*OutputSettings) ProtoMessage() {} method GetMimeType (line 498) | func (m *OutputSettings) GetMimeType() OutputSettings_MIME_TYPE { method GetQuality (line 505) | func (m *OutputSettings) GetQuality() int32 { constant Default_OutputSettings_MimeType (line 496) | Default_OutputSettings_MimeType OutputSettings_MIME_TYPE = OutputSetting... type ImagesTransformRequest (line 512) | type ImagesTransformRequest struct method Reset (line 520) | func (m *ImagesTransformRequest) Reset() { *m = ImagesTransfor... method String (line 521) | func (m *ImagesTransformRequest) String() string { return proto.Compac... method ProtoMessage (line 522) | func (*ImagesTransformRequest) ProtoMessage() {} method GetImage (line 524) | func (m *ImagesTransformRequest) GetImage() *ImageData { method GetTransform (line 531) | func (m *ImagesTransformRequest) GetTransform() []*Transform { method GetOutput (line 538) | func (m *ImagesTransformRequest) GetOutput() *OutputSettings { method GetInput (line 545) | func (m *ImagesTransformRequest) GetInput() *InputSettings { type ImagesTransformResponse (line 552) | type ImagesTransformResponse struct method Reset (line 558) | func (m *ImagesTransformResponse) Reset() { *m = ImagesTransfo... method String (line 559) | func (m *ImagesTransformResponse) String() string { return proto.Compa... method ProtoMessage (line 560) | func (*ImagesTransformResponse) ProtoMessage() {} method GetImage (line 562) | func (m *ImagesTransformResponse) GetImage() *ImageData { method GetSourceMetadata (line 569) | func (m *ImagesTransformResponse) GetSourceMetadata() string { type CompositeImageOptions (line 576) | type CompositeImageOptions struct method Reset (line 585) | func (m *CompositeImageOptions) Reset() { *m = CompositeImageO... method String (line 586) | func (m *CompositeImageOptions) String() string { return proto.Compact... method ProtoMessage (line 587) | func (*CompositeImageOptions) ProtoMessage() {} method GetSourceIndex (line 589) | func (m *CompositeImageOptions) GetSourceIndex() int32 { method GetXOffset (line 596) | func (m *CompositeImageOptions) GetXOffset() int32 { method GetYOffset (line 603) | func (m *CompositeImageOptions) GetYOffset() int32 { method GetOpacity (line 610) | func (m *CompositeImageOptions) GetOpacity() float32 { method GetAnchor (line 617) | func (m *CompositeImageOptions) GetAnchor() CompositeImageOptions_ANCH... type ImagesCanvas (line 624) | type ImagesCanvas struct method Reset (line 632) | func (m *ImagesCanvas) Reset() { *m = ImagesCanvas{} } method String (line 633) | func (m *ImagesCanvas) String() string { return proto.CompactTextStrin... method ProtoMessage (line 634) | func (*ImagesCanvas) ProtoMessage() {} method GetWidth (line 638) | func (m *ImagesCanvas) GetWidth() int32 { method GetHeight (line 645) | func (m *ImagesCanvas) GetHeight() int32 { method GetOutput (line 652) | func (m *ImagesCanvas) GetOutput() *OutputSettings { method GetColor (line 659) | func (m *ImagesCanvas) GetColor() int32 { constant Default_ImagesCanvas_Color (line 636) | Default_ImagesCanvas_Color int32 = -1 type ImagesCompositeRequest (line 666) | type ImagesCompositeRequest struct method Reset (line 673) | func (m *ImagesCompositeRequest) Reset() { *m = ImagesComposit... method String (line 674) | func (m *ImagesCompositeRequest) String() string { return proto.Compac... method ProtoMessage (line 675) | func (*ImagesCompositeRequest) ProtoMessage() {} method GetImage (line 677) | func (m *ImagesCompositeRequest) GetImage() []*ImageData { method GetOptions (line 684) | func (m *ImagesCompositeRequest) GetOptions() []*CompositeImageOptions { method GetCanvas (line 691) | func (m *ImagesCompositeRequest) GetCanvas() *ImagesCanvas { type ImagesCompositeResponse (line 698) | type ImagesCompositeResponse struct method Reset (line 703) | func (m *ImagesCompositeResponse) Reset() { *m = ImagesComposi... method String (line 704) | func (m *ImagesCompositeResponse) String() string { return proto.Compa... method ProtoMessage (line 705) | func (*ImagesCompositeResponse) ProtoMessage() {} method GetImage (line 707) | func (m *ImagesCompositeResponse) GetImage() *ImageData { type ImagesHistogramRequest (line 714) | type ImagesHistogramRequest struct method Reset (line 719) | func (m *ImagesHistogramRequest) Reset() { *m = ImagesHistogra... method String (line 720) | func (m *ImagesHistogramRequest) String() string { return proto.Compac... method ProtoMessage (line 721) | func (*ImagesHistogramRequest) ProtoMessage() {} method GetImage (line 723) | func (m *ImagesHistogramRequest) GetImage() *ImageData { type ImagesHistogram (line 730) | type ImagesHistogram struct method Reset (line 737) | func (m *ImagesHistogram) Reset() { *m = ImagesHistogram{} } method String (line 738) | func (m *ImagesHistogram) String() string { return proto.CompactTextSt... method ProtoMessage (line 739) | func (*ImagesHistogram) ProtoMessage() {} method GetRed (line 741) | func (m *ImagesHistogram) GetRed() []int32 { method GetGreen (line 748) | func (m *ImagesHistogram) GetGreen() []int32 { method GetBlue (line 755) | func (m *ImagesHistogram) GetBlue() []int32 { type ImagesHistogramResponse (line 762) | type ImagesHistogramResponse struct method Reset (line 767) | func (m *ImagesHistogramResponse) Reset() { *m = ImagesHistogr... method String (line 768) | func (m *ImagesHistogramResponse) String() string { return proto.Compa... method ProtoMessage (line 769) | func (*ImagesHistogramResponse) ProtoMessage() {} method GetHistogram (line 771) | func (m *ImagesHistogramResponse) GetHistogram() *ImagesHistogram { type ImagesGetUrlBaseRequest (line 778) | type ImagesGetUrlBaseRequest struct method Reset (line 784) | func (m *ImagesGetUrlBaseRequest) Reset() { *m = ImagesGetUrlB... method String (line 785) | func (m *ImagesGetUrlBaseRequest) String() string { return proto.Compa... method ProtoMessage (line 786) | func (*ImagesGetUrlBaseRequest) ProtoMessage() {} method GetBlobKey (line 790) | func (m *ImagesGetUrlBaseRequest) GetBlobKey() string { method GetCreateSecureUrl (line 797) | func (m *ImagesGetUrlBaseRequest) GetCreateSecureUrl() bool { constant Default_ImagesGetUrlBaseRequest_CreateSecureUrl (line 788) | Default_ImagesGetUrlBaseRequest_CreateSecureUrl bool = false type ImagesGetUrlBaseResponse (line 804) | type ImagesGetUrlBaseResponse struct method Reset (line 809) | func (m *ImagesGetUrlBaseResponse) Reset() { *m = ImagesGetUrl... method String (line 810) | func (m *ImagesGetUrlBaseResponse) String() string { return proto.Comp... method ProtoMessage (line 811) | func (*ImagesGetUrlBaseResponse) ProtoMessage() {} method GetUrl (line 813) | func (m *ImagesGetUrlBaseResponse) GetUrl() string { type ImagesDeleteUrlBaseRequest (line 820) | type ImagesDeleteUrlBaseRequest struct method Reset (line 825) | func (m *ImagesDeleteUrlBaseRequest) Reset() { *m = ImagesDele... method String (line 826) | func (m *ImagesDeleteUrlBaseRequest) String() string { return proto.Co... method ProtoMessage (line 827) | func (*ImagesDeleteUrlBaseRequest) ProtoMessage() {} method GetBlobKey (line 829) | func (m *ImagesDeleteUrlBaseRequest) GetBlobKey() string { type ImagesDeleteUrlBaseResponse (line 836) | type ImagesDeleteUrlBaseResponse struct method Reset (line 840) | func (m *ImagesDeleteUrlBaseResponse) Reset() { *m = ImagesDel... method String (line 841) | func (m *ImagesDeleteUrlBaseResponse) String() string { return proto.C... method ProtoMessage (line 842) | func (*ImagesDeleteUrlBaseResponse) ProtoMessage() {} function init (line 844) | func init() { FILE: vendor/google.golang.org/appengine/internal/internal.go function RegisterErrorCodeMap (line 29) | func RegisterErrorCodeMap(service string, m map[int32]string) { type timeoutCodeKey (line 33) | type timeoutCodeKey struct function RegisterTimeoutErrorCode (line 41) | func RegisterTimeoutErrorCode(service string, code int32) { type APIError (line 48) | type APIError struct method Error (line 54) | func (e *APIError) Error() string { method IsTimeout (line 74) | func (e *APIError) IsTimeout() bool { type CallError (line 80) | type CallError struct method Error (line 87) | func (e *CallError) Error() string { method IsTimeout (line 108) | func (e *CallError) IsTimeout() bool { function Main (line 112) | func Main() { function installHealthChecker (line 125) | func installHealthChecker(mux *http.ServeMux) { FILE: vendor/google.golang.org/appengine/internal/log/log_service.pb.go type LogServiceError_ErrorCode (line 38) | type LogServiceError_ErrorCode method Enum (line 57) | func (x LogServiceError_ErrorCode) Enum() *LogServiceError_ErrorCode { method String (line 62) | func (x LogServiceError_ErrorCode) String() string { method UnmarshalJSON (line 65) | func (x *LogServiceError_ErrorCode) UnmarshalJSON(data []byte) error { constant LogServiceError_OK (line 41) | LogServiceError_OK LogServiceError_ErrorCode = 0 constant LogServiceError_INVALID_REQUEST (line 42) | LogServiceError_INVALID_REQUEST LogServiceError_ErrorCode = 1 constant LogServiceError_STORAGE_ERROR (line 43) | LogServiceError_STORAGE_ERROR LogServiceError_ErrorCode = 2 type LogServiceError (line 74) | type LogServiceError struct method Reset (line 78) | func (m *LogServiceError) Reset() { *m = LogServiceError{} } method String (line 79) | func (m *LogServiceError) String() string { return proto.CompactTextSt... method ProtoMessage (line 80) | func (*LogServiceError) ProtoMessage() {} type UserAppLogLine (line 82) | type UserAppLogLine struct method Reset (line 89) | func (m *UserAppLogLine) Reset() { *m = UserAppLogLine{} } method String (line 90) | func (m *UserAppLogLine) String() string { return proto.CompactTextStr... method ProtoMessage (line 91) | func (*UserAppLogLine) ProtoMessage() {} method GetTimestampUsec (line 93) | func (m *UserAppLogLine) GetTimestampUsec() int64 { method GetLevel (line 100) | func (m *UserAppLogLine) GetLevel() int64 { method GetMessage (line 107) | func (m *UserAppLogLine) GetMessage() string { type UserAppLogGroup (line 114) | type UserAppLogGroup struct method Reset (line 119) | func (m *UserAppLogGroup) Reset() { *m = UserAppLogGroup{} } method String (line 120) | func (m *UserAppLogGroup) String() string { return proto.CompactTextSt... method ProtoMessage (line 121) | func (*UserAppLogGroup) ProtoMessage() {} method GetLogLine (line 123) | func (m *UserAppLogGroup) GetLogLine() []*UserAppLogLine { type FlushRequest (line 130) | type FlushRequest struct method Reset (line 135) | func (m *FlushRequest) Reset() { *m = FlushRequest{} } method String (line 136) | func (m *FlushRequest) String() string { return proto.CompactTextStrin... method ProtoMessage (line 137) | func (*FlushRequest) ProtoMessage() {} method GetLogs (line 139) | func (m *FlushRequest) GetLogs() []byte { type SetStatusRequest (line 146) | type SetStatusRequest struct method Reset (line 151) | func (m *SetStatusRequest) Reset() { *m = SetStatusRequest{} } method String (line 152) | func (m *SetStatusRequest) String() string { return proto.CompactTextS... method ProtoMessage (line 153) | func (*SetStatusRequest) ProtoMessage() {} method GetStatus (line 155) | func (m *SetStatusRequest) GetStatus() string { type LogOffset (line 162) | type LogOffset struct method Reset (line 167) | func (m *LogOffset) Reset() { *m = LogOffset{} } method String (line 168) | func (m *LogOffset) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 169) | func (*LogOffset) ProtoMessage() {} method GetRequestId (line 171) | func (m *LogOffset) GetRequestId() []byte { type LogLine (line 178) | type LogLine struct method Reset (line 185) | func (m *LogLine) Reset() { *m = LogLine{} } method String (line 186) | func (m *LogLine) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 187) | func (*LogLine) ProtoMessage() {} method GetTime (line 189) | func (m *LogLine) GetTime() int64 { method GetLevel (line 196) | func (m *LogLine) GetLevel() int32 { method GetLogMessage (line 203) | func (m *LogLine) GetLogMessage() string { type RequestLog (line 210) | type RequestLog struct method Reset (line 252) | func (m *RequestLog) Reset() { *m = RequestLog{} } method String (line 253) | func (m *RequestLog) String() string { return proto.CompactTextString(... method ProtoMessage (line 254) | func (*RequestLog) ProtoMessage() {} method GetAppId (line 260) | func (m *RequestLog) GetAppId() string { method GetModuleId (line 267) | func (m *RequestLog) GetModuleId() string { method GetVersionId (line 274) | func (m *RequestLog) GetVersionId() string { method GetRequestId (line 281) | func (m *RequestLog) GetRequestId() []byte { method GetOffset (line 288) | func (m *RequestLog) GetOffset() *LogOffset { method GetIp (line 295) | func (m *RequestLog) GetIp() string { method GetNickname (line 302) | func (m *RequestLog) GetNickname() string { method GetStartTime (line 309) | func (m *RequestLog) GetStartTime() int64 { method GetEndTime (line 316) | func (m *RequestLog) GetEndTime() int64 { method GetLatency (line 323) | func (m *RequestLog) GetLatency() int64 { method GetMcycles (line 330) | func (m *RequestLog) GetMcycles() int64 { method GetMethod (line 337) | func (m *RequestLog) GetMethod() string { method GetResource (line 344) | func (m *RequestLog) GetResource() string { method GetHttpVersion (line 351) | func (m *RequestLog) GetHttpVersion() string { method GetStatus (line 358) | func (m *RequestLog) GetStatus() int32 { method GetResponseSize (line 365) | func (m *RequestLog) GetResponseSize() int64 { method GetReferrer (line 372) | func (m *RequestLog) GetReferrer() string { method GetUserAgent (line 379) | func (m *RequestLog) GetUserAgent() string { method GetUrlMapEntry (line 386) | func (m *RequestLog) GetUrlMapEntry() string { method GetCombined (line 393) | func (m *RequestLog) GetCombined() string { method GetApiMcycles (line 400) | func (m *RequestLog) GetApiMcycles() int64 { method GetHost (line 407) | func (m *RequestLog) GetHost() string { method GetCost (line 414) | func (m *RequestLog) GetCost() float64 { method GetTaskQueueName (line 421) | func (m *RequestLog) GetTaskQueueName() string { method GetTaskName (line 428) | func (m *RequestLog) GetTaskName() string { method GetWasLoadingRequest (line 435) | func (m *RequestLog) GetWasLoadingRequest() bool { method GetPendingTime (line 442) | func (m *RequestLog) GetPendingTime() int64 { method GetReplicaIndex (line 449) | func (m *RequestLog) GetReplicaIndex() int32 { method GetFinished (line 456) | func (m *RequestLog) GetFinished() bool { method GetCloneKey (line 463) | func (m *RequestLog) GetCloneKey() []byte { method GetLine (line 470) | func (m *RequestLog) GetLine() []*LogLine { method GetLinesIncomplete (line 477) | func (m *RequestLog) GetLinesIncomplete() bool { method GetAppEngineRelease (line 484) | func (m *RequestLog) GetAppEngineRelease() []byte { method GetExitReason (line 491) | func (m *RequestLog) GetExitReason() int32 { method GetWasThrottledForTime (line 498) | func (m *RequestLog) GetWasThrottledForTime() bool { method GetWasThrottledForRequests (line 505) | func (m *RequestLog) GetWasThrottledForRequests() bool { method GetThrottledTime (line 512) | func (m *RequestLog) GetThrottledTime() int64 { method GetServerName (line 519) | func (m *RequestLog) GetServerName() []byte { constant Default_RequestLog_ModuleId (line 256) | Default_RequestLog_ModuleId string = "default" constant Default_RequestLog_ReplicaIndex (line 257) | Default_RequestLog_ReplicaIndex int32 = -1 constant Default_RequestLog_Finished (line 258) | Default_RequestLog_Finished bool = true type LogModuleVersion (line 526) | type LogModuleVersion struct method Reset (line 532) | func (m *LogModuleVersion) Reset() { *m = LogModuleVersion{} } method String (line 533) | func (m *LogModuleVersion) String() string { return proto.CompactTextS... method ProtoMessage (line 534) | func (*LogModuleVersion) ProtoMessage() {} method GetModuleId (line 538) | func (m *LogModuleVersion) GetModuleId() string { method GetVersionId (line 545) | func (m *LogModuleVersion) GetVersionId() string { constant Default_LogModuleVersion_ModuleId (line 536) | Default_LogModuleVersion_ModuleId string = "default" type LogReadRequest (line 552) | type LogReadRequest struct method Reset (line 575) | func (m *LogReadRequest) Reset() { *m = LogReadRequest{} } method String (line 576) | func (m *LogReadRequest) String() string { return proto.CompactTextStr... method ProtoMessage (line 577) | func (*LogReadRequest) ProtoMessage() {} method GetAppId (line 579) | func (m *LogReadRequest) GetAppId() string { method GetVersionId (line 586) | func (m *LogReadRequest) GetVersionId() []string { method GetModuleVersion (line 593) | func (m *LogReadRequest) GetModuleVersion() []*LogModuleVersion { method GetStartTime (line 600) | func (m *LogReadRequest) GetStartTime() int64 { method GetEndTime (line 607) | func (m *LogReadRequest) GetEndTime() int64 { method GetOffset (line 614) | func (m *LogReadRequest) GetOffset() *LogOffset { method GetRequestId (line 621) | func (m *LogReadRequest) GetRequestId() [][]byte { method GetMinimumLogLevel (line 628) | func (m *LogReadRequest) GetMinimumLogLevel() int32 { method GetIncludeIncomplete (line 635) | func (m *LogReadRequest) GetIncludeIncomplete() bool { method GetCount (line 642) | func (m *LogReadRequest) GetCount() int64 { method GetCombinedLogRegex (line 649) | func (m *LogReadRequest) GetCombinedLogRegex() string { method GetHostRegex (line 656) | func (m *LogReadRequest) GetHostRegex() string { method GetReplicaIndex (line 663) | func (m *LogReadRequest) GetReplicaIndex() int32 { method GetIncludeAppLogs (line 670) | func (m *LogReadRequest) GetIncludeAppLogs() bool { method GetAppLogsPerRequest (line 677) | func (m *LogReadRequest) GetAppLogsPerRequest() int32 { method GetIncludeHost (line 684) | func (m *LogReadRequest) GetIncludeHost() bool { method GetIncludeAll (line 691) | func (m *LogReadRequest) GetIncludeAll() bool { method GetCacheIterator (line 698) | func (m *LogReadRequest) GetCacheIterator() bool { method GetNumShards (line 705) | func (m *LogReadRequest) GetNumShards() int32 { type LogReadResponse (line 712) | type LogReadResponse struct method Reset (line 719) | func (m *LogReadResponse) Reset() { *m = LogReadResponse{} } method String (line 720) | func (m *LogReadResponse) String() string { return proto.CompactTextSt... method ProtoMessage (line 721) | func (*LogReadResponse) ProtoMessage() {} method GetLog (line 723) | func (m *LogReadResponse) GetLog() []*RequestLog { method GetOffset (line 730) | func (m *LogReadResponse) GetOffset() *LogOffset { method GetLastEndTime (line 737) | func (m *LogReadResponse) GetLastEndTime() int64 { type LogUsageRecord (line 744) | type LogUsageRecord struct method Reset (line 754) | func (m *LogUsageRecord) Reset() { *m = LogUsageRecord{} } method String (line 755) | func (m *LogUsageRecord) String() string { return proto.CompactTextStr... method ProtoMessage (line 756) | func (*LogUsageRecord) ProtoMessage() {} method GetVersionId (line 758) | func (m *LogUsageRecord) GetVersionId() string { method GetStartTime (line 765) | func (m *LogUsageRecord) GetStartTime() int32 { method GetEndTime (line 772) | func (m *LogUsageRecord) GetEndTime() int32 { method GetCount (line 779) | func (m *LogUsageRecord) GetCount() int64 { method GetTotalSize (line 786) | func (m *LogUsageRecord) GetTotalSize() int64 { method GetRecords (line 793) | func (m *LogUsageRecord) GetRecords() int32 { type LogUsageRequest (line 800) | type LogUsageRequest struct method Reset (line 812) | func (m *LogUsageRequest) Reset() { *m = LogUsageRequest{} } method String (line 813) | func (m *LogUsageRequest) String() string { return proto.CompactTextSt... method ProtoMessage (line 814) | func (*LogUsageRequest) ProtoMessage() {} method GetAppId (line 818) | func (m *LogUsageRequest) GetAppId() string { method GetVersionId (line 825) | func (m *LogUsageRequest) GetVersionId() []string { method GetStartTime (line 832) | func (m *LogUsageRequest) GetStartTime() int32 { method GetEndTime (line 839) | func (m *LogUsageRequest) GetEndTime() int32 { method GetResolutionHours (line 846) | func (m *LogUsageRequest) GetResolutionHours() uint32 { method GetCombineVersions (line 853) | func (m *LogUsageRequest) GetCombineVersions() bool { method GetUsageVersion (line 860) | func (m *LogUsageRequest) GetUsageVersion() int32 { method GetVersionsOnly (line 867) | func (m *LogUsageRequest) GetVersionsOnly() bool { constant Default_LogUsageRequest_ResolutionHours (line 816) | Default_LogUsageRequest_ResolutionHours uint32 = 1 type LogUsageResponse (line 874) | type LogUsageResponse struct method Reset (line 880) | func (m *LogUsageResponse) Reset() { *m = LogUsageResponse{} } method String (line 881) | func (m *LogUsageResponse) String() string { return proto.CompactTextS... method ProtoMessage (line 882) | func (*LogUsageResponse) ProtoMessage() {} method GetUsage (line 884) | func (m *LogUsageResponse) GetUsage() []*LogUsageRecord { method GetSummary (line 891) | func (m *LogUsageResponse) GetSummary() *LogUsageRecord { function init (line 898) | func init() { FILE: vendor/google.golang.org/appengine/internal/mail/mail_service.pb.go type MailServiceError_ErrorCode (line 28) | type MailServiceError_ErrorCode method Enum (line 59) | func (x MailServiceError_ErrorCode) Enum() *MailServiceError_ErrorCode { method String (line 64) | func (x MailServiceError_ErrorCode) String() string { method UnmarshalJSON (line 67) | func (x *MailServiceError_ErrorCode) UnmarshalJSON(data []byte) error { constant MailServiceError_OK (line 31) | MailServiceError_OK MailServiceError_ErrorCode = 0 constant MailServiceError_INTERNAL_ERROR (line 32) | MailServiceError_INTERNAL_ERROR MailServiceError_ErrorCode = 1 constant MailServiceError_BAD_REQUEST (line 33) | MailServiceError_BAD_REQUEST MailServiceError_ErrorCode = 2 constant MailServiceError_UNAUTHORIZED_SENDER (line 34) | MailServiceError_UNAUTHORIZED_SENDER MailServiceError_ErrorCode = 3 constant MailServiceError_INVALID_ATTACHMENT_TYPE (line 35) | MailServiceError_INVALID_ATTACHMENT_TYPE MailServiceError_ErrorCode = 4 constant MailServiceError_INVALID_HEADER_NAME (line 36) | MailServiceError_INVALID_HEADER_NAME MailServiceError_ErrorCode = 5 constant MailServiceError_INVALID_CONTENT_ID (line 37) | MailServiceError_INVALID_CONTENT_ID MailServiceError_ErrorCode = 6 type MailServiceError (line 76) | type MailServiceError struct method Reset (line 80) | func (m *MailServiceError) Reset() { *m = MailServiceError{} } method String (line 81) | func (m *MailServiceError) String() string { return proto.CompactTextS... method ProtoMessage (line 82) | func (*MailServiceError) ProtoMessage() {} type MailAttachment (line 84) | type MailAttachment struct method Reset (line 91) | func (m *MailAttachment) Reset() { *m = MailAttachment{} } method String (line 92) | func (m *MailAttachment) String() string { return proto.CompactTextStr... method ProtoMessage (line 93) | func (*MailAttachment) ProtoMessage() {} method GetFileName (line 95) | func (m *MailAttachment) GetFileName() string { method GetData (line 102) | func (m *MailAttachment) GetData() []byte { method GetContentID (line 109) | func (m *MailAttachment) GetContentID() string { type MailHeader (line 116) | type MailHeader struct method Reset (line 122) | func (m *MailHeader) Reset() { *m = MailHeader{} } method String (line 123) | func (m *MailHeader) String() string { return proto.CompactTextString(... method ProtoMessage (line 124) | func (*MailHeader) ProtoMessage() {} method GetName (line 126) | func (m *MailHeader) GetName() string { method GetValue (line 133) | func (m *MailHeader) GetValue() string { type MailMessage (line 140) | type MailMessage struct method Reset (line 154) | func (m *MailMessage) Reset() { *m = MailMessage{} } method String (line 155) | func (m *MailMessage) String() string { return proto.CompactTextString... method ProtoMessage (line 156) | func (*MailMessage) ProtoMessage() {} method GetSender (line 158) | func (m *MailMessage) GetSender() string { method GetReplyTo (line 165) | func (m *MailMessage) GetReplyTo() string { method GetTo (line 172) | func (m *MailMessage) GetTo() []string { method GetCc (line 179) | func (m *MailMessage) GetCc() []string { method GetBcc (line 186) | func (m *MailMessage) GetBcc() []string { method GetSubject (line 193) | func (m *MailMessage) GetSubject() string { method GetTextBody (line 200) | func (m *MailMessage) GetTextBody() string { method GetHtmlBody (line 207) | func (m *MailMessage) GetHtmlBody() string { method GetAttachment (line 214) | func (m *MailMessage) GetAttachment() []*MailAttachment { method GetHeader (line 221) | func (m *MailMessage) GetHeader() []*MailHeader { function init (line 228) | func init() { FILE: vendor/google.golang.org/appengine/internal/memcache/memcache_service.pb.go type MemcacheServiceError_ErrorCode (line 43) | type MemcacheServiceError_ErrorCode method Enum (line 68) | func (x MemcacheServiceError_ErrorCode) Enum() *MemcacheServiceError_E... method String (line 73) | func (x MemcacheServiceError_ErrorCode) String() string { method UnmarshalJSON (line 76) | func (x *MemcacheServiceError_ErrorCode) UnmarshalJSON(data []byte) er... constant MemcacheServiceError_OK (line 46) | MemcacheServiceError_OK MemcacheServiceError_ErrorCode = 0 constant MemcacheServiceError_UNSPECIFIED_ERROR (line 47) | MemcacheServiceError_UNSPECIFIED_ERROR MemcacheServiceError_ErrorCode = 1 constant MemcacheServiceError_NAMESPACE_NOT_SET (line 48) | MemcacheServiceError_NAMESPACE_NOT_SET MemcacheServiceError_ErrorCode = 2 constant MemcacheServiceError_PERMISSION_DENIED (line 49) | MemcacheServiceError_PERMISSION_DENIED MemcacheServiceError_ErrorCode = 3 constant MemcacheServiceError_INVALID_VALUE (line 50) | MemcacheServiceError_INVALID_VALUE MemcacheServiceError_ErrorCode = 6 type MemcacheSetRequest_SetPolicy (line 85) | type MemcacheSetRequest_SetPolicy method Enum (line 107) | func (x MemcacheSetRequest_SetPolicy) Enum() *MemcacheSetRequest_SetPo... method String (line 112) | func (x MemcacheSetRequest_SetPolicy) String() string { method UnmarshalJSON (line 115) | func (x *MemcacheSetRequest_SetPolicy) UnmarshalJSON(data []byte) error { constant MemcacheSetRequest_SET (line 88) | MemcacheSetRequest_SET MemcacheSetRequest_SetPolicy = 1 constant MemcacheSetRequest_ADD (line 89) | MemcacheSetRequest_ADD MemcacheSetRequest_SetPolicy = 2 constant MemcacheSetRequest_REPLACE (line 90) | MemcacheSetRequest_REPLACE MemcacheSetRequest_SetPolicy = 3 constant MemcacheSetRequest_CAS (line 91) | MemcacheSetRequest_CAS MemcacheSetRequest_SetPolicy = 4 type MemcacheSetResponse_SetStatusCode (line 124) | type MemcacheSetResponse_SetStatusCode method Enum (line 146) | func (x MemcacheSetResponse_SetStatusCode) Enum() *MemcacheSetResponse... method String (line 151) | func (x MemcacheSetResponse_SetStatusCode) String() string { method UnmarshalJSON (line 154) | func (x *MemcacheSetResponse_SetStatusCode) UnmarshalJSON(data []byte)... constant MemcacheSetResponse_STORED (line 127) | MemcacheSetResponse_STORED MemcacheSetResponse_SetStatusCode = 1 constant MemcacheSetResponse_NOT_STORED (line 128) | MemcacheSetResponse_NOT_STORED MemcacheSetResponse_SetStatusCode = 2 constant MemcacheSetResponse_ERROR (line 129) | MemcacheSetResponse_ERROR MemcacheSetResponse_SetStatusCode = 3 constant MemcacheSetResponse_EXISTS (line 130) | MemcacheSetResponse_EXISTS MemcacheSetResponse_SetStatusCode = 4 type MemcacheDeleteResponse_DeleteStatusCode (line 163) | type MemcacheDeleteResponse_DeleteStatusCode method Enum (line 179) | func (x MemcacheDeleteResponse_DeleteStatusCode) Enum() *MemcacheDelet... method String (line 184) | func (x MemcacheDeleteResponse_DeleteStatusCode) String() string { method UnmarshalJSON (line 187) | func (x *MemcacheDeleteResponse_DeleteStatusCode) UnmarshalJSON(data [... constant MemcacheDeleteResponse_DELETED (line 166) | MemcacheDeleteResponse_DELETED MemcacheDeleteResponse_DeleteStatusCode... constant MemcacheDeleteResponse_NOT_FOUND (line 167) | MemcacheDeleteResponse_NOT_FOUND MemcacheDeleteResponse_DeleteStatusCode... type MemcacheIncrementRequest_Direction (line 196) | type MemcacheIncrementRequest_Direction method Enum (line 212) | func (x MemcacheIncrementRequest_Direction) Enum() *MemcacheIncrementR... method String (line 217) | func (x MemcacheIncrementRequest_Direction) String() string { method UnmarshalJSON (line 220) | func (x *MemcacheIncrementRequest_Direction) UnmarshalJSON(data []byte... constant MemcacheIncrementRequest_INCREMENT (line 199) | MemcacheIncrementRequest_INCREMENT MemcacheIncrementRequest_Direction = 1 constant MemcacheIncrementRequest_DECREMENT (line 200) | MemcacheIncrementRequest_DECREMENT MemcacheIncrementRequest_Direction = 2 type MemcacheIncrementResponse_IncrementStatusCode (line 229) | type MemcacheIncrementResponse_IncrementStatusCode method Enum (line 248) | func (x MemcacheIncrementResponse_IncrementStatusCode) Enum() *Memcach... method String (line 253) | func (x MemcacheIncrementResponse_IncrementStatusCode) String() string { method UnmarshalJSON (line 256) | func (x *MemcacheIncrementResponse_IncrementStatusCode) UnmarshalJSON(... constant MemcacheIncrementResponse_OK (line 232) | MemcacheIncrementResponse_OK MemcacheIncrementResponse_Incremen... constant MemcacheIncrementResponse_NOT_CHANGED (line 233) | MemcacheIncrementResponse_NOT_CHANGED MemcacheIncrementResponse_Incremen... constant MemcacheIncrementResponse_ERROR (line 234) | MemcacheIncrementResponse_ERROR MemcacheIncrementResponse_Incremen... type MemcacheServiceError (line 265) | type MemcacheServiceError struct method Reset (line 269) | func (m *MemcacheServiceError) Reset() { *m = MemcacheServiceE... method String (line 270) | func (m *MemcacheServiceError) String() string { return proto.CompactT... method ProtoMessage (line 271) | func (*MemcacheServiceError) ProtoMessage() {} type AppOverride (line 273) | type AppOverride struct method Reset (line 282) | func (m *AppOverride) Reset() { *m = AppOverride{} } method String (line 283) | func (m *AppOverride) String() string { return proto.CompactTextString... method ProtoMessage (line 284) | func (*AppOverride) ProtoMessage() {} method GetAppId (line 286) | func (m *AppOverride) GetAppId() string { method GetNumMemcachegBackends (line 293) | func (m *AppOverride) GetNumMemcachegBackends() int32 { method GetIgnoreShardlock (line 300) | func (m *AppOverride) GetIgnoreShardlock() bool { method GetMemcachePoolHint (line 307) | func (m *AppOverride) GetMemcachePoolHint() string { method GetMemcacheShardingStrategy (line 314) | func (m *AppOverride) GetMemcacheShardingStrategy() []byte { type MemcacheGetRequest (line 321) | type MemcacheGetRequest struct method Reset (line 329) | func (m *MemcacheGetRequest) Reset() { *m = MemcacheGetRequest... method String (line 330) | func (m *MemcacheGetRequest) String() string { return proto.CompactTex... method ProtoMessage (line 331) | func (*MemcacheGetRequest) ProtoMessage() {} method GetKey (line 333) | func (m *MemcacheGetRequest) GetKey() [][]byte { method GetNameSpace (line 340) | func (m *MemcacheGetRequest) GetNameSpace() string { method GetForCas (line 347) | func (m *MemcacheGetRequest) GetForCas() bool { method GetOverride (line 354) | func (m *MemcacheGetRequest) GetOverride() *AppOverride { type MemcacheGetResponse (line 361) | type MemcacheGetResponse struct method Reset (line 366) | func (m *MemcacheGetResponse) Reset() { *m = MemcacheGetRespon... method String (line 367) | func (m *MemcacheGetResponse) String() string { return proto.CompactTe... method ProtoMessage (line 368) | func (*MemcacheGetResponse) ProtoMessage() {} method GetItem (line 370) | func (m *MemcacheGetResponse) GetItem() []*MemcacheGetResponse_Item { type MemcacheGetResponse_Item (line 377) | type MemcacheGetResponse_Item struct method Reset (line 386) | func (m *MemcacheGetResponse_Item) Reset() { *m = MemcacheGetR... method String (line 387) | func (m *MemcacheGetResponse_Item) String() string { return proto.Comp... method ProtoMessage (line 388) | func (*MemcacheGetResponse_Item) ProtoMessage() {} method GetKey (line 390) | func (m *MemcacheGetResponse_Item) GetKey() []byte { method GetValue (line 397) | func (m *MemcacheGetResponse_Item) GetValue() []byte { method GetFlags (line 404) | func (m *MemcacheGetResponse_Item) GetFlags() uint32 { method GetCasId (line 411) | func (m *MemcacheGetResponse_Item) GetCasId() uint64 { method GetExpiresInSeconds (line 418) | func (m *MemcacheGetResponse_Item) GetExpiresInSeconds() int32 { type MemcacheSetRequest (line 425) | type MemcacheSetRequest struct method Reset (line 432) | func (m *MemcacheSetRequest) Reset() { *m = MemcacheSetRequest... method String (line 433) | func (m *MemcacheSetRequest) String() string { return proto.CompactTex... method ProtoMessage (line 434) | func (*MemcacheSetRequest) ProtoMessage() {} method GetItem (line 436) | func (m *MemcacheSetRequest) GetItem() []*MemcacheSetRequest_Item { method GetNameSpace (line 443) | func (m *MemcacheSetRequest) GetNameSpace() string { method GetOverride (line 450) | func (m *MemcacheSetRequest) GetOverride() *AppOverride { type MemcacheSetRequest_Item (line 457) | type MemcacheSetRequest_Item struct method Reset (line 468) | func (m *MemcacheSetRequest_Item) Reset() { *m = MemcacheSetRe... method String (line 469) | func (m *MemcacheSetRequest_Item) String() string { return proto.Compa... method ProtoMessage (line 470) | func (*MemcacheSetRequest_Item) ProtoMessage() {} method GetKey (line 475) | func (m *MemcacheSetRequest_Item) GetKey() []byte { method GetValue (line 482) | func (m *MemcacheSetRequest_Item) GetValue() []byte { method GetFlags (line 489) | func (m *MemcacheSetRequest_Item) GetFlags() uint32 { method GetSetPolicy (line 496) | func (m *MemcacheSetRequest_Item) GetSetPolicy() MemcacheSetRequest_Se... method GetExpirationTime (line 503) | func (m *MemcacheSetRequest_Item) GetExpirationTime() uint32 { method GetCasId (line 510) | func (m *MemcacheSetRequest_Item) GetCasId() uint64 { method GetForCas (line 517) | func (m *MemcacheSetRequest_Item) GetForCas() bool { constant Default_MemcacheSetRequest_Item_SetPolicy (line 472) | Default_MemcacheSetRequest_Item_SetPolicy MemcacheSetRequest_SetPolicy =... constant Default_MemcacheSetRequest_Item_ExpirationTime (line 473) | Default_MemcacheSetRequest_Item_ExpirationTime uint32 = 0 type MemcacheSetResponse (line 524) | type MemcacheSetResponse struct method Reset (line 529) | func (m *MemcacheSetResponse) Reset() { *m = MemcacheSetRespon... method String (line 530) | func (m *MemcacheSetResponse) String() string { return proto.CompactTe... method ProtoMessage (line 531) | func (*MemcacheSetResponse) ProtoMessage() {} method GetSetStatus (line 533) | func (m *MemcacheSetResponse) GetSetStatus() []MemcacheSetResponse_Set... type MemcacheDeleteRequest (line 540) | type MemcacheDeleteRequest struct method Reset (line 547) | func (m *MemcacheDeleteRequest) Reset() { *m = MemcacheDeleteR... method String (line 548) | func (m *MemcacheDeleteRequest) String() string { return proto.Compact... method ProtoMessage (line 549) | func (*MemcacheDeleteRequest) ProtoMessage() {} method GetItem (line 551) | func (m *MemcacheDeleteRequest) GetItem() []*MemcacheDeleteRequest_Item { method GetNameSpace (line 558) | func (m *MemcacheDeleteRequest) GetNameSpace() string { method GetOverride (line 565) | func (m *MemcacheDeleteRequest) GetOverride() *AppOverride { type MemcacheDeleteRequest_Item (line 572) | type MemcacheDeleteRequest_Item struct method Reset (line 578) | func (m *MemcacheDeleteRequest_Item) Reset() { *m = MemcacheDe... method String (line 579) | func (m *MemcacheDeleteRequest_Item) String() string { return proto.Co... method ProtoMessage (line 580) | func (*MemcacheDeleteRequest_Item) ProtoMessage() {} method GetKey (line 584) | func (m *MemcacheDeleteRequest_Item) GetKey() []byte { method GetDeleteTime (line 591) | func (m *MemcacheDeleteRequest_Item) GetDeleteTime() uint32 { constant Default_MemcacheDeleteRequest_Item_DeleteTime (line 582) | Default_MemcacheDeleteRequest_Item_DeleteTime uint32 = 0 type MemcacheDeleteResponse (line 598) | type MemcacheDeleteResponse struct method Reset (line 603) | func (m *MemcacheDeleteResponse) Reset() { *m = MemcacheDelete... method String (line 604) | func (m *MemcacheDeleteResponse) String() string { return proto.Compac... method ProtoMessage (line 605) | func (*MemcacheDeleteResponse) ProtoMessage() {} method GetDeleteStatus (line 607) | func (m *MemcacheDeleteResponse) GetDeleteStatus() []MemcacheDeleteRes... type MemcacheIncrementRequest (line 614) | type MemcacheIncrementRequest struct method Reset (line 625) | func (m *MemcacheIncrementRequest) Reset() { *m = MemcacheIncr... method String (line 626) | func (m *MemcacheIncrementRequest) String() string { return proto.Comp... method ProtoMessage (line 627) | func (*MemcacheIncrementRequest) ProtoMessage() {} method GetKey (line 632) | func (m *MemcacheIncrementRequest) GetKey() []byte { method GetNameSpace (line 639) | func (m *MemcacheIncrementRequest) GetNameSpace() string { method GetDelta (line 646) | func (m *MemcacheIncrementRequest) GetDelta() uint64 { method GetDirection (line 653) | func (m *MemcacheIncrementRequest) GetDirection() MemcacheIncrementReq... method GetInitialValue (line 660) | func (m *MemcacheIncrementRequest) GetInitialValue() uint64 { method GetInitialFlags (line 667) | func (m *MemcacheIncrementRequest) GetInitialFlags() uint32 { method GetOverride (line 674) | func (m *MemcacheIncrementRequest) GetOverride() *AppOverride { constant Default_MemcacheIncrementRequest_Delta (line 629) | Default_MemcacheIncrementRequest_Delta uint64 = 1 constant Default_MemcacheIncrementRequest_Direction (line 630) | Default_MemcacheIncrementRequest_Direction MemcacheIncrementRequest_Dire... type MemcacheIncrementResponse (line 681) | type MemcacheIncrementResponse struct method Reset (line 687) | func (m *MemcacheIncrementResponse) Reset() { *m = MemcacheInc... method String (line 688) | func (m *MemcacheIncrementResponse) String() string { return proto.Com... method ProtoMessage (line 689) | func (*MemcacheIncrementResponse) ProtoMessage() {} method GetNewValue (line 691) | func (m *MemcacheIncrementResponse) GetNewValue() uint64 { method GetIncrementStatus (line 698) | func (m *MemcacheIncrementResponse) GetIncrementStatus() MemcacheIncre... type MemcacheBatchIncrementRequest (line 705) | type MemcacheBatchIncrementRequest struct method Reset (line 712) | func (m *MemcacheBatchIncrementRequest) Reset() { *m = Memcach... method String (line 713) | func (m *MemcacheBatchIncrementRequest) String() string { return proto... method ProtoMessage (line 714) | func (*MemcacheBatchIncrementRequest) ProtoMessage() {} method GetNameSpace (line 716) | func (m *MemcacheBatchIncrementRequest) GetNameSpace() string { method GetItem (line 723) | func (m *MemcacheBatchIncrementRequest) GetItem() []*MemcacheIncrement... method GetOverride (line 730) | func (m *MemcacheBatchIncrementRequest) GetOverride() *AppOverride { type MemcacheBatchIncrementResponse (line 737) | type MemcacheBatchIncrementResponse struct method Reset (line 742) | func (m *MemcacheBatchIncrementResponse) Reset() { *m = Memcac... method String (line 743) | func (m *MemcacheBatchIncrementResponse) String() string { return prot... method ProtoMessage (line 744) | func (*MemcacheBatchIncrementResponse) ProtoMessage() {} method GetItem (line 746) | func (m *MemcacheBatchIncrementResponse) GetItem() []*MemcacheIncremen... type MemcacheFlushRequest (line 753) | type MemcacheFlushRequest struct method Reset (line 758) | func (m *MemcacheFlushRequest) Reset() { *m = MemcacheFlushReq... method String (line 759) | func (m *MemcacheFlushRequest) String() string { return proto.CompactT... method ProtoMessage (line 760) | func (*MemcacheFlushRequest) ProtoMessage() {} method GetOverride (line 762) | func (m *MemcacheFlushRequest) GetOverride() *AppOverride { type MemcacheFlushResponse (line 769) | type MemcacheFlushResponse struct method Reset (line 773) | func (m *MemcacheFlushResponse) Reset() { *m = MemcacheFlushRe... method String (line 774) | func (m *MemcacheFlushResponse) String() string { return proto.Compact... method ProtoMessage (line 775) | func (*MemcacheFlushResponse) ProtoMessage() {} type MemcacheStatsRequest (line 777) | type MemcacheStatsRequest struct method Reset (line 782) | func (m *MemcacheStatsRequest) Reset() { *m = MemcacheStatsReq... method String (line 783) | func (m *MemcacheStatsRequest) String() string { return proto.CompactT... method ProtoMessage (line 784) | func (*MemcacheStatsRequest) ProtoMessage() {} method GetOverride (line 786) | func (m *MemcacheStatsRequest) GetOverride() *AppOverride { type MergedNamespaceStats (line 793) | type MergedNamespaceStats struct method Reset (line 803) | func (m *MergedNamespaceStats) Reset() { *m = MergedNamespaceS... method String (line 804) | func (m *MergedNamespaceStats) String() string { return proto.CompactT... method ProtoMessage (line 805) | func (*MergedNamespaceStats) ProtoMessage() {} method GetHits (line 807) | func (m *MergedNamespaceStats) GetHits() uint64 { method GetMisses (line 814) | func (m *MergedNamespaceStats) GetMisses() uint64 { method GetByteHits (line 821) | func (m *MergedNamespaceStats) GetByteHits() uint64 { method GetItems (line 828) | func (m *MergedNamespaceStats) GetItems() uint64 { method GetBytes (line 835) | func (m *MergedNamespaceStats) GetBytes() uint64 { method GetOldestItemAge (line 842) | func (m *MergedNamespaceStats) GetOldestItemAge() uint32 { type MemcacheStatsResponse (line 849) | type MemcacheStatsResponse struct method Reset (line 854) | func (m *MemcacheStatsResponse) Reset() { *m = MemcacheStatsRe... method String (line 855) | func (m *MemcacheStatsResponse) String() string { return proto.Compact... method ProtoMessage (line 856) | func (*MemcacheStatsResponse) ProtoMessage() {} method GetStats (line 858) | func (m *MemcacheStatsResponse) GetStats() *MergedNamespaceStats { type MemcacheGrabTailRequest (line 865) | type MemcacheGrabTailRequest struct method Reset (line 872) | func (m *MemcacheGrabTailRequest) Reset() { *m = MemcacheGrabT... method String (line 873) | func (m *MemcacheGrabTailRequest) String() string { return proto.Compa... method ProtoMessage (line 874) | func (*MemcacheGrabTailRequest) ProtoMessage() {} method GetItemCount (line 876) | func (m *MemcacheGrabTailRequest) GetItemCount() int32 { method GetNameSpace (line 883) | func (m *MemcacheGrabTailRequest) GetNameSpace() string { method GetOverride (line 890) | func (m *MemcacheGrabTailRequest) GetOverride() *AppOverride { type MemcacheGrabTailResponse (line 897) | type MemcacheGrabTailResponse struct method Reset (line 902) | func (m *MemcacheGrabTailResponse) Reset() { *m = MemcacheGrab... method String (line 903) | func (m *MemcacheGrabTailResponse) String() string { return proto.Comp... method ProtoMessage (line 904) | func (*MemcacheGrabTailResponse) ProtoMessage() {} method GetItem (line 906) | func (m *MemcacheGrabTailResponse) GetItem() []*MemcacheGrabTailRespon... type MemcacheGrabTailResponse_Item (line 913) | type MemcacheGrabTailResponse_Item struct method Reset (line 919) | func (m *MemcacheGrabTailResponse_Item) Reset() { *m = Memcach... method String (line 920) | func (m *MemcacheGrabTailResponse_Item) String() string { return proto... method ProtoMessage (line 921) | func (*MemcacheGrabTailResponse_Item) ProtoMessage() {} method GetValue (line 923) | func (m *MemcacheGrabTailResponse_Item) GetValue() []byte { method GetFlags (line 930) | func (m *MemcacheGrabTailResponse_Item) GetFlags() uint32 { function init (line 937) | func init() { FILE: vendor/google.golang.org/appengine/internal/metadata.go constant metadataHost (line 21) | metadataHost = "metadata" constant metadataPath (line 22) | metadataPath = "/computeMetadata/v1/" function mustGetMetadata (line 32) | func mustGetMetadata(key string) []byte { function getMetadata (line 40) | func getMetadata(key string) ([]byte, error) { FILE: vendor/google.golang.org/appengine/internal/modules/modules_service.pb.go type ModulesServiceError_ErrorCode (line 41) | type ModulesServiceError_ErrorCode method Enum (line 69) | func (x ModulesServiceError_ErrorCode) Enum() *ModulesServiceError_Err... method String (line 74) | func (x ModulesServiceError_ErrorCode) String() string { method UnmarshalJSON (line 77) | func (x *ModulesServiceError_ErrorCode) UnmarshalJSON(data []byte) err... constant ModulesServiceError_OK (line 44) | ModulesServiceError_OK ModulesServiceError_ErrorCode = 0 constant ModulesServiceError_INVALID_MODULE (line 45) | ModulesServiceError_INVALID_MODULE ModulesServiceError_ErrorCode = 1 constant ModulesServiceError_INVALID_VERSION (line 46) | ModulesServiceError_INVALID_VERSION ModulesServiceError_ErrorCode = 2 constant ModulesServiceError_INVALID_INSTANCES (line 47) | ModulesServiceError_INVALID_INSTANCES ModulesServiceError_ErrorCode = 3 constant ModulesServiceError_TRANSIENT_ERROR (line 48) | ModulesServiceError_TRANSIENT_ERROR ModulesServiceError_ErrorCode = 4 constant ModulesServiceError_UNEXPECTED_STATE (line 49) | ModulesServiceError_UNEXPECTED_STATE ModulesServiceError_ErrorCode = 5 type ModulesServiceError (line 86) | type ModulesServiceError struct method Reset (line 90) | func (m *ModulesServiceError) Reset() { *m = ModulesServiceErr... method String (line 91) | func (m *ModulesServiceError) String() string { return proto.CompactTe... method ProtoMessage (line 92) | func (*ModulesServiceError) ProtoMessage() {} type GetModulesRequest (line 94) | type GetModulesRequest struct method Reset (line 98) | func (m *GetModulesRequest) Reset() { *m = GetModulesRequest{} } method String (line 99) | func (m *GetModulesRequest) String() string { return proto.CompactText... method ProtoMessage (line 100) | func (*GetModulesRequest) ProtoMessage() {} type GetModulesResponse (line 102) | type GetModulesResponse struct method Reset (line 107) | func (m *GetModulesResponse) Reset() { *m = GetModulesResponse... method String (line 108) | func (m *GetModulesResponse) String() string { return proto.CompactTex... method ProtoMessage (line 109) | func (*GetModulesResponse) ProtoMessage() {} method GetModule (line 111) | func (m *GetModulesResponse) GetModule() []string { type GetVersionsRequest (line 118) | type GetVersionsRequest struct method Reset (line 123) | func (m *GetVersionsRequest) Reset() { *m = GetVersionsRequest... method String (line 124) | func (m *GetVersionsRequest) String() string { return proto.CompactTex... method ProtoMessage (line 125) | func (*GetVersionsRequest) ProtoMessage() {} method GetModule (line 127) | func (m *GetVersionsRequest) GetModule() string { type GetVersionsResponse (line 134) | type GetVersionsResponse struct method Reset (line 139) | func (m *GetVersionsResponse) Reset() { *m = GetVersionsRespon... method String (line 140) | func (m *GetVersionsResponse) String() string { return proto.CompactTe... method ProtoMessage (line 141) | func (*GetVersionsResponse) ProtoMessage() {} method GetVersion (line 143) | func (m *GetVersionsResponse) GetVersion() []string { type GetDefaultVersionRequest (line 150) | type GetDefaultVersionRequest struct method Reset (line 155) | func (m *GetDefaultVersionRequest) Reset() { *m = GetDefaultVe... method String (line 156) | func (m *GetDefaultVersionRequest) String() string { return proto.Comp... method ProtoMessage (line 157) | func (*GetDefaultVersionRequest) ProtoMessage() {} method GetModule (line 159) | func (m *GetDefaultVersionRequest) GetModule() string { type GetDefaultVersionResponse (line 166) | type GetDefaultVersionResponse struct method Reset (line 171) | func (m *GetDefaultVersionResponse) Reset() { *m = GetDefaultV... method String (line 172) | func (m *GetDefaultVersionResponse) String() string { return proto.Com... method ProtoMessage (line 173) | func (*GetDefaultVersionResponse) ProtoMessage() {} method GetVersion (line 175) | func (m *GetDefaultVersionResponse) GetVersion() string { type GetNumInstancesRequest (line 182) | type GetNumInstancesRequest struct method Reset (line 188) | func (m *GetNumInstancesRequest) Reset() { *m = GetNumInstance... method String (line 189) | func (m *GetNumInstancesRequest) String() string { return proto.Compac... method ProtoMessage (line 190) | func (*GetNumInstancesRequest) ProtoMessage() {} method GetModule (line 192) | func (m *GetNumInstancesRequest) GetModule() string { method GetVersion (line 199) | func (m *GetNumInstancesRequest) GetVersion() string { type GetNumInstancesResponse (line 206) | type GetNumInstancesResponse struct method Reset (line 211) | func (m *GetNumInstancesResponse) Reset() { *m = GetNumInstanc... method String (line 212) | func (m *GetNumInstancesResponse) String() string { return proto.Compa... method ProtoMessage (line 213) | func (*GetNumInstancesResponse) ProtoMessage() {} method GetInstances (line 215) | func (m *GetNumInstancesResponse) GetInstances() int64 { type SetNumInstancesRequest (line 222) | type SetNumInstancesRequest struct method Reset (line 229) | func (m *SetNumInstancesRequest) Reset() { *m = SetNumInstance... method String (line 230) | func (m *SetNumInstancesRequest) String() string { return proto.Compac... method ProtoMessage (line 231) | func (*SetNumInstancesRequest) ProtoMessage() {} method GetModule (line 233) | func (m *SetNumInstancesRequest) GetModule() string { method GetVersion (line 240) | func (m *SetNumInstancesRequest) GetVersion() string { method GetInstances (line 247) | func (m *SetNumInstancesRequest) GetInstances() int64 { type SetNumInstancesResponse (line 254) | type SetNumInstancesResponse struct method Reset (line 258) | func (m *SetNumInstancesResponse) Reset() { *m = SetNumInstanc... method String (line 259) | func (m *SetNumInstancesResponse) String() string { return proto.Compa... method ProtoMessage (line 260) | func (*SetNumInstancesResponse) ProtoMessage() {} type StartModuleRequest (line 262) | type StartModuleRequest struct method Reset (line 268) | func (m *StartModuleRequest) Reset() { *m = StartModuleRequest... method String (line 269) | func (m *StartModuleRequest) String() string { return proto.CompactTex... method ProtoMessage (line 270) | func (*StartModuleRequest) ProtoMessage() {} method GetModule (line 272) | func (m *StartModuleRequest) GetModule() string { method GetVersion (line 279) | func (m *StartModuleRequest) GetVersion() string { type StartModuleResponse (line 286) | type StartModuleResponse struct method Reset (line 290) | func (m *StartModuleResponse) Reset() { *m = StartModuleRespon... method String (line 291) | func (m *StartModuleResponse) String() string { return proto.CompactTe... method ProtoMessage (line 292) | func (*StartModuleResponse) ProtoMessage() {} type StopModuleRequest (line 294) | type StopModuleRequest struct method Reset (line 300) | func (m *StopModuleRequest) Reset() { *m = StopModuleRequest{} } method String (line 301) | func (m *StopModuleRequest) String() string { return proto.CompactText... method ProtoMessage (line 302) | func (*StopModuleRequest) ProtoMessage() {} method GetModule (line 304) | func (m *StopModuleRequest) GetModule() string { method GetVersion (line 311) | func (m *StopModuleRequest) GetVersion() string { type StopModuleResponse (line 318) | type StopModuleResponse struct method Reset (line 322) | func (m *StopModuleResponse) Reset() { *m = StopModuleResponse... method String (line 323) | func (m *StopModuleResponse) String() string { return proto.CompactTex... method ProtoMessage (line 324) | func (*StopModuleResponse) ProtoMessage() {} type GetHostnameRequest (line 326) | type GetHostnameRequest struct method Reset (line 333) | func (m *GetHostnameRequest) Reset() { *m = GetHostnameRequest... method String (line 334) | func (m *GetHostnameRequest) String() string { return proto.CompactTex... method ProtoMessage (line 335) | func (*GetHostnameRequest) ProtoMessage() {} method GetModule (line 337) | func (m *GetHostnameRequest) GetModule() string { method GetVersion (line 344) | func (m *GetHostnameRequest) GetVersion() string { method GetInstance (line 351) | func (m *GetHostnameRequest) GetInstance() string { type GetHostnameResponse (line 358) | type GetHostnameResponse struct method Reset (line 363) | func (m *GetHostnameResponse) Reset() { *m = GetHostnameRespon... method String (line 364) | func (m *GetHostnameResponse) String() string { return proto.CompactTe... method ProtoMessage (line 365) | func (*GetHostnameResponse) ProtoMessage() {} method GetHostname (line 367) | func (m *GetHostnameResponse) GetHostname() string { function init (line 374) | func init() { FILE: vendor/google.golang.org/appengine/internal/net.go function limitRelease (line 20) | func limitRelease() { function limitDial (line 30) | func limitDial(network, addr string) (net.Conn, error) { type limitConn (line 45) | type limitConn struct method Close (line 50) | func (lc *limitConn) Close() error { FILE: vendor/google.golang.org/appengine/internal/remote_api/remote_api.pb.go type RpcError_ErrorCode (line 28) | type RpcError_ErrorCode method Enum (line 77) | func (x RpcError_ErrorCode) Enum() *RpcError_ErrorCode { method String (line 82) | func (x RpcError_ErrorCode) String() string { method UnmarshalJSON (line 85) | func (x *RpcError_ErrorCode) UnmarshalJSON(data []byte) error { constant RpcError_UNKNOWN (line 31) | RpcError_UNKNOWN RpcError_ErrorCode = 0 constant RpcError_CALL_NOT_FOUND (line 32) | RpcError_CALL_NOT_FOUND RpcError_ErrorCode = 1 constant RpcError_PARSE_ERROR (line 33) | RpcError_PARSE_ERROR RpcError_ErrorCode = 2 constant RpcError_SECURITY_VIOLATION (line 34) | RpcError_SECURITY_VIOLATION RpcError_ErrorCode = 3 constant RpcError_OVER_QUOTA (line 35) | RpcError_OVER_QUOTA RpcError_ErrorCode = 4 constant RpcError_REQUEST_TOO_LARGE (line 36) | RpcError_REQUEST_TOO_LARGE RpcError_ErrorCode = 5 constant RpcError_CAPABILITY_DISABLED (line 37) | RpcError_CAPABILITY_DISABLED RpcError_ErrorCode = 6 constant RpcError_FEATURE_DISABLED (line 38) | RpcError_FEATURE_DISABLED RpcError_ErrorCode = 7 constant RpcError_BAD_REQUEST (line 39) | RpcError_BAD_REQUEST RpcError_ErrorCode = 8 constant RpcError_RESPONSE_TOO_LARGE (line 40) | RpcError_RESPONSE_TOO_LARGE RpcError_ErrorCode = 9 constant RpcError_CANCELLED (line 41) | RpcError_CANCELLED RpcError_ErrorCode = 10 constant RpcError_REPLAY_ERROR (line 42) | RpcError_REPLAY_ERROR RpcError_ErrorCode = 11 constant RpcError_DEADLINE_EXCEEDED (line 43) | RpcError_DEADLINE_EXCEEDED RpcError_ErrorCode = 12 type Request (line 94) | type Request struct method Reset (line 102) | func (m *Request) Reset() { *m = Request{} } method String (line 103) | func (m *Request) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 104) | func (*Request) ProtoMessage() {} method GetServiceName (line 106) | func (m *Request) GetServiceName() string { method GetMethod (line 113) | func (m *Request) GetMethod() string { method GetRequest (line 120) | func (m *Request) GetRequest() []byte { method GetRequestId (line 127) | func (m *Request) GetRequestId() string { type ApplicationError (line 134) | type ApplicationError struct method Reset (line 140) | func (m *ApplicationError) Reset() { *m = ApplicationError{} } method String (line 141) | func (m *ApplicationError) String() string { return proto.CompactTextS... method ProtoMessage (line 142) | func (*ApplicationError) ProtoMessage() {} method GetCode (line 144) | func (m *ApplicationError) GetCode() int32 { method GetDetail (line 151) | func (m *ApplicationError) GetDetail() string { type RpcError (line 158) | type RpcError struct method Reset (line 164) | func (m *RpcError) Reset() { *m = RpcError{} } method String (line 165) | func (m *RpcError) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 166) | func (*RpcError) ProtoMessage() {} method GetCode (line 168) | func (m *RpcError) GetCode() int32 { method GetDetail (line 175) | func (m *RpcError) GetDetail() string { type Response (line 182) | type Response struct method Reset (line 191) | func (m *Response) Reset() { *m = Response{} } method String (line 192) | func (m *Response) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 193) | func (*Response) ProtoMessage() {} method GetResponse (line 195) | func (m *Response) GetResponse() []byte { method GetException (line 202) | func (m *Response) GetException() []byte { method GetApplicationError (line 209) | func (m *Response) GetApplicationError() *ApplicationError { method GetJavaException (line 216) | func (m *Response) GetJavaException() []byte { method GetRpcError (line 223) | func (m *Response) GetRpcError() *RpcError { function init (line 230) | func init() { FILE: vendor/google.golang.org/appengine/internal/search/search.pb.go type Scope_Type (line 68) | type Scope_Type method Enum (line 99) | func (x Scope_Type) Enum() *Scope_Type { method String (line 104) | func (x Scope_Type) String() string { method UnmarshalJSON (line 107) | func (x *Scope_Type) UnmarshalJSON(data []byte) error { constant Scope_USER_BY_CANONICAL_ID (line 71) | Scope_USER_BY_CANONICAL_ID Scope_Type = 1 constant Scope_USER_BY_EMAIL (line 72) | Scope_USER_BY_EMAIL Scope_Type = 2 constant Scope_GROUP_BY_CANONICAL_ID (line 73) | Scope_GROUP_BY_CANONICAL_ID Scope_Type = 3 constant Scope_GROUP_BY_EMAIL (line 74) | Scope_GROUP_BY_EMAIL Scope_Type = 4 constant Scope_GROUP_BY_DOMAIN (line 75) | Scope_GROUP_BY_DOMAIN Scope_Type = 5 constant Scope_ALL_USERS (line 76) | Scope_ALL_USERS Scope_Type = 6 constant Scope_ALL_AUTHENTICATED_USERS (line 77) | Scope_ALL_AUTHENTICATED_USERS Scope_Type = 7 type Entry_Permission (line 116) | type Entry_Permission method Enum (line 135) | func (x Entry_Permission) Enum() *Entry_Permission { method String (line 140) | func (x Entry_Permission) String() string { method UnmarshalJSON (line 143) | func (x *Entry_Permission) UnmarshalJSON(data []byte) error { constant Entry_READ (line 119) | Entry_READ Entry_Permission = 1 constant Entry_WRITE (line 120) | Entry_WRITE Entry_Permission = 2 constant Entry_FULL_CONTROL (line 121) | Entry_FULL_CONTROL Entry_Permission = 3 type FieldValue_ContentType (line 152) | type FieldValue_ContentType method Enum (line 180) | func (x FieldValue_ContentType) Enum() *FieldValue_ContentType { method String (line 185) | func (x FieldValue_ContentType) String() string { method UnmarshalJSON (line 188) | func (x *FieldValue_ContentType) UnmarshalJSON(data []byte) error { constant FieldValue_TEXT (line 155) | FieldValue_TEXT FieldValue_ContentType = 0 constant FieldValue_HTML (line 156) | FieldValue_HTML FieldValue_ContentType = 1 constant FieldValue_ATOM (line 157) | FieldValue_ATOM FieldValue_ContentType = 2 constant FieldValue_DATE (line 158) | FieldValue_DATE FieldValue_ContentType = 3 constant FieldValue_NUMBER (line 159) | FieldValue_NUMBER FieldValue_ContentType = 4 constant FieldValue_GEO (line 160) | FieldValue_GEO FieldValue_ContentType = 5 type FacetValue_ContentType (line 197) | type FacetValue_ContentType method Enum (line 213) | func (x FacetValue_ContentType) Enum() *FacetValue_ContentType { method String (line 218) | func (x FacetValue_ContentType) String() string { method UnmarshalJSON (line 221) | func (x *FacetValue_ContentType) UnmarshalJSON(data []byte) error { constant FacetValue_ATOM (line 200) | FacetValue_ATOM FacetValue_ContentType = 2 constant FacetValue_NUMBER (line 201) | FacetValue_NUMBER FacetValue_ContentType = 4 type Document_Storage (line 230) | type Document_Storage method Enum (line 243) | func (x Document_Storage) Enum() *Document_Storage { method String (line 248) | func (x Document_Storage) String() string { method UnmarshalJSON (line 251) | func (x *Document_Storage) UnmarshalJSON(data []byte) error { constant Document_DISK (line 233) | Document_DISK Document_Storage = 0 type SearchServiceError_ErrorCode (line 260) | type SearchServiceError_ErrorCode method Enum (line 291) | func (x SearchServiceError_ErrorCode) Enum() *SearchServiceError_Error... method String (line 296) | func (x SearchServiceError_ErrorCode) String() string { method UnmarshalJSON (line 299) | func (x *SearchServiceError_ErrorCode) UnmarshalJSON(data []byte) error { constant SearchServiceError_OK (line 263) | SearchServiceError_OK SearchServiceError_ErrorCode = 0 constant SearchServiceError_INVALID_REQUEST (line 264) | SearchServiceError_INVALID_REQUEST SearchServiceError_ErrorCode = 1 constant SearchServiceError_TRANSIENT_ERROR (line 265) | SearchServiceError_TRANSIENT_ERROR SearchServiceError_ErrorCode = 2 constant SearchServiceError_INTERNAL_ERROR (line 266) | SearchServiceError_INTERNAL_ERROR SearchServiceError_ErrorCode = 3 constant SearchServiceError_PERMISSION_DENIED (line 267) | SearchServiceError_PERMISSION_DENIED SearchServiceError_ErrorCode = 4 constant SearchServiceError_TIMEOUT (line 268) | SearchServiceError_TIMEOUT SearchServiceError_ErrorCode = 5 constant SearchServiceError_CONCURRENT_TRANSACTION (line 269) | SearchServiceError_CONCURRENT_TRANSACTION SearchServiceError_ErrorCode = 6 type IndexSpec_Consistency (line 308) | type IndexSpec_Consistency method Enum (line 324) | func (x IndexSpec_Consistency) Enum() *IndexSpec_Consistency { method String (line 329) | func (x IndexSpec_Consistency) String() string { method UnmarshalJSON (line 332) | func (x *IndexSpec_Consistency) UnmarshalJSON(data []byte) error { constant IndexSpec_GLOBAL (line 311) | IndexSpec_GLOBAL IndexSpec_Consistency = 0 constant IndexSpec_PER_DOCUMENT (line 312) | IndexSpec_PER_DOCUMENT IndexSpec_Consistency = 1 type IndexSpec_Source (line 341) | type IndexSpec_Source method Enum (line 360) | func (x IndexSpec_Source) Enum() *IndexSpec_Source { method String (line 365) | func (x IndexSpec_Source) String() string { method UnmarshalJSON (line 368) | func (x *IndexSpec_Source) UnmarshalJSON(data []byte) error { constant IndexSpec_SEARCH (line 344) | IndexSpec_SEARCH IndexSpec_Source = 0 constant IndexSpec_DATASTORE (line 345) | IndexSpec_DATASTORE IndexSpec_Source = 1 constant IndexSpec_CLOUD_STORAGE (line 346) | IndexSpec_CLOUD_STORAGE IndexSpec_Source = 2 type IndexSpec_Mode (line 377) | type IndexSpec_Mode method Enum (line 393) | func (x IndexSpec_Mode) Enum() *IndexSpec_Mode { method String (line 398) | func (x IndexSpec_Mode) String() string { method UnmarshalJSON (line 401) | func (x *IndexSpec_Mode) UnmarshalJSON(data []byte) error { constant IndexSpec_PRIORITY (line 380) | IndexSpec_PRIORITY IndexSpec_Mode = 0 constant IndexSpec_BACKGROUND (line 381) | IndexSpec_BACKGROUND IndexSpec_Mode = 1 type IndexDocumentParams_Freshness (line 410) | type IndexDocumentParams_Freshness method Enum (line 426) | func (x IndexDocumentParams_Freshness) Enum() *IndexDocumentParams_Fre... method String (line 431) | func (x IndexDocumentParams_Freshness) String() string { method UnmarshalJSON (line 434) | func (x *IndexDocumentParams_Freshness) UnmarshalJSON(data []byte) err... constant IndexDocumentParams_SYNCHRONOUSLY (line 413) | IndexDocumentParams_SYNCHRONOUSLY IndexDocumentParams_Freshness = 0 constant IndexDocumentParams_WHEN_CONVENIENT (line 414) | IndexDocumentParams_WHEN_CONVENIENT IndexDocumentParams_Freshness = 1 type ScorerSpec_Scorer (line 443) | type ScorerSpec_Scorer method Enum (line 459) | func (x ScorerSpec_Scorer) Enum() *ScorerSpec_Scorer { method String (line 464) | func (x ScorerSpec_Scorer) String() string { method UnmarshalJSON (line 467) | func (x *ScorerSpec_Scorer) UnmarshalJSON(data []byte) error { constant ScorerSpec_RESCORING_MATCH_SCORER (line 446) | ScorerSpec_RESCORING_MATCH_SCORER ScorerSpec_Scorer = 0 constant ScorerSpec_MATCH_SCORER (line 447) | ScorerSpec_MATCH_SCORER ScorerSpec_Scorer = 2 type SearchParams_CursorType (line 476) | type SearchParams_CursorType method Enum (line 495) | func (x SearchParams_CursorType) Enum() *SearchParams_CursorType { method String (line 500) | func (x SearchParams_CursorType) String() string { method UnmarshalJSON (line 503) | func (x *SearchParams_CursorType) UnmarshalJSON(data []byte) error { constant SearchParams_NONE (line 479) | SearchParams_NONE SearchParams_CursorType = 0 constant SearchParams_SINGLE (line 480) | SearchParams_SINGLE SearchParams_CursorType = 1 constant SearchParams_PER_RESULT (line 481) | SearchParams_PER_RESULT SearchParams_CursorType = 2 type SearchParams_ParsingMode (line 512) | type SearchParams_ParsingMode method Enum (line 528) | func (x SearchParams_ParsingMode) Enum() *SearchParams_ParsingMode { method String (line 533) | func (x SearchParams_ParsingMode) String() string { method UnmarshalJSON (line 536) | func (x *SearchParams_ParsingMode) UnmarshalJSON(data []byte) error { constant SearchParams_STRICT (line 515) | SearchParams_STRICT SearchParams_ParsingMode = 0 constant SearchParams_RELAXED (line 516) | SearchParams_RELAXED SearchParams_ParsingMode = 1 type Scope (line 545) | type Scope struct method Reset (line 551) | func (m *Scope) Reset() { *m = Scope{} } method String (line 552) | func (m *Scope) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 553) | func (*Scope) ProtoMessage() {} method GetType (line 555) | func (m *Scope) GetType() Scope_Type { method GetValue (line 562) | func (m *Scope) GetValue() string { type Entry (line 569) | type Entry struct method Reset (line 576) | func (m *Entry) Reset() { *m = Entry{} } method String (line 577) | func (m *Entry) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 578) | func (*Entry) ProtoMessage() {} method GetScope (line 580) | func (m *Entry) GetScope() *Scope { method GetPermission (line 587) | func (m *Entry) GetPermission() Entry_Permission { method GetDisplayName (line 594) | func (m *Entry) GetDisplayName() string { type AccessControlList (line 601) | type AccessControlList struct method Reset (line 607) | func (m *AccessControlList) Reset() { *m = AccessControlList{} } method String (line 608) | func (m *AccessControlList) String() string { return proto.CompactText... method ProtoMessage (line 609) | func (*AccessControlList) ProtoMessage() {} method GetOwner (line 611) | func (m *AccessControlList) GetOwner() string { method GetEntries (line 618) | func (m *AccessControlList) GetEntries() []*Entry { type FieldValue (line 625) | type FieldValue struct method Reset (line 633) | func (m *FieldValue) Reset() { *m = FieldValue{} } method String (line 634) | func (m *FieldValue) String() string { return proto.CompactTextString(... method ProtoMessage (line 635) | func (*FieldValue) ProtoMessage() {} method GetType (line 640) | func (m *FieldValue) GetType() FieldValue_ContentType { method GetLanguage (line 647) | func (m *FieldValue) GetLanguage() string { method GetStringValue (line 654) | func (m *FieldValue) GetStringValue() string { method GetGeo (line 661) | func (m *FieldValue) GetGeo() *FieldValue_Geo { constant Default_FieldValue_Type (line 637) | Default_FieldValue_Type FieldValue_ContentType = FieldValue_TEXT constant Default_FieldValue_Language (line 638) | Default_FieldValue_Language string = "en" type FieldValue_Geo (line 668) | type FieldValue_Geo struct method Reset (line 674) | func (m *FieldValue_Geo) Reset() { *m = FieldValue_Geo{} } method String (line 675) | func (m *FieldValue_Geo) String() string { return proto.CompactTextStr... method ProtoMessage (line 676) | func (*FieldValue_Geo) ProtoMessage() {} method GetLat (line 678) | func (m *FieldValue_Geo) GetLat() float64 { method GetLng (line 685) | func (m *FieldValue_Geo) GetLng() float64 { type Field (line 692) | type Field struct method Reset (line 698) | func (m *Field) Reset() { *m = Field{} } method String (line 699) | func (m *Field) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 700) | func (*Field) ProtoMessage() {} method GetName (line 702) | func (m *Field) GetName() string { method GetValue (line 709) | func (m *Field) GetValue() *FieldValue { type FieldTypes (line 716) | type FieldTypes struct method Reset (line 722) | func (m *FieldTypes) Reset() { *m = FieldTypes{} } method String (line 723) | func (m *FieldTypes) String() string { return proto.CompactTextString(... method ProtoMessage (line 724) | func (*FieldTypes) ProtoMessage() {} method GetName (line 726) | func (m *FieldTypes) GetName() string { method GetType (line 733) | func (m *FieldTypes) GetType() []FieldValue_ContentType { type IndexShardSettings (line 740) | type IndexShardSettings struct method Reset (line 748) | func (m *IndexShardSettings) Reset() { *m = IndexShardSettings... method String (line 749) | func (m *IndexShardSettings) String() string { return proto.CompactTex... method ProtoMessage (line 750) | func (*IndexShardSettings) ProtoMessage() {} method GetPrevNumShards (line 754) | func (m *IndexShardSettings) GetPrevNumShards() []int32 { method GetNumShards (line 761) | func (m *IndexShardSettings) GetNumShards() int32 { method GetPrevNumShardsSearchFalse (line 768) | func (m *IndexShardSettings) GetPrevNumShardsSearchFalse() []int32 { method GetLocalReplica (line 775) | func (m *IndexShardSettings) GetLocalReplica() string { constant Default_IndexShardSettings_NumShards (line 752) | Default_IndexShardSettings_NumShards int32 = 1 type FacetValue (line 782) | type FacetValue struct method Reset (line 788) | func (m *FacetValue) Reset() { *m = FacetValue{} } method String (line 789) | func (m *FacetValue) String() string { return proto.CompactTextString(... method ProtoMessage (line 790) | func (*FacetValue) ProtoMessage() {} method GetType (line 794) | func (m *FacetValue) GetType() FacetValue_ContentType { method GetStringValue (line 801) | func (m *FacetValue) GetStringValue() string { constant Default_FacetValue_Type (line 792) | Default_FacetValue_Type FacetValue_ContentType = FacetValue_ATOM type Facet (line 808) | type Facet struct method Reset (line 814) | func (m *Facet) Reset() { *m = Facet{} } method String (line 815) | func (m *Facet) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 816) | func (*Facet) ProtoMessage() {} method GetName (line 818) | func (m *Facet) GetName() string { method GetValue (line 825) | func (m *Facet) GetValue() *FacetValue { type DocumentMetadata (line 832) | type DocumentMetadata struct method Reset (line 838) | func (m *DocumentMetadata) Reset() { *m = DocumentMetadata{} } method String (line 839) | func (m *DocumentMetadata) String() string { return proto.CompactTextS... method ProtoMessage (line 840) | func (*DocumentMetadata) ProtoMessage() {} method GetVersion (line 842) | func (m *DocumentMetadata) GetVersion() int64 { method GetCommittedStVersion (line 849) | func (m *DocumentMetadata) GetCommittedStVersion() int64 { type Document (line 856) | type Document struct method Reset (line 866) | func (m *Document) Reset() { *m = Document{} } method String (line 867) | func (m *Document) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 868) | func (*Document) ProtoMessage() {} method GetId (line 873) | func (m *Document) GetId() string { method GetLanguage (line 880) | func (m *Document) GetLanguage() string { method GetField (line 887) | func (m *Document) GetField() []*Field { method GetOrderId (line 894) | func (m *Document) GetOrderId() int32 { method GetStorage (line 901) | func (m *Document) GetStorage() Document_Storage { method GetFacet (line 908) | func (m *Document) GetFacet() []*Facet { constant Default_Document_Language (line 870) | Default_Document_Language string = "en" constant Default_Document_Storage (line 871) | Default_Document_Storage Document_Storage = Document_DISK type SearchServiceError (line 915) | type SearchServiceError struct method Reset (line 919) | func (m *SearchServiceError) Reset() { *m = SearchServiceError... method String (line 920) | func (m *SearchServiceError) String() string { return proto.CompactTex... method ProtoMessage (line 921) | func (*SearchServiceError) ProtoMessage() {} type RequestStatus (line 923) | type RequestStatus struct method Reset (line 930) | func (m *RequestStatus) Reset() { *m = RequestStatus{} } method String (line 931) | func (m *RequestStatus) String() string { return proto.CompactTextStri... method ProtoMessage (line 932) | func (*RequestStatus) ProtoMessage() {} method GetCode (line 934) | func (m *RequestStatus) GetCode() SearchServiceError_ErrorCode { method GetErrorDetail (line 941) | func (m *RequestStatus) GetErrorDetail() string { method GetCanonicalCode (line 948) | func (m *RequestStatus) GetCanonicalCode() int32 { type IndexSpec (line 955) | type IndexSpec struct method Reset (line 965) | func (m *IndexSpec) Reset() { *m = IndexSpec{} } method String (line 966) | func (m *IndexSpec) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 967) | func (*IndexSpec) ProtoMessage() {} method GetName (line 973) | func (m *IndexSpec) GetName() string { method GetConsistency (line 980) | func (m *IndexSpec) GetConsistency() IndexSpec_Consistency { method GetNamespace (line 987) | func (m *IndexSpec) GetNamespace() string { method GetVersion (line 994) | func (m *IndexSpec) GetVersion() int32 { method GetSource (line 1001) | func (m *IndexSpec) GetSource() IndexSpec_Source { method GetMode (line 1008) | func (m *IndexSpec) GetMode() IndexSpec_Mode { constant Default_IndexSpec_Consistency (line 969) | Default_IndexSpec_Consistency IndexSpec_Consistency = IndexSpec_PER_DOCU... constant Default_IndexSpec_Source (line 970) | Default_IndexSpec_Source IndexSpec_Source = IndexSpec_SEARCH constant Default_IndexSpec_Mode (line 971) | Default_IndexSpec_Mode IndexSpec_Mode = IndexSpec_PRIORITY type IndexMetadata (line 1015) | type IndexMetadata struct method Reset (line 1022) | func (m *IndexMetadata) Reset() { *m = IndexMetadata{} } method String (line 1023) | func (m *IndexMetadata) String() string { return proto.CompactTextStri... method ProtoMessage (line 1024) | func (*IndexMetadata) ProtoMessage() {} method GetIndexSpec (line 1026) | func (m *IndexMetadata) GetIndexSpec() *IndexSpec { method GetField (line 1033) | func (m *IndexMetadata) GetField() []*FieldTypes { method GetStorage (line 1040) | func (m *IndexMetadata) GetStorage() *IndexMetadata_Storage { type IndexMetadata_Storage (line 1047) | type IndexMetadata_Storage struct method Reset (line 1053) | func (m *IndexMetadata_Storage) Reset() { *m = IndexMetadata_S... method String (line 1054) | func (m *IndexMetadata_Storage) String() string { return proto.Compact... method ProtoMessage (line 1055) | func (*IndexMetadata_Storage) ProtoMessage() {} method GetAmountUsed (line 1057) | func (m *IndexMetadata_Storage) GetAmountUsed() int64 { method GetLimit (line 1064) | func (m *IndexMetadata_Storage) GetLimit() int64 { type IndexDocumentParams (line 1071) | type IndexDocumentParams struct method Reset (line 1078) | func (m *IndexDocumentParams) Reset() { *m = IndexDocumentPara... method String (line 1079) | func (m *IndexDocumentParams) String() string { return proto.CompactTe... method ProtoMessage (line 1080) | func (*IndexDocumentParams) ProtoMessage() {} method GetDocument (line 1084) | func (m *IndexDocumentParams) GetDocument() []*Document { method GetFreshness (line 1091) | func (m *IndexDocumentParams) GetFreshness() IndexDocumentParams_Fresh... method GetIndexSpec (line 1098) | func (m *IndexDocumentParams) GetIndexSpec() *IndexSpec { constant Default_IndexDocumentParams_Freshness (line 1082) | Default_IndexDocumentParams_Freshness IndexDocumentParams_Freshness = In... type IndexDocumentRequest (line 1105) | type IndexDocumentRequest struct method Reset (line 1111) | func (m *IndexDocumentRequest) Reset() { *m = IndexDocumentReq... method String (line 1112) | func (m *IndexDocumentRequest) String() string { return proto.CompactT... method ProtoMessage (line 1113) | func (*IndexDocumentRequest) ProtoMessage() {} method GetParams (line 1115) | func (m *IndexDocumentRequest) GetParams() *IndexDocumentParams { method GetAppId (line 1122) | func (m *IndexDocumentRequest) GetAppId() []byte { type IndexDocumentResponse (line 1129) | type IndexDocumentResponse struct method Reset (line 1135) | func (m *IndexDocumentResponse) Reset() { *m = IndexDocumentRe... method String (line 1136) | func (m *IndexDocumentResponse) String() string { return proto.Compact... method ProtoMessage (line 1137) | func (*IndexDocumentResponse) ProtoMessage() {} method GetStatus (line 1139) | func (m *IndexDocumentResponse) GetStatus() []*RequestStatus { method GetDocId (line 1146) | func (m *IndexDocumentResponse) GetDocId() []string { type DeleteDocumentParams (line 1153) | type DeleteDocumentParams struct method Reset (line 1159) | func (m *DeleteDocumentParams) Reset() { *m = DeleteDocumentPa... method String (line 1160) | func (m *DeleteDocumentParams) String() string { return proto.CompactT... method ProtoMessage (line 1161) | func (*DeleteDocumentParams) ProtoMessage() {} method GetDocId (line 1163) | func (m *DeleteDocumentParams) GetDocId() []string { method GetIndexSpec (line 1170) | func (m *DeleteDocumentParams) GetIndexSpec() *IndexSpec { type DeleteDocumentRequest (line 1177) | type DeleteDocumentRequest struct method Reset (line 1183) | func (m *DeleteDocumentRequest) Reset() { *m = DeleteDocumentR... method String (line 1184) | func (m *DeleteDocumentRequest) String() string { return proto.Compact... method ProtoMessage (line 1185) | func (*DeleteDocumentRequest) ProtoMessage() {} method GetParams (line 1187) | func (m *DeleteDocumentRequest) GetParams() *DeleteDocumentParams { method GetAppId (line 1194) | func (m *DeleteDocumentRequest) GetAppId() []byte { type DeleteDocumentResponse (line 1201) | type DeleteDocumentResponse struct method Reset (line 1206) | func (m *DeleteDocumentResponse) Reset() { *m = DeleteDocument... method String (line 1207) | func (m *DeleteDocumentResponse) String() string { return proto.Compac... method ProtoMessage (line 1208) | func (*DeleteDocumentResponse) ProtoMessage() {} method GetStatus (line 1210) | func (m *DeleteDocumentResponse) GetStatus() []*RequestStatus { type ListDocumentsParams (line 1217) | type ListDocumentsParams struct method Reset (line 1226) | func (m *ListDocumentsParams) Reset() { *m = ListDocumentsPara... method String (line 1227) | func (m *ListDocumentsParams) String() string { return proto.CompactTe... method ProtoMessage (line 1228) | func (*ListDocumentsParams) ProtoMessage() {} method GetIndexSpec (line 1233) | func (m *ListDocumentsParams) GetIndexSpec() *IndexSpec { method GetStartDocId (line 1240) | func (m *ListDocumentsParams) GetStartDocId() string { method GetIncludeStartDoc (line 1247) | func (m *ListDocumentsParams) GetIncludeStartDoc() bool { method GetLimit (line 1254) | func (m *ListDocumentsParams) GetLimit() int32 { method GetKeysOnly (line 1261) | func (m *ListDocumentsParams) GetKeysOnly() bool { constant Default_ListDocumentsParams_IncludeStartDoc (line 1230) | Default_ListDocumentsParams_IncludeStartDoc bool = true constant Default_ListDocumentsParams_Limit (line 1231) | Default_ListDocumentsParams_Limit int32 = 100 type ListDocumentsRequest (line 1268) | type ListDocumentsRequest struct method Reset (line 1274) | func (m *ListDocumentsRequest) Reset() { *m = ListDocumentsReq... method String (line 1275) | func (m *ListDocumentsRequest) String() string { return proto.CompactT... method ProtoMessage (line 1276) | func (*ListDocumentsRequest) ProtoMessage() {} method GetParams (line 1278) | func (m *ListDocumentsRequest) GetParams() *ListDocumentsParams { method GetAppId (line 1285) | func (m *ListDocumentsRequest) GetAppId() []byte { type ListDocumentsResponse (line 1292) | type ListDocumentsResponse struct method Reset (line 1298) | func (m *ListDocumentsResponse) Reset() { *m = ListDocumentsRe... method String (line 1299) | func (m *ListDocumentsResponse) String() string { return proto.Compact... method ProtoMessage (line 1300) | func (*ListDocumentsResponse) ProtoMessage() {} method GetStatus (line 1302) | func (m *ListDocumentsResponse) GetStatus() *RequestStatus { method GetDocument (line 1309) | func (m *ListDocumentsResponse) GetDocument() []*Document { type ListIndexesParams (line 1316) | type ListIndexesParams struct method Reset (line 1328) | func (m *ListIndexesParams) Reset() { *m = ListIndexesParams{} } method String (line 1329) | func (m *ListIndexesParams) String() string { return proto.CompactText... method ProtoMessage (line 1330) | func (*ListIndexesParams) ProtoMessage() {} method GetFetchSchema (line 1336) | func (m *ListIndexesParams) GetFetchSchema() bool { method GetLimit (line 1343) | func (m *ListIndexesParams) GetLimit() int32 { method GetNamespace (line 1350) | func (m *ListIndexesParams) GetNamespace() string { method GetStartIndexName (line 1357) | func (m *ListIndexesParams) GetStartIndexName() string { method GetIncludeStartIndex (line 1364) | func (m *ListIndexesParams) GetIncludeStartIndex() bool { method GetIndexNamePrefix (line 1371) | func (m *ListIndexesParams) GetIndexNamePrefix() string { method GetOffset (line 1378) | func (m *ListIndexesParams) GetOffset() int32 { method GetSource (line 1385) | func (m *ListIndexesParams) GetSource() IndexSpec_Source { constant Default_ListIndexesParams_Limit (line 1332) | Default_ListIndexesParams_Limit int32 = 20 constant Default_ListIndexesParams_IncludeStartIndex (line 1333) | Default_ListIndexesParams_IncludeStartIndex bool = true constant Default_ListIndexesParams_Source (line 1334) | Default_ListIndexesParams_Source IndexSpec_Source = IndexSpec_SEARCH type ListIndexesRequest (line 1392) | type ListIndexesRequest struct method Reset (line 1398) | func (m *ListIndexesRequest) Reset() { *m = ListIndexesRequest... method String (line 1399) | func (m *ListIndexesRequest) String() string { return proto.CompactTex... method ProtoMessage (line 1400) | func (*ListIndexesRequest) ProtoMessage() {} method GetParams (line 1402) | func (m *ListIndexesRequest) GetParams() *ListIndexesParams { method GetAppId (line 1409) | func (m *ListIndexesRequest) GetAppId() []byte { type ListIndexesResponse (line 1416) | type ListIndexesResponse struct method Reset (line 1422) | func (m *ListIndexesResponse) Reset() { *m = ListIndexesRespon... method String (line 1423) | func (m *ListIndexesResponse) String() string { return proto.CompactTe... method ProtoMessage (line 1424) | func (*ListIndexesResponse) ProtoMessage() {} method GetStatus (line 1426) | func (m *ListIndexesResponse) GetStatus() *RequestStatus { method GetIndexMetadata (line 1433) | func (m *ListIndexesResponse) GetIndexMetadata() []*IndexMetadata { type DeleteSchemaParams (line 1440) | type DeleteSchemaParams struct method Reset (line 1446) | func (m *DeleteSchemaParams) Reset() { *m = DeleteSchemaParams... method String (line 1447) | func (m *DeleteSchemaParams) String() string { return proto.CompactTex... method ProtoMessage (line 1448) | func (*DeleteSchemaParams) ProtoMessage() {} method GetSource (line 1452) | func (m *DeleteSchemaParams) GetSource() IndexSpec_Source { method GetIndexSpec (line 1459) | func (m *DeleteSchemaParams) GetIndexSpec() []*IndexSpec { constant Default_DeleteSchemaParams_Source (line 1450) | Default_DeleteSchemaParams_Source IndexSpec_Source = IndexSpec_SEARCH type DeleteSchemaRequest (line 1466) | type DeleteSchemaRequest struct method Reset (line 1472) | func (m *DeleteSchemaRequest) Reset() { *m = DeleteSchemaReque... method String (line 1473) | func (m *DeleteSchemaRequest) String() string { return proto.CompactTe... method ProtoMessage (line 1474) | func (*DeleteSchemaRequest) ProtoMessage() {} method GetParams (line 1476) | func (m *DeleteSchemaRequest) GetParams() *DeleteSchemaParams { method GetAppId (line 1483) | func (m *DeleteSchemaRequest) GetAppId() []byte { type DeleteSchemaResponse (line 1490) | type DeleteSchemaResponse struct method Reset (line 1495) | func (m *DeleteSchemaResponse) Reset() { *m = DeleteSchemaResp... method String (line 1496) | func (m *DeleteSchemaResponse) String() string { return proto.CompactT... method ProtoMessage (line 1497) | func (*DeleteSchemaResponse) ProtoMessage() {} method GetStatus (line 1499) | func (m *DeleteSchemaResponse) GetStatus() []*RequestStatus { type SortSpec (line 1506) | type SortSpec struct method Reset (line 1514) | func (m *SortSpec) Reset() { *m = SortSpec{} } method String (line 1515) | func (m *SortSpec) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 1516) | func (*SortSpec) ProtoMessage() {} method GetSortExpression (line 1520) | func (m *SortSpec) GetSortExpression() string { method GetSortDescending (line 1527) | func (m *SortSpec) GetSortDescending() bool { method GetDefaultValueText (line 1534) | func (m *SortSpec) GetDefaultValueText() string { method GetDefaultValueNumeric (line 1541) | func (m *SortSpec) GetDefaultValueNumeric() float64 { constant Default_SortSpec_SortDescending (line 1518) | Default_SortSpec_SortDescending bool = true type ScorerSpec (line 1548) | type ScorerSpec struct method Reset (line 1555) | func (m *ScorerSpec) Reset() { *m = ScorerSpec{} } method String (line 1556) | func (m *ScorerSpec) String() string { return proto.CompactTextString(... method ProtoMessage (line 1557) | func (*ScorerSpec) ProtoMessage() {} method GetScorer (line 1562) | func (m *ScorerSpec) GetScorer() ScorerSpec_Scorer { method GetLimit (line 1569) | func (m *ScorerSpec) GetLimit() int32 { method GetMatchScorerParameters (line 1576) | func (m *ScorerSpec) GetMatchScorerParameters() string { constant Default_ScorerSpec_Scorer (line 1559) | Default_ScorerSpec_Scorer ScorerSpec_Scorer = ScorerSpec_MATCH_SCORER constant Default_ScorerSpec_Limit (line 1560) | Default_ScorerSpec_Limit int32 = 1000 type FieldSpec (line 1583) | type FieldSpec struct method Reset (line 1589) | func (m *FieldSpec) Reset() { *m = FieldSpec{} } method String (line 1590) | func (m *FieldSpec) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 1591) | func (*FieldSpec) ProtoMessage() {} method GetName (line 1593) | func (m *FieldSpec) GetName() []string { method GetExpression (line 1600) | func (m *FieldSpec) GetExpression() []*FieldSpec_Expression { type FieldSpec_Expression (line 1607) | type FieldSpec_Expression struct method Reset (line 1613) | func (m *FieldSpec_Expression) Reset() { *m = FieldSpec_Expres... method String (line 1614) | func (m *FieldSpec_Expression) String() string { return proto.CompactT... method ProtoMessage (line 1615) | func (*FieldSpec_Expression) ProtoMessage() {} method GetName (line 1617) | func (m *FieldSpec_Expression) GetName() string { method GetExpression (line 1624) | func (m *FieldSpec_Expression) GetExpression() string { type FacetRange (line 1631) | type FacetRange struct method Reset (line 1638) | func (m *FacetRange) Reset() { *m = FacetRange{} } method String (line 1639) | func (m *FacetRange) String() string { return proto.CompactTextString(... method ProtoMessage (line 1640) | func (*FacetRange) ProtoMessage() {} method GetName (line 1642) | func (m *FacetRange) GetName() string { method GetStart (line 1649) | func (m *FacetRange) GetStart() string { method GetEnd (line 1656) | func (m *FacetRange) GetEnd() string { type FacetRequestParam (line 1663) | type FacetRequestParam struct method Reset (line 1670) | func (m *FacetRequestParam) Reset() { *m = FacetRequestParam{} } method String (line 1671) | func (m *FacetRequestParam) String() string { return proto.CompactText... method ProtoMessage (line 1672) | func (*FacetRequestParam) ProtoMessage() {} method GetValueLimit (line 1674) | func (m *FacetRequestParam) GetValueLimit() int32 { method GetRange (line 1681) | func (m *FacetRequestParam) GetRange() []*FacetRange { method GetValueConstraint (line 1688) | func (m *FacetRequestParam) GetValueConstraint() []string { type FacetAutoDetectParam (line 1695) | type FacetAutoDetectParam struct method Reset (line 1700) | func (m *FacetAutoDetectParam) Reset() { *m = FacetAutoDetectP... method String (line 1701) | func (m *FacetAutoDetectParam) String() string { return proto.CompactT... method ProtoMessage (line 1702) | func (*FacetAutoDetectParam) ProtoMessage() {} method GetValueLimit (line 1706) | func (m *FacetAutoDetectParam) GetValueLimit() int32 { constant Default_FacetAutoDetectParam_ValueLimit (line 1704) | Default_FacetAutoDetectParam_ValueLimit int32 = 10 type FacetRequest (line 1713) | type FacetRequest struct method Reset (line 1719) | func (m *FacetRequest) Reset() { *m = FacetRequest{} } method String (line 1720) | func (m *FacetRequest) String() string { return proto.CompactTextStrin... method ProtoMessage (line 1721) | func (*FacetRequest) ProtoMessage() {} method GetName (line 1723) | func (m *FacetRequest) GetName() string { method GetParams (line 1730) | func (m *FacetRequest) GetParams() *FacetRequestParam { type FacetRefinement (line 1737) | type FacetRefinement struct method Reset (line 1744) | func (m *FacetRefinement) Reset() { *m = FacetRefinement{} } method String (line 1745) | func (m *FacetRefinement) String() string { return proto.CompactTextSt... method ProtoMessage (line 1746) | func (*FacetRefinement) ProtoMessage() {} method GetName (line 1748) | func (m *FacetRefinement) GetName() string { method GetValue (line 1755) | func (m *FacetRefinement) GetValue() string { method GetRange (line 1762) | func (m *FacetRefinement) GetRange() *FacetRefinement_Range { type FacetRefinement_Range (line 1769) | type FacetRefinement_Range struct method Reset (line 1775) | func (m *FacetRefinement_Range) Reset() { *m = FacetRefinement... method String (line 1776) | func (m *FacetRefinement_Range) String() string { return proto.Compact... method ProtoMessage (line 1777) | func (*FacetRefinement_Range) ProtoMessage() {} method GetStart (line 1779) | func (m *FacetRefinement_Range) GetStart() string { method GetEnd (line 1786) | func (m *FacetRefinement_Range) GetEnd() string { type SearchParams (line 1793) | type SearchParams struct method Reset (line 1814) | func (m *SearchParams) Reset() { *m = SearchParams{} } method String (line 1815) | func (m *SearchParams) String() string { return proto.CompactTextStrin... method ProtoMessage (line 1816) | func (*SearchParams) ProtoMessage() {} method GetIndexSpec (line 1824) | func (m *SearchParams) GetIndexSpec() *IndexSpec { method GetQuery (line 1831) | func (m *SearchParams) GetQuery() string { method GetCursor (line 1838) | func (m *SearchParams) GetCursor() string { method GetOffset (line 1845) | func (m *SearchParams) GetOffset() int32 { method GetCursorType (line 1852) | func (m *SearchParams) GetCursorType() SearchParams_CursorType { method GetLimit (line 1859) | func (m *SearchParams) GetLimit() int32 { method GetMatchedCountAccuracy (line 1866) | func (m *SearchParams) GetMatchedCountAccuracy() int32 { method GetSortSpec (line 1873) | func (m *SearchParams) GetSortSpec() []*SortSpec { method GetScorerSpec (line 1880) | func (m *SearchParams) GetScorerSpec() *ScorerSpec { method GetFieldSpec (line 1887) | func (m *SearchParams) GetFieldSpec() *FieldSpec { method GetKeysOnly (line 1894) | func (m *SearchParams) GetKeysOnly() bool { method GetParsingMode (line 1901) | func (m *SearchParams) GetParsingMode() SearchParams_ParsingMode { method GetAutoDiscoverFacetCount (line 1908) | func (m *SearchParams) GetAutoDiscoverFacetCount() int32 { method GetIncludeFacet (line 1915) | func (m *SearchParams) GetIncludeFacet() []*FacetRequest { method GetFacetRefinement (line 1922) | func (m *SearchParams) GetFacetRefinement() []*FacetRefinement { method GetFacetAutoDetectParam (line 1929) | func (m *SearchParams) GetFacetAutoDetectParam() *FacetAutoDetectParam { method GetFacetDepth (line 1936) | func (m *SearchParams) GetFacetDepth() int32 { constant Default_SearchParams_CursorType (line 1818) | Default_SearchParams_CursorType SearchParams_CursorType = SearchParams_NONE constant Default_SearchParams_Limit (line 1819) | Default_SearchParams_Limit int32 = 20 constant Default_SearchParams_ParsingMode (line 1820) | Default_SearchParams_ParsingMode SearchParams_ParsingMode = SearchParams... constant Default_SearchParams_AutoDiscoverFacetCount (line 1821) | Default_SearchParams_AutoDiscoverFacetCount int32 = 0 constant Default_SearchParams_FacetDepth (line 1822) | Default_SearchParams_FacetDepth int32 = 1000 type SearchRequest (line 1943) | type SearchRequest struct method Reset (line 1949) | func (m *SearchRequest) Reset() { *m = SearchRequest{} } method String (line 1950) | func (m *SearchRequest) String() string { return proto.CompactTextStri... method ProtoMessage (line 1951) | func (*SearchRequest) ProtoMessage() {} method GetParams (line 1953) | func (m *SearchRequest) GetParams() *SearchParams { method GetAppId (line 1960) | func (m *SearchRequest) GetAppId() []byte { type FacetResultValue (line 1967) | type FacetResultValue struct method Reset (line 1974) | func (m *FacetResultValue) Reset() { *m = FacetResultValue{} } method String (line 1975) | func (m *FacetResultValue) String() string { return proto.CompactTextS... method ProtoMessage (line 1976) | func (*FacetResultValue) ProtoMessage() {} method GetName (line 1978) | func (m *FacetResultValue) GetName() string { method GetCount (line 1985) | func (m *FacetResultValue) GetCount() int32 { method GetRefinement (line 1992) | func (m *FacetResultValue) GetRefinement() *FacetRefinement { type FacetResult (line 1999) | type FacetResult struct method Reset (line 2005) | func (m *FacetResult) Reset() { *m = FacetResult{} } method String (line 2006) | func (m *FacetResult) String() string { return proto.CompactTextString... method ProtoMessage (line 2007) | func (*FacetResult) ProtoMessage() {} method GetName (line 2009) | func (m *FacetResult) GetName() string { method GetValue (line 2016) | func (m *FacetResult) GetValue() []*FacetResultValue { type SearchResult (line 2023) | type SearchResult struct method Reset (line 2031) | func (m *SearchResult) Reset() { *m = SearchResult{} } method String (line 2032) | func (m *SearchResult) String() string { return proto.CompactTextStrin... method ProtoMessage (line 2033) | func (*SearchResult) ProtoMessage() {} method GetDocument (line 2035) | func (m *SearchResult) GetDocument() *Document { method GetExpression (line 2042) | func (m *SearchResult) GetExpression() []*Field { method GetScore (line 2049) | func (m *SearchResult) GetScore() []float64 { method GetCursor (line 2056) | func (m *SearchResult) GetCursor() string { type SearchResponse (line 2063) | type SearchResponse struct method Reset (line 2073) | func (m *SearchResponse) Reset() { *m = SearchResponse{} } method String (line 2074) | func (m *SearchResponse) String() string { return proto.CompactTextStr... method ProtoMessage (line 2075) | func (*SearchResponse) ProtoMessage() {} method ExtensionRangeArray (line 2081) | func (*SearchResponse) ExtensionRangeArray() []proto.ExtensionRange { method ExtensionMap (line 2084) | func (m *SearchResponse) ExtensionMap() map[int32]proto.Extension { method GetResult (line 2091) | func (m *SearchResponse) GetResult() []*SearchResult { method GetMatchedCount (line 2098) | func (m *SearchResponse) GetMatchedCount() int64 { method GetStatus (line 2105) | func (m *SearchResponse) GetStatus() *RequestStatus { method GetCursor (line 2112) | func (m *SearchResponse) GetCursor() string { method GetFacetResult (line 2119) | func (m *SearchResponse) GetFacetResult() []*FacetResult { function init (line 2126) | func init() { FILE: vendor/google.golang.org/appengine/internal/socket/socket_service.pb.go type RemoteSocketServiceError_ErrorCode (line 58) | type RemoteSocketServiceError_ErrorCode method Enum (line 86) | func (x RemoteSocketServiceError_ErrorCode) Enum() *RemoteSocketServic... method String (line 91) | func (x RemoteSocketServiceError_ErrorCode) String() string { method UnmarshalJSON (line 94) | func (x *RemoteSocketServiceError_ErrorCode) UnmarshalJSON(data []byte... constant RemoteSocketServiceError_SYSTEM_ERROR (line 61) | RemoteSocketServiceError_SYSTEM_ERROR RemoteSocketServiceError_Erro... constant RemoteSocketServiceError_GAI_ERROR (line 62) | RemoteSocketServiceError_GAI_ERROR RemoteSocketServiceError_Erro... constant RemoteSocketServiceError_FAILURE (line 63) | RemoteSocketServiceError_FAILURE RemoteSocketServiceError_Erro... constant RemoteSocketServiceError_PERMISSION_DENIED (line 64) | RemoteSocketServiceError_PERMISSION_DENIED RemoteSocketServiceError_Erro... constant RemoteSocketServiceError_INVALID_REQUEST (line 65) | RemoteSocketServiceError_INVALID_REQUEST RemoteSocketServiceError_Erro... constant RemoteSocketServiceError_SOCKET_CLOSED (line 66) | RemoteSocketServiceError_SOCKET_CLOSED RemoteSocketServiceError_Erro... type RemoteSocketServiceError_SystemError (line 103) | type RemoteSocketServiceError_SystemError method Enum (line 515) | func (x RemoteSocketServiceError_SystemError) Enum() *RemoteSocketServ... method String (line 520) | func (x RemoteSocketServiceError_SystemError) String() string { method UnmarshalJSON (line 523) | func (x *RemoteSocketServiceError_SystemError) UnmarshalJSON(data []by... constant RemoteSocketServiceError_SYS_SUCCESS (line 106) | RemoteSocketServiceError_SYS_SUCCESS RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EPERM (line 107) | RemoteSocketServiceError_SYS_EPERM RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ENOENT (line 108) | RemoteSocketServiceError_SYS_ENOENT RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ESRCH (line 109) | RemoteSocketServiceError_SYS_ESRCH RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EINTR (line 110) | RemoteSocketServiceError_SYS_EINTR RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EIO (line 111) | RemoteSocketServiceError_SYS_EIO RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ENXIO (line 112) | RemoteSocketServiceError_SYS_ENXIO RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_E2BIG (line 113) | RemoteSocketServiceError_SYS_E2BIG RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ENOEXEC (line 114) | RemoteSocketServiceError_SYS_ENOEXEC RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EBADF (line 115) | RemoteSocketServiceError_SYS_EBADF RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ECHILD (line 116) | RemoteSocketServiceError_SYS_ECHILD RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EAGAIN (line 117) | RemoteSocketServiceError_SYS_EAGAIN RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EWOULDBLOCK (line 118) | RemoteSocketServiceError_SYS_EWOULDBLOCK RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ENOMEM (line 119) | RemoteSocketServiceError_SYS_ENOMEM RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EACCES (line 120) | RemoteSocketServiceError_SYS_EACCES RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EFAULT (line 121) | RemoteSocketServiceError_SYS_EFAULT RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ENOTBLK (line 122) | RemoteSocketServiceError_SYS_ENOTBLK RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EBUSY (line 123) | RemoteSocketServiceError_SYS_EBUSY RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EEXIST (line 124) | RemoteSocketServiceError_SYS_EEXIST RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EXDEV (line 125) | RemoteSocketServiceError_SYS_EXDEV RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ENODEV (line 126) | RemoteSocketServiceError_SYS_ENODEV RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ENOTDIR (line 127) | RemoteSocketServiceError_SYS_ENOTDIR RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EISDIR (line 128) | RemoteSocketServiceError_SYS_EISDIR RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EINVAL (line 129) | RemoteSocketServiceError_SYS_EINVAL RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ENFILE (line 130) | RemoteSocketServiceError_SYS_ENFILE RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EMFILE (line 131) | RemoteSocketServiceError_SYS_EMFILE RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ENOTTY (line 132) | RemoteSocketServiceError_SYS_ENOTTY RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ETXTBSY (line 133) | RemoteSocketServiceError_SYS_ETXTBSY RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EFBIG (line 134) | RemoteSocketServiceError_SYS_EFBIG RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ENOSPC (line 135) | RemoteSocketServiceError_SYS_ENOSPC RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ESPIPE (line 136) | RemoteSocketServiceError_SYS_ESPIPE RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EROFS (line 137) | RemoteSocketServiceError_SYS_EROFS RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EMLINK (line 138) | RemoteSocketServiceError_SYS_EMLINK RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EPIPE (line 139) | RemoteSocketServiceError_SYS_EPIPE RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EDOM (line 140) | RemoteSocketServiceError_SYS_EDOM RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ERANGE (line 141) | RemoteSocketServiceError_SYS_ERANGE RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EDEADLK (line 142) | RemoteSocketServiceError_SYS_EDEADLK RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EDEADLOCK (line 143) | RemoteSocketServiceError_SYS_EDEADLOCK RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ENAMETOOLONG (line 144) | RemoteSocketServiceError_SYS_ENAMETOOLONG RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ENOLCK (line 145) | RemoteSocketServiceError_SYS_ENOLCK RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ENOSYS (line 146) | RemoteSocketServiceError_SYS_ENOSYS RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ENOTEMPTY (line 147) | RemoteSocketServiceError_SYS_ENOTEMPTY RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ELOOP (line 148) | RemoteSocketServiceError_SYS_ELOOP RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ENOMSG (line 149) | RemoteSocketServiceError_SYS_ENOMSG RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EIDRM (line 150) | RemoteSocketServiceError_SYS_EIDRM RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ECHRNG (line 151) | RemoteSocketServiceError_SYS_ECHRNG RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EL2NSYNC (line 152) | RemoteSocketServiceError_SYS_EL2NSYNC RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EL3HLT (line 153) | RemoteSocketServiceError_SYS_EL3HLT RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EL3RST (line 154) | RemoteSocketServiceError_SYS_EL3RST RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ELNRNG (line 155) | RemoteSocketServiceError_SYS_ELNRNG RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EUNATCH (line 156) | RemoteSocketServiceError_SYS_EUNATCH RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ENOCSI (line 157) | RemoteSocketServiceError_SYS_ENOCSI RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EL2HLT (line 158) | RemoteSocketServiceError_SYS_EL2HLT RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EBADE (line 159) | RemoteSocketServiceError_SYS_EBADE RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EBADR (line 160) | RemoteSocketServiceError_SYS_EBADR RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EXFULL (line 161) | RemoteSocketServiceError_SYS_EXFULL RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ENOANO (line 162) | RemoteSocketServiceError_SYS_ENOANO RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EBADRQC (line 163) | RemoteSocketServiceError_SYS_EBADRQC RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EBADSLT (line 164) | RemoteSocketServiceError_SYS_EBADSLT RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EBFONT (line 165) | RemoteSocketServiceError_SYS_EBFONT RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ENOSTR (line 166) | RemoteSocketServiceError_SYS_ENOSTR RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ENODATA (line 167) | RemoteSocketServiceError_SYS_ENODATA RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ETIME (line 168) | RemoteSocketServiceError_SYS_ETIME RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ENOSR (line 169) | RemoteSocketServiceError_SYS_ENOSR RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ENONET (line 170) | RemoteSocketServiceError_SYS_ENONET RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ENOPKG (line 171) | RemoteSocketServiceError_SYS_ENOPKG RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EREMOTE (line 172) | RemoteSocketServiceError_SYS_EREMOTE RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ENOLINK (line 173) | RemoteSocketServiceError_SYS_ENOLINK RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EADV (line 174) | RemoteSocketServiceError_SYS_EADV RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ESRMNT (line 175) | RemoteSocketServiceError_SYS_ESRMNT RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ECOMM (line 176) | RemoteSocketServiceError_SYS_ECOMM RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EPROTO (line 177) | RemoteSocketServiceError_SYS_EPROTO RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EMULTIHOP (line 178) | RemoteSocketServiceError_SYS_EMULTIHOP RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EDOTDOT (line 179) | RemoteSocketServiceError_SYS_EDOTDOT RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EBADMSG (line 180) | RemoteSocketServiceError_SYS_EBADMSG RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EOVERFLOW (line 181) | RemoteSocketServiceError_SYS_EOVERFLOW RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ENOTUNIQ (line 182) | RemoteSocketServiceError_SYS_ENOTUNIQ RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EBADFD (line 183) | RemoteSocketServiceError_SYS_EBADFD RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EREMCHG (line 184) | RemoteSocketServiceError_SYS_EREMCHG RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ELIBACC (line 185) | RemoteSocketServiceError_SYS_ELIBACC RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ELIBBAD (line 186) | RemoteSocketServiceError_SYS_ELIBBAD RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ELIBSCN (line 187) | RemoteSocketServiceError_SYS_ELIBSCN RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ELIBMAX (line 188) | RemoteSocketServiceError_SYS_ELIBMAX RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ELIBEXEC (line 189) | RemoteSocketServiceError_SYS_ELIBEXEC RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EILSEQ (line 190) | RemoteSocketServiceError_SYS_EILSEQ RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ERESTART (line 191) | RemoteSocketServiceError_SYS_ERESTART RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ESTRPIPE (line 192) | RemoteSocketServiceError_SYS_ESTRPIPE RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EUSERS (line 193) | RemoteSocketServiceError_SYS_EUSERS RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ENOTSOCK (line 194) | RemoteSocketServiceError_SYS_ENOTSOCK RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EDESTADDRREQ (line 195) | RemoteSocketServiceError_SYS_EDESTADDRREQ RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EMSGSIZE (line 196) | RemoteSocketServiceError_SYS_EMSGSIZE RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EPROTOTYPE (line 197) | RemoteSocketServiceError_SYS_EPROTOTYPE RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ENOPROTOOPT (line 198) | RemoteSocketServiceError_SYS_ENOPROTOOPT RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EPROTONOSUPPORT (line 199) | RemoteSocketServiceError_SYS_EPROTONOSUPPORT RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ESOCKTNOSUPPORT (line 200) | RemoteSocketServiceError_SYS_ESOCKTNOSUPPORT RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EOPNOTSUPP (line 201) | RemoteSocketServiceError_SYS_EOPNOTSUPP RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ENOTSUP (line 202) | RemoteSocketServiceError_SYS_ENOTSUP RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EPFNOSUPPORT (line 203) | RemoteSocketServiceError_SYS_EPFNOSUPPORT RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EAFNOSUPPORT (line 204) | RemoteSocketServiceError_SYS_EAFNOSUPPORT RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EADDRINUSE (line 205) | RemoteSocketServiceError_SYS_EADDRINUSE RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EADDRNOTAVAIL (line 206) | RemoteSocketServiceError_SYS_EADDRNOTAVAIL RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ENETDOWN (line 207) | RemoteSocketServiceError_SYS_ENETDOWN RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ENETUNREACH (line 208) | RemoteSocketServiceError_SYS_ENETUNREACH RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ENETRESET (line 209) | RemoteSocketServiceError_SYS_ENETRESET RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ECONNABORTED (line 210) | RemoteSocketServiceError_SYS_ECONNABORTED RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ECONNRESET (line 211) | RemoteSocketServiceError_SYS_ECONNRESET RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ENOBUFS (line 212) | RemoteSocketServiceError_SYS_ENOBUFS RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EISCONN (line 213) | RemoteSocketServiceError_SYS_EISCONN RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ENOTCONN (line 214) | RemoteSocketServiceError_SYS_ENOTCONN RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ESHUTDOWN (line 215) | RemoteSocketServiceError_SYS_ESHUTDOWN RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ETOOMANYREFS (line 216) | RemoteSocketServiceError_SYS_ETOOMANYREFS RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ETIMEDOUT (line 217) | RemoteSocketServiceError_SYS_ETIMEDOUT RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ECONNREFUSED (line 218) | RemoteSocketServiceError_SYS_ECONNREFUSED RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EHOSTDOWN (line 219) | RemoteSocketServiceError_SYS_EHOSTDOWN RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EHOSTUNREACH (line 220) | RemoteSocketServiceError_SYS_EHOSTUNREACH RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EALREADY (line 221) | RemoteSocketServiceError_SYS_EALREADY RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EINPROGRESS (line 222) | RemoteSocketServiceError_SYS_EINPROGRESS RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ESTALE (line 223) | RemoteSocketServiceError_SYS_ESTALE RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EUCLEAN (line 224) | RemoteSocketServiceError_SYS_EUCLEAN RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ENOTNAM (line 225) | RemoteSocketServiceError_SYS_ENOTNAM RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ENAVAIL (line 226) | RemoteSocketServiceError_SYS_ENAVAIL RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EISNAM (line 227) | RemoteSocketServiceError_SYS_EISNAM RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EREMOTEIO (line 228) | RemoteSocketServiceError_SYS_EREMOTEIO RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EDQUOT (line 229) | RemoteSocketServiceError_SYS_EDQUOT RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ENOMEDIUM (line 230) | RemoteSocketServiceError_SYS_ENOMEDIUM RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EMEDIUMTYPE (line 231) | RemoteSocketServiceError_SYS_EMEDIUMTYPE RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ECANCELED (line 232) | RemoteSocketServiceError_SYS_ECANCELED RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ENOKEY (line 233) | RemoteSocketServiceError_SYS_ENOKEY RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EKEYEXPIRED (line 234) | RemoteSocketServiceError_SYS_EKEYEXPIRED RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EKEYREVOKED (line 235) | RemoteSocketServiceError_SYS_EKEYREVOKED RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EKEYREJECTED (line 236) | RemoteSocketServiceError_SYS_EKEYREJECTED RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_EOWNERDEAD (line 237) | RemoteSocketServiceError_SYS_EOWNERDEAD RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ENOTRECOVERABLE (line 238) | RemoteSocketServiceError_SYS_ENOTRECOVERABLE RemoteSocketServiceError_Sy... constant RemoteSocketServiceError_SYS_ERFKILL (line 239) | RemoteSocketServiceError_SYS_ERFKILL RemoteSocketServiceError_Sy... type CreateSocketRequest_SocketFamily (line 532) | type CreateSocketRequest_SocketFamily method Enum (line 548) | func (x CreateSocketRequest_SocketFamily) Enum() *CreateSocketRequest_... method String (line 553) | func (x CreateSocketRequest_SocketFamily) String() string { method UnmarshalJSON (line 556) | func (x *CreateSocketRequest_SocketFamily) UnmarshalJSON(data []byte) ... constant CreateSocketRequest_IPv4 (line 535) | CreateSocketRequest_IPv4 CreateSocketRequest_SocketFamily = 1 constant CreateSocketRequest_IPv6 (line 536) | CreateSocketRequest_IPv6 CreateSocketRequest_SocketFamily = 2 type CreateSocketRequest_SocketProtocol (line 565) | type CreateSocketRequest_SocketProtocol method Enum (line 581) | func (x CreateSocketRequest_SocketProtocol) Enum() *CreateSocketReques... method String (line 586) | func (x CreateSocketRequest_SocketProtocol) String() string { method UnmarshalJSON (line 589) | func (x *CreateSocketRequest_SocketProtocol) UnmarshalJSON(data []byte... constant CreateSocketRequest_TCP (line 568) | CreateSocketRequest_TCP CreateSocketRequest_SocketProtocol = 1 constant CreateSocketRequest_UDP (line 569) | CreateSocketRequest_UDP CreateSocketRequest_SocketProtocol = 2 type SocketOption_SocketOptionLevel (line 598) | type SocketOption_SocketOptionLevel method Enum (line 620) | func (x SocketOption_SocketOptionLevel) Enum() *SocketOption_SocketOpt... method String (line 625) | func (x SocketOption_SocketOptionLevel) String() string { method UnmarshalJSON (line 628) | func (x *SocketOption_SocketOptionLevel) UnmarshalJSON(data []byte) er... constant SocketOption_SOCKET_SOL_IP (line 601) | SocketOption_SOCKET_SOL_IP SocketOption_SocketOptionLevel = 0 constant SocketOption_SOCKET_SOL_SOCKET (line 602) | SocketOption_SOCKET_SOL_SOCKET SocketOption_SocketOptionLevel = 1 constant SocketOption_SOCKET_SOL_TCP (line 603) | SocketOption_SOCKET_SOL_TCP SocketOption_SocketOptionLevel = 6 constant SocketOption_SOCKET_SOL_UDP (line 604) | SocketOption_SOCKET_SOL_UDP SocketOption_SocketOptionLevel = 17 type SocketOption_SocketOptionName (line 637) | type SocketOption_SocketOptionName method Enum (line 734) | func (x SocketOption_SocketOptionName) Enum() *SocketOption_SocketOpti... method String (line 739) | func (x SocketOption_SocketOptionName) String() string { method UnmarshalJSON (line 742) | func (x *SocketOption_SocketOptionName) UnmarshalJSON(data []byte) err... constant SocketOption_SOCKET_SO_DEBUG (line 640) | SocketOption_SOCKET_SO_DEBUG SocketOption_SocketOptionName = 1 constant SocketOption_SOCKET_SO_REUSEADDR (line 641) | SocketOption_SOCKET_SO_REUSEADDR SocketOption_SocketOptionName = 2 constant SocketOption_SOCKET_SO_TYPE (line 642) | SocketOption_SOCKET_SO_TYPE SocketOption_SocketOptionName = 3 constant SocketOption_SOCKET_SO_ERROR (line 643) | SocketOption_SOCKET_SO_ERROR SocketOption_SocketOptionName = 4 constant SocketOption_SOCKET_SO_DONTROUTE (line 644) | SocketOption_SOCKET_SO_DONTROUTE SocketOption_SocketOptionName = 5 constant SocketOption_SOCKET_SO_BROADCAST (line 645) | SocketOption_SOCKET_SO_BROADCAST SocketOption_SocketOptionName = 6 constant SocketOption_SOCKET_SO_SNDBUF (line 646) | SocketOption_SOCKET_SO_SNDBUF SocketOption_SocketOptionName = 7 constant SocketOption_SOCKET_SO_RCVBUF (line 647) | SocketOption_SOCKET_SO_RCVBUF SocketOption_SocketOptionName = 8 constant SocketOption_SOCKET_SO_KEEPALIVE (line 648) | SocketOption_SOCKET_SO_KEEPALIVE SocketOption_SocketOptionName = 9 constant SocketOption_SOCKET_SO_OOBINLINE (line 649) | SocketOption_SOCKET_SO_OOBINLINE SocketOption_SocketOptionName = 10 constant SocketOption_SOCKET_SO_LINGER (line 650) | SocketOption_SOCKET_SO_LINGER SocketOption_SocketOptionName = 13 constant SocketOption_SOCKET_SO_RCVTIMEO (line 651) | SocketOption_SOCKET_SO_RCVTIMEO SocketOption_SocketOptionName = 20 constant SocketOption_SOCKET_SO_SNDTIMEO (line 652) | SocketOption_SOCKET_SO_SNDTIMEO SocketOption_SocketOptionName = 21 constant SocketOption_SOCKET_IP_TOS (line 653) | SocketOption_SOCKET_IP_TOS SocketOption_SocketOptionName = 1 constant SocketOption_SOCKET_IP_TTL (line 654) | SocketOption_SOCKET_IP_TTL SocketOption_SocketOptionName = 2 constant SocketOption_SOCKET_IP_HDRINCL (line 655) | SocketOption_SOCKET_IP_HDRINCL SocketOption_SocketOptionName = 3 constant SocketOption_SOCKET_IP_OPTIONS (line 656) | SocketOption_SOCKET_IP_OPTIONS SocketOption_SocketOptionName = 4 constant SocketOption_SOCKET_TCP_NODELAY (line 657) | SocketOption_SOCKET_TCP_NODELAY SocketOption_SocketOptionName = 1 constant SocketOption_SOCKET_TCP_MAXSEG (line 658) | SocketOption_SOCKET_TCP_MAXSEG SocketOption_SocketOptionName = 2 constant SocketOption_SOCKET_TCP_CORK (line 659) | SocketOption_SOCKET_TCP_CORK SocketOption_SocketOptionName = 3 constant SocketOption_SOCKET_TCP_KEEPIDLE (line 660) | SocketOption_SOCKET_TCP_KEEPIDLE SocketOption_SocketOptionName = 4 constant SocketOption_SOCKET_TCP_KEEPINTVL (line 661) | SocketOption_SOCKET_TCP_KEEPINTVL SocketOption_SocketOptionName = 5 constant SocketOption_SOCKET_TCP_KEEPCNT (line 662) | SocketOption_SOCKET_TCP_KEEPCNT SocketOption_SocketOptionName = 6 constant SocketOption_SOCKET_TCP_SYNCNT (line 663) | SocketOption_SOCKET_TCP_SYNCNT SocketOption_SocketOptionName = 7 constant SocketOption_SOCKET_TCP_LINGER2 (line 664) | SocketOption_SOCKET_TCP_LINGER2 SocketOption_SocketOptionName = 8 constant SocketOption_SOCKET_TCP_DEFER_ACCEPT (line 665) | SocketOption_SOCKET_TCP_DEFER_ACCEPT SocketOption_SocketOptionName = 9 constant SocketOption_SOCKET_TCP_WINDOW_CLAMP (line 666) | SocketOption_SOCKET_TCP_WINDOW_CLAMP SocketOption_SocketOptionName = 10 constant SocketOption_SOCKET_TCP_INFO (line 667) | SocketOption_SOCKET_TCP_INFO SocketOption_SocketOptionName = 11 constant SocketOption_SOCKET_TCP_QUICKACK (line 668) | SocketOption_SOCKET_TCP_QUICKACK SocketOption_SocketOptionName = 12 type ShutDownRequest_How (line 751) | type ShutDownRequest_How method Enum (line 770) | func (x ShutDownRequest_How) Enum() *ShutDownRequest_How { method String (line 775) | func (x ShutDownRequest_How) String() string { method UnmarshalJSON (line 778) | func (x *ShutDownRequest_How) UnmarshalJSON(data []byte) error { constant ShutDownRequest_SOCKET_SHUT_RD (line 754) | ShutDownRequest_SOCKET_SHUT_RD ShutDownRequest_How = 1 constant ShutDownRequest_SOCKET_SHUT_WR (line 755) | ShutDownRequest_SOCKET_SHUT_WR ShutDownRequest_How = 2 constant ShutDownRequest_SOCKET_SHUT_RDWR (line 756) | ShutDownRequest_SOCKET_SHUT_RDWR ShutDownRequest_How = 3 type ReceiveRequest_Flags (line 787) | type ReceiveRequest_Flags method Enum (line 803) | func (x ReceiveRequest_Flags) Enum() *ReceiveRequest_Flags { method String (line 808) | func (x ReceiveRequest_Flags) String() string { method UnmarshalJSON (line 811) | func (x *ReceiveRequest_Flags) UnmarshalJSON(data []byte) error { constant ReceiveRequest_MSG_OOB (line 790) | ReceiveRequest_MSG_OOB ReceiveRequest_Flags = 1 constant ReceiveRequest_MSG_PEEK (line 791) | ReceiveRequest_MSG_PEEK ReceiveRequest_Flags = 2 type PollEvent_PollEventFlag (line 820) | type PollEvent_PollEventFlag method Enum (line 872) | func (x PollEvent_PollEventFlag) Enum() *PollEvent_PollEventFlag { method String (line 877) | func (x PollEvent_PollEventFlag) String() string { method UnmarshalJSON (line 880) | func (x *PollEvent_PollEventFlag) UnmarshalJSON(data []byte) error { constant PollEvent_SOCKET_POLLNONE (line 823) | PollEvent_SOCKET_POLLNONE PollEvent_PollEventFlag = 0 constant PollEvent_SOCKET_POLLIN (line 824) | PollEvent_SOCKET_POLLIN PollEvent_PollEventFlag = 1 constant PollEvent_SOCKET_POLLPRI (line 825) | PollEvent_SOCKET_POLLPRI PollEvent_PollEventFlag = 2 constant PollEvent_SOCKET_POLLOUT (line 826) | PollEvent_SOCKET_POLLOUT PollEvent_PollEventFlag = 4 constant PollEvent_SOCKET_POLLERR (line 827) | PollEvent_SOCKET_POLLERR PollEvent_PollEventFlag = 8 constant PollEvent_SOCKET_POLLHUP (line 828) | PollEvent_SOCKET_POLLHUP PollEvent_PollEventFlag = 16 constant PollEvent_SOCKET_POLLNVAL (line 829) | PollEvent_SOCKET_POLLNVAL PollEvent_PollEventFlag = 32 constant PollEvent_SOCKET_POLLRDNORM (line 830) | PollEvent_SOCKET_POLLRDNORM PollEvent_PollEventFlag = 64 constant PollEvent_SOCKET_POLLRDBAND (line 831) | PollEvent_SOCKET_POLLRDBAND PollEvent_PollEventFlag = 128 constant PollEvent_SOCKET_POLLWRNORM (line 832) | PollEvent_SOCKET_POLLWRNORM PollEvent_PollEventFlag = 256 constant PollEvent_SOCKET_POLLWRBAND (line 833) | PollEvent_SOCKET_POLLWRBAND PollEvent_PollEventFlag = 512 constant PollEvent_SOCKET_POLLMSG (line 834) | PollEvent_SOCKET_POLLMSG PollEvent_PollEventFlag = 1024 constant PollEvent_SOCKET_POLLREMOVE (line 835) | PollEvent_SOCKET_POLLREMOVE PollEvent_PollEventFlag = 4096 constant PollEvent_SOCKET_POLLRDHUP (line 836) | PollEvent_SOCKET_POLLRDHUP PollEvent_PollEventFlag = 8192 type ResolveReply_ErrorCode (line 889) | type ResolveReply_ErrorCode method Enum (line 944) | func (x ResolveReply_ErrorCode) Enum() *ResolveReply_ErrorCode { method String (line 949) | func (x ResolveReply_ErrorCode) String() string { method UnmarshalJSON (line 952) | func (x *ResolveReply_ErrorCode) UnmarshalJSON(data []byte) error { constant ResolveReply_SOCKET_EAI_ADDRFAMILY (line 892) | ResolveReply_SOCKET_EAI_ADDRFAMILY ResolveReply_ErrorCode = 1 constant ResolveReply_SOCKET_EAI_AGAIN (line 893) | ResolveReply_SOCKET_EAI_AGAIN ResolveReply_ErrorCode = 2 constant ResolveReply_SOCKET_EAI_BADFLAGS (line 894) | ResolveReply_SOCKET_EAI_BADFLAGS ResolveReply_ErrorCode = 3 constant ResolveReply_SOCKET_EAI_FAIL (line 895) | ResolveReply_SOCKET_EAI_FAIL ResolveReply_ErrorCode = 4 constant ResolveReply_SOCKET_EAI_FAMILY (line 896) | ResolveReply_SOCKET_EAI_FAMILY ResolveReply_ErrorCode = 5 constant ResolveReply_SOCKET_EAI_MEMORY (line 897) | ResolveReply_SOCKET_EAI_MEMORY ResolveReply_ErrorCode = 6 constant ResolveReply_SOCKET_EAI_NODATA (line 898) | ResolveReply_SOCKET_EAI_NODATA ResolveReply_ErrorCode = 7 constant ResolveReply_SOCKET_EAI_NONAME (line 899) | ResolveReply_SOCKET_EAI_NONAME ResolveReply_ErrorCode = 8 constant ResolveReply_SOCKET_EAI_SERVICE (line 900) | ResolveReply_SOCKET_EAI_SERVICE ResolveReply_ErrorCode = 9 constant ResolveReply_SOCKET_EAI_SOCKTYPE (line 901) | ResolveReply_SOCKET_EAI_SOCKTYPE ResolveReply_ErrorCode = 10 constant ResolveReply_SOCKET_EAI_SYSTEM (line 902) | ResolveReply_SOCKET_EAI_SYSTEM ResolveReply_ErrorCode = 11 constant ResolveReply_SOCKET_EAI_BADHINTS (line 903) | ResolveReply_SOCKET_EAI_BADHINTS ResolveReply_ErrorCode = 12 constant ResolveReply_SOCKET_EAI_PROTOCOL (line 904) | ResolveReply_SOCKET_EAI_PROTOCOL ResolveReply_ErrorCode = 13 constant ResolveReply_SOCKET_EAI_OVERFLOW (line 905) | ResolveReply_SOCKET_EAI_OVERFLOW ResolveReply_ErrorCode = 14 constant ResolveReply_SOCKET_EAI_MAX (line 906) | ResolveReply_SOCKET_EAI_MAX ResolveReply_ErrorCode = 15 type RemoteSocketServiceError (line 961) | type RemoteSocketServiceError struct method Reset (line 967) | func (m *RemoteSocketServiceError) Reset() { *m = RemoteSocket... method String (line 968) | func (m *RemoteSocketServiceError) String() string { return proto.Comp... method ProtoMessage (line 969) | func (*RemoteSocketServiceError) ProtoMessage() {} method GetSystemError (line 973) | func (m *RemoteSocketServiceError) GetSystemError() int32 { method GetErrorDetail (line 980) | func (m *RemoteSocketServiceError) GetErrorDetail() string { constant Default_RemoteSocketServiceError_SystemError (line 971) | Default_RemoteSocketServiceError_SystemError int32 = 0 type AddressPort (line 987) | type AddressPort struct method Reset (line 994) | func (m *AddressPort) Reset() { *m = AddressPort{} } method String (line 995) | func (m *AddressPort) String() string { return proto.CompactTextString... method ProtoMessage (line 996) | func (*AddressPort) ProtoMessage() {} method GetPort (line 998) | func (m *AddressPort) GetPort() int32 { method GetPackedAddress (line 1005) | func (m *AddressPort) GetPackedAddress() []byte { method GetHostnameHint (line 1012) | func (m *AddressPort) GetHostnameHint() string { type CreateSocketRequest (line 1019) | type CreateSocketRequest struct method Reset (line 1031) | func (m *CreateSocketRequest) Reset() { *m = CreateSocketReque... method String (line 1032) | func (m *CreateSocketRequest) String() string { return proto.CompactTe... method ProtoMessage (line 1033) | func (*CreateSocketRequest) ProtoMessage() {} method GetFamily (line 1037) | func (m *CreateSocketRequest) GetFamily() CreateSocketRequest_SocketFa... method GetProtocol (line 1044) | func (m *CreateSocketRequest) GetProtocol() CreateSocketRequest_Socket... method GetSocketOptions (line 1051) | func (m *CreateSocketRequest) GetSocketOptions() []*SocketOption { method GetProxyExternalIp (line 1058) | func (m *CreateSocketRequest) GetProxyExternalIp() *AddressPort { method GetListenBacklog (line 1065) | func (m *CreateSocketRequest) GetListenBacklog() int32 { method GetRemoteIp (line 1072) | func (m *CreateSocketRequest) GetRemoteIp() *AddressPort { method GetAppId (line 1079) | func (m *CreateSocketRequest) GetAppId() string { method GetProjectId (line 1086) | func (m *CreateSocketRequest) GetProjectId() int64 { constant Default_CreateSocketRequest_ListenBacklog (line 1035) | Default_CreateSocketRequest_ListenBacklog int32 = 0 type CreateSocketReply (line 1093) | type CreateSocketReply struct method Reset (line 1101) | func (m *CreateSocketReply) Reset() { *m = CreateSocketReply{} } method String (line 1102) | func (m *CreateSocketReply) String() string { return proto.CompactText... method ProtoMessage (line 1103) | func (*CreateSocketReply) ProtoMessage() {} method ExtensionRangeArray (line 1109) | func (*CreateSocketReply) ExtensionRangeArray() []proto.ExtensionRange { method ExtensionMap (line 1112) | func (m *CreateSocketReply) ExtensionMap() map[int32]proto.Extension { method GetSocketDescriptor (line 1119) | func (m *CreateSocketReply) GetSocketDescriptor() string { method GetServerAddress (line 1126) | func (m *CreateSocketReply) GetServerAddress() *AddressPort { method GetProxyExternalIp (line 1133) | func (m *CreateSocketReply) GetProxyExternalIp() *AddressPort { type BindRequest (line 1140) | type BindRequest struct method Reset (line 1146) | func (m *BindRequest) Reset() { *m = BindRequest{} } method String (line 1147) | func (m *BindRequest) String() string { return proto.CompactTextString... method ProtoMessage (line 1148) | func (*BindRequest) ProtoMessage() {} method GetSocketDescriptor (line 1150) | func (m *BindRequest) GetSocketDescriptor() string { method GetProxyExternalIp (line 1157) | func (m *BindRequest) GetProxyExternalIp() *AddressPort { type BindReply (line 1164) | type BindReply struct method Reset (line 1169) | func (m *BindReply) Reset() { *m = BindReply{} } method String (line 1170) | func (m *BindReply) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 1171) | func (*BindReply) ProtoMessage() {} method GetProxyExternalIp (line 1173) | func (m *BindReply) GetProxyExternalIp() *AddressPort { type GetSocketNameRequest (line 1180) | type GetSocketNameRequest struct method Reset (line 1185) | func (m *GetSocketNameRequest) Reset() { *m = GetSocketNameReq... method String (line 1186) | func (m *GetSocketNameRequest) String() string { return proto.CompactT... method ProtoMessage (line 1187) | func (*GetSocketNameRequest) ProtoMessage() {} method GetSocketDescriptor (line 1189) | func (m *GetSocketNameRequest) GetSocketDescriptor() string { type GetSocketNameReply (line 1196) | type GetSocketNameReply struct method Reset (line 1201) | func (m *GetSocketNameReply) Reset() { *m = GetSocketNameReply... method String (line 1202) | func (m *GetSocketNameReply) String() string { return proto.CompactTex... method ProtoMessage (line 1203) | func (*GetSocketNameReply) ProtoMessage() {} method GetProxyExternalIp (line 1205) | func (m *GetSocketNameReply) GetProxyExternalIp() *AddressPort { type GetPeerNameRequest (line 1212) | type GetPeerNameRequest struct method Reset (line 1217) | func (m *GetPeerNameRequest) Reset() { *m = GetPeerNameRequest... method String (line 1218) | func (m *GetPeerNameRequest) String() string { return proto.CompactTex... method ProtoMessage (line 1219) | func (*GetPeerNameRequest) ProtoMessage() {} method GetSocketDescriptor (line 1221) | func (m *GetPeerNameRequest) GetSocketDescriptor() string { type GetPeerNameReply (line 1228) | type GetPeerNameReply struct method Reset (line 1233) | func (m *GetPeerNameReply) Reset() { *m = GetPeerNameReply{} } method String (line 1234) | func (m *GetPeerNameReply) String() string { return proto.CompactTextS... method ProtoMessage (line 1235) | func (*GetPeerNameReply) ProtoMessage() {} method GetPeerIp (line 1237) | func (m *GetPeerNameReply) GetPeerIp() *AddressPort { type SocketOption (line 1244) | type SocketOption struct method Reset (line 1251) | func (m *SocketOption) Reset() { *m = SocketOption{} } method String (line 1252) | func (m *SocketOption) String() string { return proto.CompactTextStrin... method ProtoMessage (line 1253) | func (*SocketOption) ProtoMessage() {} method GetLevel (line 1255) | func (m *SocketOption) GetLevel() SocketOption_SocketOptionLevel { method GetOption (line 1262) | func (m *SocketOption) GetOption() SocketOption_SocketOptionName { method GetValue (line 1269) | func (m *SocketOption) GetValue() []byte { type SetSocketOptionsRequest (line 1276) | type SetSocketOptionsRequest struct method Reset (line 1282) | func (m *SetSocketOptionsRequest) Reset() { *m = SetSocketOpti... method String (line 1283) | func (m *SetSocketOptionsRequest) String() string { return proto.Compa... method ProtoMessage (line 1284) | func (*SetSocketOptionsRequest) ProtoMessage() {} method GetSocketDescriptor (line 1286) | func (m *SetSocketOptionsRequest) GetSocketDescriptor() string { method GetOptions (line 1293) | func (m *SetSocketOptionsRequest) GetOptions() []*SocketOption { type SetSocketOptionsReply (line 1300) | type SetSocketOptionsReply struct method Reset (line 1304) | func (m *SetSocketOptionsReply) Reset() { *m = SetSocketOption... method String (line 1305) | func (m *SetSocketOptionsReply) String() string { return proto.Compact... method ProtoMessage (line 1306) | func (*SetSocketOptionsReply) ProtoMessage() {} type GetSocketOptionsRequest (line 1308) | type GetSocketOptionsRequest struct method Reset (line 1314) | func (m *GetSocketOptionsRequest) Reset() { *m = GetSocketOpti... method String (line 1315) | func (m *GetSocketOptionsRequest) String() string { return proto.Compa... method ProtoMessage (line 1316) | func (*GetSocketOptionsRequest) ProtoMessage() {} method GetSocketDescriptor (line 1318) | func (m *GetSocketOptionsRequest) GetSocketDescriptor() string { method GetOptions (line 1325) | func (m *GetSocketOptionsRequest) GetOptions() []*SocketOption { type GetSocketOptionsReply (line 1332) | type GetSocketOptionsReply struct method Reset (line 1337) | func (m *GetSocketOptionsReply) Reset() { *m = GetSocketOption... method String (line 1338) | func (m *GetSocketOptionsReply) String() string { return proto.Compact... method ProtoMessage (line 1339) | func (*GetSocketOptionsReply) ProtoMessage() {} method GetOptions (line 1341) | func (m *GetSocketOptionsReply) GetOptions() []*SocketOption { type ConnectRequest (line 1348) | type ConnectRequest struct method Reset (line 1355) | func (m *ConnectRequest) Reset() { *m = ConnectRequest{} } method String (line 1356) | func (m *ConnectRequest) String() string { return proto.CompactTextStr... method ProtoMessage (line 1357) | func (*ConnectRequest) ProtoMessage() {} method GetSocketDescriptor (line 1361) | func (m *ConnectRequest) GetSocketDescriptor() string { method GetRemoteIp (line 1368) | func (m *ConnectRequest) GetRemoteIp() *AddressPort { method GetTimeoutSeconds (line 1375) | func (m *ConnectRequest) GetTimeoutSeconds() float64 { constant Default_ConnectRequest_TimeoutSeconds (line 1359) | Default_ConnectRequest_TimeoutSeconds float64 = -1 type ConnectReply (line 1382) | type ConnectReply struct method Reset (line 1388) | func (m *ConnectReply) Reset() { *m = ConnectReply{} } method String (line 1389) | func (m *ConnectReply) String() string { return proto.CompactTextStrin... method ProtoMessage (line 1390) | func (*ConnectReply) ProtoMessage() {} method ExtensionRangeArray (line 1396) | func (*ConnectReply) ExtensionRangeArray() []proto.ExtensionRange { method ExtensionMap (line 1399) | func (m *ConnectReply) ExtensionMap() map[int32]proto.Extension { method GetProxyExternalIp (line 1406) | func (m *ConnectReply) GetProxyExternalIp() *AddressPort { type ListenRequest (line 1413) | type ListenRequest struct method Reset (line 1419) | func (m *ListenRequest) Reset() { *m = ListenRequest{} } method String (line 1420) | func (m *ListenRequest) String() string { return proto.CompactTextStri... method ProtoMessage (line 1421) | func (*ListenRequest) ProtoMessage() {} method GetSocketDescriptor (line 1423) | func (m *ListenRequest) GetSocketDescriptor() string { method GetBacklog (line 1430) | func (m *ListenRequest) GetBacklog() int32 { type ListenReply (line 1437) | type ListenReply struct method Reset (line 1441) | func (m *ListenReply) Reset() { *m = ListenReply{} } method String (line 1442) | func (m *ListenReply) String() string { return proto.CompactTextString... method ProtoMessage (line 1443) | func (*ListenReply) ProtoMessage() {} type AcceptRequest (line 1445) | type AcceptRequest struct method Reset (line 1451) | func (m *AcceptRequest) Reset() { *m = AcceptRequest{} } method String (line 1452) | func (m *AcceptRequest) String() string { return proto.CompactTextStri... method ProtoMessage (line 1453) | func (*AcceptRequest) ProtoMessage() {} method GetSocketDescriptor (line 1457) | func (m *AcceptRequest) GetSocketDescriptor() string { method GetTimeoutSeconds (line 1464) | func (m *AcceptRequest) GetTimeoutSeconds() float64 { constant Default_AcceptRequest_TimeoutSeconds (line 1455) | Default_AcceptRequest_TimeoutSeconds float64 = -1 type AcceptReply (line 1471) | type AcceptReply struct method Reset (line 1477) | func (m *AcceptReply) Reset() { *m = AcceptReply{} } method String (line 1478) | func (m *AcceptReply) String() string { return proto.CompactTextString... method ProtoMessage (line 1479) | func (*AcceptReply) ProtoMessage() {} method GetNewSocketDescriptor (line 1481) | func (m *AcceptReply) GetNewSocketDescriptor() []byte { method GetRemoteAddress (line 1488) | func (m *AcceptReply) GetRemoteAddress() *AddressPort { type ShutDownRequest (line 1495) | type ShutDownRequest struct method Reset (line 1502) | func (m *ShutDownRequest) Reset() { *m = ShutDownRequest{} } method String (line 1503) | func (m *ShutDownRequest) String() string { return proto.CompactTextSt... method ProtoMessage (line 1504) | func (*ShutDownRequest) ProtoMessage() {} method GetSocketDescriptor (line 1506) | func (m *ShutDownRequest) GetSocketDescriptor() string { method GetHow (line 1513) | func (m *ShutDownRequest) GetHow() ShutDownRequest_How { method GetSendOffset (line 1520) | func (m *ShutDownRequest) GetSendOffset() int64 { type ShutDownReply (line 1527) | type ShutDownReply struct method Reset (line 1531) | func (m *ShutDownReply) Reset() { *m = ShutDownReply{} } method String (line 1532) | func (m *ShutDownReply) String() string { return proto.CompactTextStri... method ProtoMessage (line 1533) | func (*ShutDownReply) ProtoMessage() {} type CloseRequest (line 1535) | type CloseRequest struct method Reset (line 1541) | func (m *CloseRequest) Reset() { *m = CloseRequest{} } method String (line 1542) | func (m *CloseRequest) String() string { return proto.CompactTextStrin... method ProtoMessage (line 1543) | func (*CloseRequest) ProtoMessage() {} method GetSocketDescriptor (line 1547) | func (m *CloseRequest) GetSocketDescriptor() string { method GetSendOffset (line 1554) | func (m *CloseRequest) GetSendOffset() int64 { constant Default_CloseRequest_SendOffset (line 1545) | Default_CloseRequest_SendOffset int64 = -1 type CloseReply (line 1561) | type CloseReply struct method Reset (line 1565) | func (m *CloseReply) Reset() { *m = CloseReply{} } method String (line 1566) | func (m *CloseReply) String() string { return proto.CompactTextString(... method ProtoMessage (line 1567) | func (*CloseReply) ProtoMessage() {} type SendRequest (line 1569) | type SendRequest struct method Reset (line 1579) | func (m *SendRequest) Reset() { *m = SendRequest{} } method String (line 1580) | func (m *SendRequest) String() string { return proto.CompactTextString... method ProtoMessage (line 1581) | func (*SendRequest) ProtoMessage() {} method GetSocketDescriptor (line 1586) | func (m *SendRequest) GetSocketDescriptor() string { method GetData (line 1593) | func (m *SendRequest) GetData() []byte { method GetStreamOffset (line 1600) | func (m *SendRequest) GetStreamOffset() int64 { method GetFlags (line 1607) | func (m *SendRequest) GetFlags() int32 { method GetSendTo (line 1614) | func (m *SendRequest) GetSendTo() *AddressPort { method GetTimeoutSeconds (line 1621) | func (m *SendRequest) GetTimeoutSeconds() float64 { constant Default_SendRequest_Flags (line 1583) | Default_SendRequest_Flags int32 = 0 constant Default_SendRequest_TimeoutSeconds (line 1584) | Default_SendRequest_TimeoutSeconds float64 = -1 type SendReply (line 1628) | type SendReply struct method Reset (line 1633) | func (m *SendReply) Reset() { *m = SendReply{} } method String (line 1634) | func (m *SendReply) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 1635) | func (*SendReply) ProtoMessage() {} method GetDataSent (line 1637) | func (m *SendReply) GetDataSent() int32 { type ReceiveRequest (line 1644) | type ReceiveRequest struct method Reset (line 1652) | func (m *ReceiveRequest) Reset() { *m = ReceiveRequest{} } method String (line 1653) | func (m *ReceiveRequest) String() string { return proto.CompactTextStr... method ProtoMessage (line 1654) | func (*ReceiveRequest) ProtoMessage() {} method GetSocketDescriptor (line 1659) | func (m *ReceiveRequest) GetSocketDescriptor() string { method GetDataSize (line 1666) | func (m *ReceiveRequest) GetDataSize() int32 { method GetFlags (line 1673) | func (m *ReceiveRequest) GetFlags() int32 { method GetTimeoutSeconds (line 1680) | func (m *ReceiveRequest) GetTimeoutSeconds() float64 { constant Default_ReceiveRequest_Flags (line 1656) | Default_ReceiveRequest_Flags int32 = 0 constant Default_ReceiveRequest_TimeoutSeconds (line 1657) | Default_ReceiveRequest_TimeoutSeconds float64 = -1 type ReceiveReply (line 1687) | type ReceiveReply struct method Reset (line 1695) | func (m *ReceiveReply) Reset() { *m = ReceiveReply{} } method String (line 1696) | func (m *ReceiveReply) String() string { return proto.CompactTextStrin... method ProtoMessage (line 1697) | func (*ReceiveReply) ProtoMessage() {} method GetStreamOffset (line 1699) | func (m *ReceiveReply) GetStreamOffset() int64 { method GetData (line 1706) | func (m *ReceiveReply) GetData() []byte { method GetReceivedFrom (line 1713) | func (m *ReceiveReply) GetReceivedFrom() *AddressPort { method GetBufferSize (line 1720) | func (m *ReceiveReply) GetBufferSize() int32 { type PollEvent (line 1727) | type PollEvent struct method Reset (line 1734) | func (m *PollEvent) Reset() { *m = PollEvent{} } method String (line 1735) | func (m *PollEvent) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 1736) | func (*PollEvent) ProtoMessage() {} method GetSocketDescriptor (line 1738) | func (m *PollEvent) GetSocketDescriptor() string { method GetRequestedEvents (line 1745) | func (m *PollEvent) GetRequestedEvents() int32 { method GetObservedEvents (line 1752) | func (m *PollEvent) GetObservedEvents() int32 { type PollRequest (line 1759) | type PollRequest struct method Reset (line 1765) | func (m *PollRequest) Reset() { *m = PollRequest{} } method String (line 1766) | func (m *PollRequest) String() string { return proto.CompactTextString... method ProtoMessage (line 1767) | func (*PollRequest) ProtoMessage() {} method GetEvents (line 1771) | func (m *PollRequest) GetEvents() []*PollEvent { method GetTimeoutSeconds (line 1778) | func (m *PollRequest) GetTimeoutSeconds() float64 { constant Default_PollRequest_TimeoutSeconds (line 1769) | Default_PollRequest_TimeoutSeconds float64 = -1 type PollReply (line 1785) | type PollReply struct method Reset (line 1790) | func (m *PollReply) Reset() { *m = PollReply{} } method String (line 1791) | func (m *PollReply) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 1792) | func (*PollReply) ProtoMessage() {} method GetEvents (line 1794) | func (m *PollReply) GetEvents() []*PollEvent { type ResolveRequest (line 1801) | type ResolveRequest struct method Reset (line 1807) | func (m *ResolveRequest) Reset() { *m = ResolveRequest{} } method String (line 1808) | func (m *ResolveRequest) String() string { return proto.CompactTextStr... method ProtoMessage (line 1809) | func (*ResolveRequest) ProtoMessage() {} method GetName (line 1811) | func (m *ResolveRequest) GetName() string { method GetAddressFamilies (line 1818) | func (m *ResolveRequest) GetAddressFamilies() []CreateSocketRequest_So... type ResolveReply (line 1825) | type ResolveReply struct method Reset (line 1832) | func (m *ResolveReply) Reset() { *m = ResolveReply{} } method String (line 1833) | func (m *ResolveReply) String() string { return proto.CompactTextStrin... method ProtoMessage (line 1834) | func (*ResolveReply) ProtoMessage() {} method GetPackedAddress (line 1836) | func (m *ResolveReply) GetPackedAddress() [][]byte { method GetCanonicalName (line 1843) | func (m *ResolveReply) GetCanonicalName() string { method GetAliases (line 1850) | func (m *ResolveReply) GetAliases() []string { function init (line 1857) | func init() { FILE: vendor/google.golang.org/appengine/internal/system/system_service.pb.go type SystemServiceError_ErrorCode (line 30) | type SystemServiceError_ErrorCode method Enum (line 52) | func (x SystemServiceError_ErrorCode) Enum() *SystemServiceError_Error... method String (line 57) | func (x SystemServiceError_ErrorCode) String() string { method UnmarshalJSON (line 60) | func (x *SystemServiceError_ErrorCode) UnmarshalJSON(data []byte) error { constant SystemServiceError_OK (line 33) | SystemServiceError_OK SystemServiceError_ErrorCode = 0 constant SystemServiceError_INTERNAL_ERROR (line 34) | SystemServiceError_INTERNAL_ERROR SystemServiceError_ErrorCode = 1 constant SystemServiceError_BACKEND_REQUIRED (line 35) | SystemServiceError_BACKEND_REQUIRED SystemServiceError_ErrorCode = 2 constant SystemServiceError_LIMIT_REACHED (line 36) | SystemServiceError_LIMIT_REACHED SystemServiceError_ErrorCode = 3 type SystemServiceError (line 69) | type SystemServiceError struct method Reset (line 73) | func (m *SystemServiceError) Reset() { *m = SystemServiceError... method String (line 74) | func (m *SystemServiceError) String() string { return proto.CompactTex... method ProtoMessage (line 75) | func (*SystemServiceError) ProtoMessage() {} type SystemStat (line 77) | type SystemStat struct method Reset (line 91) | func (m *SystemStat) Reset() { *m = SystemStat{} } method String (line 92) | func (m *SystemStat) String() string { return proto.CompactTextString(... method ProtoMessage (line 93) | func (*SystemStat) ProtoMessage() {} method GetCurrent (line 95) | func (m *SystemStat) GetCurrent() float64 { method GetAverage1M (line 102) | func (m *SystemStat) GetAverage1M() float64 { method GetAverage10M (line 109) | func (m *SystemStat) GetAverage10M() float64 { method GetTotal (line 116) | func (m *SystemStat) GetTotal() float64 { method GetRate1M (line 123) | func (m *SystemStat) GetRate1M() float64 { method GetRate10M (line 130) | func (m *SystemStat) GetRate10M() float64 { type GetSystemStatsRequest (line 137) | type GetSystemStatsRequest struct method Reset (line 141) | func (m *GetSystemStatsRequest) Reset() { *m = GetSystemStatsR... method String (line 142) | func (m *GetSystemStatsRequest) String() string { return proto.Compact... method ProtoMessage (line 143) | func (*GetSystemStatsRequest) ProtoMessage() {} type GetSystemStatsResponse (line 145) | type GetSystemStatsResponse struct method Reset (line 153) | func (m *GetSystemStatsResponse) Reset() { *m = GetSystemStats... method String (line 154) | func (m *GetSystemStatsResponse) String() string { return proto.Compac... method ProtoMessage (line 155) | func (*GetSystemStatsResponse) ProtoMessage() {} method GetCpu (line 157) | func (m *GetSystemStatsResponse) GetCpu() *SystemStat { method GetMemory (line 164) | func (m *GetSystemStatsResponse) GetMemory() *SystemStat { type StartBackgroundRequestRequest (line 171) | type StartBackgroundRequestRequest struct method Reset (line 175) | func (m *StartBackgroundRequestRequest) Reset() { *m = StartBa... method String (line 176) | func (m *StartBackgroundRequestRequest) String() string { return proto... method ProtoMessage (line 177) | func (*StartBackgroundRequestRequest) ProtoMessage() {} type StartBackgroundRequestResponse (line 179) | type StartBackgroundRequestResponse struct method Reset (line 186) | func (m *StartBackgroundRequestResponse) Reset() { *m = StartB... method String (line 187) | func (m *StartBackgroundRequestResponse) String() string { return prot... method ProtoMessage (line 188) | func (*StartBackgroundRequestResponse) ProtoMessage() {} method GetRequestId (line 190) | func (m *StartBackgroundRequestResponse) GetRequestId() string { function init (line 197) | func init() { FILE: vendor/google.golang.org/appengine/internal/taskqueue/taskqueue_service.pb.go type TaskQueueServiceError_ErrorCode (line 64) | type TaskQueueServiceError_ErrorCode method Enum (line 163) | func (x TaskQueueServiceError_ErrorCode) Enum() *TaskQueueServiceError... method String (line 168) | func (x TaskQueueServiceError_ErrorCode) String() string { method UnmarshalJSON (line 171) | func (x *TaskQueueServiceError_ErrorCode) UnmarshalJSON(data []byte) e... constant TaskQueueServiceError_OK (line 67) | TaskQueueServiceError_OK TaskQueueServiceEr... constant TaskQueueServiceError_UNKNOWN_QUEUE (line 68) | TaskQueueServiceError_UNKNOWN_QUEUE TaskQueueServiceEr... constant TaskQueueServiceError_TRANSIENT_ERROR (line 69) | TaskQueueServiceError_TRANSIENT_ERROR TaskQueueServiceEr... constant TaskQueueServiceError_INTERNAL_ERROR (line 70) | TaskQueueServiceError_INTERNAL_ERROR TaskQueueServiceEr... constant TaskQueueServiceError_TASK_TOO_LARGE (line 71) | TaskQueueServiceError_TASK_TOO_LARGE TaskQueueServiceEr... constant TaskQueueServiceError_INVALID_TASK_NAME (line 72) | TaskQueueServiceError_INVALID_TASK_NAME TaskQueueServiceEr... constant TaskQueueServiceError_INVALID_QUEUE_NAME (line 73) | TaskQueueServiceError_INVALID_QUEUE_NAME TaskQueueServiceEr... constant TaskQueueServiceError_INVALID_URL (line 74) | TaskQueueServiceError_INVALID_URL TaskQueueServiceEr... constant TaskQueueServiceError_INVALID_QUEUE_RATE (line 75) | TaskQueueServiceError_INVALID_QUEUE_RATE TaskQueueServiceEr... constant TaskQueueServiceError_PERMISSION_DENIED (line 76) | TaskQueueServiceError_PERMISSION_DENIED TaskQueueServiceEr... constant TaskQueueServiceError_TASK_ALREADY_EXISTS (line 77) | TaskQueueServiceError_TASK_ALREADY_EXISTS TaskQueueServiceEr... constant TaskQueueServiceError_TOMBSTONED_TASK (line 78) | TaskQueueServiceError_TOMBSTONED_TASK TaskQueueServiceEr... constant TaskQueueServiceError_INVALID_ETA (line 79) | TaskQueueServiceError_INVALID_ETA TaskQueueServiceEr... constant TaskQueueServiceError_INVALID_REQUEST (line 80) | TaskQueueServiceError_INVALID_REQUEST TaskQueueServiceEr... constant TaskQueueServiceError_UNKNOWN_TASK (line 81) | TaskQueueServiceError_UNKNOWN_TASK TaskQueueServiceEr... constant TaskQueueServiceError_TOMBSTONED_QUEUE (line 82) | TaskQueueServiceError_TOMBSTONED_QUEUE TaskQueueServiceEr... constant TaskQueueServiceError_DUPLICATE_TASK_NAME (line 83) | TaskQueueServiceError_DUPLICATE_TASK_NAME TaskQueueServiceEr... constant TaskQueueServiceError_SKIPPED (line 84) | TaskQueueServiceError_SKIPPED TaskQueueServiceEr... constant TaskQueueServiceError_TOO_MANY_TASKS (line 85) | TaskQueueServiceError_TOO_MANY_TASKS TaskQueueServiceEr... constant TaskQueueServiceError_INVALID_PAYLOAD (line 86) | TaskQueueServiceError_INVALID_PAYLOAD TaskQueueServiceEr... constant TaskQueueServiceError_INVALID_RETRY_PARAMETERS (line 87) | TaskQueueServiceError_INVALID_RETRY_PARAMETERS TaskQueueServiceEr... constant TaskQueueServiceError_INVALID_QUEUE_MODE (line 88) | TaskQueueServiceError_INVALID_QUEUE_MODE TaskQueueServiceEr... constant TaskQueueServiceError_ACL_LOOKUP_ERROR (line 89) | TaskQueueServiceError_ACL_LOOKUP_ERROR TaskQueueServiceEr... constant TaskQueueServiceError_TRANSACTIONAL_REQUEST_TOO_LARGE (line 90) | TaskQueueServiceError_TRANSACTIONAL_REQUEST_TOO_LARGE TaskQueueServiceEr... constant TaskQueueServiceError_INCORRECT_CREATOR_NAME (line 91) | TaskQueueServiceError_INCORRECT_CREATOR_NAME TaskQueueServiceEr... constant TaskQueueServiceError_TASK_LEASE_EXPIRED (line 92) | TaskQueueServiceError_TASK_LEASE_EXPIRED TaskQueueServiceEr... constant TaskQueueServiceError_QUEUE_PAUSED (line 93) | TaskQueueServiceError_QUEUE_PAUSED TaskQueueServiceEr... constant TaskQueueServiceError_INVALID_TAG (line 94) | TaskQueueServiceError_INVALID_TAG TaskQueueServiceEr... constant TaskQueueServiceError_DATASTORE_ERROR (line 97) | TaskQueueServiceError_DATASTORE_ERROR TaskQueueServiceError_ErrorCode = ... type TaskQueueMode_Mode (line 180) | type TaskQueueMode_Mode method Enum (line 196) | func (x TaskQueueMode_Mode) Enum() *TaskQueueMode_Mode { method String (line 201) | func (x TaskQueueMode_Mode) String() string { method UnmarshalJSON (line 204) | func (x *TaskQueueMode_Mode) UnmarshalJSON(data []byte) error { constant TaskQueueMode_PUSH (line 183) | TaskQueueMode_PUSH TaskQueueMode_Mode = 0 constant TaskQueueMode_PULL (line 184) | TaskQueueMode_PULL TaskQueueMode_Mode = 1 type TaskQueueAddRequest_RequestMethod (line 213) | type TaskQueueAddRequest_RequestMethod method Enum (line 238) | func (x TaskQueueAddRequest_RequestMethod) Enum() *TaskQueueAddRequest... method String (line 243) | func (x TaskQueueAddRequest_RequestMethod) String() string { method UnmarshalJSON (line 246) | func (x *TaskQueueAddRequest_RequestMethod) UnmarshalJSON(data []byte)... constant TaskQueueAddRequest_GET (line 216) | TaskQueueAddRequest_GET TaskQueueAddRequest_RequestMethod = 1 constant TaskQueueAddRequest_POST (line 217) | TaskQueueAddRequest_POST TaskQueueAddRequest_RequestMethod = 2 constant TaskQueueAddRequest_HEAD (line 218) | TaskQueueAddRequest_HEAD TaskQueueAddRequest_RequestMethod = 3 constant TaskQueueAddRequest_PUT (line 219) | TaskQueueAddRequest_PUT TaskQueueAddRequest_RequestMethod = 4 constant TaskQueueAddRequest_DELETE (line 220) | TaskQueueAddRequest_DELETE TaskQueueAddRequest_RequestMethod = 5 type TaskQueueQueryTasksResponse_Task_RequestMethod (line 255) | type TaskQueueQueryTasksResponse_Task_RequestMethod method Enum (line 280) | func (x TaskQueueQueryTasksResponse_Task_RequestMethod) Enum() *TaskQu... method String (line 285) | func (x TaskQueueQueryTasksResponse_Task_RequestMethod) String() string { method UnmarshalJSON (line 288) | func (x *TaskQueueQueryTasksResponse_Task_RequestMethod) UnmarshalJSON... constant TaskQueueQueryTasksResponse_Task_GET (line 258) | TaskQueueQueryTasksResponse_Task_GET TaskQueueQueryTasksResponse_Task... constant TaskQueueQueryTasksResponse_Task_POST (line 259) | TaskQueueQueryTasksResponse_Task_POST TaskQueueQueryTasksResponse_Task... constant TaskQueueQueryTasksResponse_Task_HEAD (line 260) | TaskQueueQueryTasksResponse_Task_HEAD TaskQueueQueryTasksResponse_Task... constant TaskQueueQueryTasksResponse_Task_PUT (line 261) | TaskQueueQueryTasksResponse_Task_PUT TaskQueueQueryTasksResponse_Task... constant TaskQueueQueryTasksResponse_Task_DELETE (line 262) | TaskQueueQueryTasksResponse_Task_DELETE TaskQueueQueryTasksResponse_Task... type TaskQueueServiceError (line 297) | type TaskQueueServiceError struct method Reset (line 301) | func (m *TaskQueueServiceError) Reset() { *m = TaskQueueServic... method String (line 302) | func (m *TaskQueueServiceError) String() string { return proto.Compact... method ProtoMessage (line 303) | func (*TaskQueueServiceError) ProtoMessage() {} type TaskPayload (line 305) | type TaskPayload struct method Reset (line 310) | func (m *TaskPayload) Reset() { *m = TaskPayload{} } method String (line 311) | func (m *TaskPayload) String() string { return proto.CompactTextString... method ProtoMessage (line 312) | func (*TaskPayload) ProtoMessage() {} method Marshal (line 314) | func (m *TaskPayload) Marshal() ([]byte, error) { method Unmarshal (line 317) | func (m *TaskPayload) Unmarshal(buf []byte) error { method MarshalJSON (line 320) | func (m *TaskPayload) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 323) | func (m *TaskPayload) UnmarshalJSON(buf []byte) error { method ExtensionRangeArray (line 335) | func (*TaskPayload) ExtensionRangeArray() []proto.ExtensionRange { method ExtensionMap (line 338) | func (m *TaskPayload) ExtensionMap() map[int32]proto.Extension { type TaskQueueRetryParameters (line 345) | type TaskQueueRetryParameters struct method Reset (line 354) | func (m *TaskQueueRetryParameters) Reset() { *m = TaskQueueRet... method String (line 355) | func (m *TaskQueueRetryParameters) String() string { return proto.Comp... method ProtoMessage (line 356) | func (*TaskQueueRetryParameters) ProtoMessage() {} method GetRetryLimit (line 362) | func (m *TaskQueueRetryParameters) GetRetryLimit() int32 { method GetAgeLimitSec (line 369) | func (m *TaskQueueRetryParameters) GetAgeLimitSec() int64 { method GetMinBackoffSec (line 376) | func (m *TaskQueueRetryParameters) GetMinBackoffSec() float64 { method GetMaxBackoffSec (line 383) | func (m *TaskQueueRetryParameters) GetMaxBackoffSec() float64 { method GetMaxDoublings (line 390) | func (m *TaskQueueRetryParameters) GetMaxDoublings() int32 { constant Default_TaskQueueRetryParameters_MinBackoffSec (line 358) | Default_TaskQueueRetryParameters_MinBackoffSec float64 = 0.1 constant Default_TaskQueueRetryParameters_MaxBackoffSec (line 359) | Default_TaskQueueRetryParameters_MaxBackoffSec float64 = 3600 constant Default_TaskQueueRetryParameters_MaxDoublings (line 360) | Default_TaskQueueRetryParameters_MaxDoublings int32 = 16 type TaskQueueAcl (line 397) | type TaskQueueAcl struct method Reset (line 403) | func (m *TaskQueueAcl) Reset() { *m = TaskQueueAcl{} } method String (line 404) | func (m *TaskQueueAcl) String() string { return proto.CompactTextStrin... method ProtoMessage (line 405) | func (*TaskQueueAcl) ProtoMessage() {} method GetUserEmail (line 407) | func (m *TaskQueueAcl) GetUserEmail() [][]byte { method GetWriterEmail (line 414) | func (m *TaskQueueAcl) GetWriterEmail() [][]byte { type TaskQueueHttpHeader (line 421) | type TaskQueueHttpHeader struct method Reset (line 427) | func (m *TaskQueueHttpHeader) Reset() { *m = TaskQueueHttpHead... method String (line 428) | func (m *TaskQueueHttpHeader) String() string { return proto.CompactTe... method ProtoMessage (line 429) | func (*TaskQueueHttpHeader) ProtoMessage() {} method GetKey (line 431) | func (m *TaskQueueHttpHeader) GetKey() []byte { method GetValue (line 438) | func (m *TaskQueueHttpHeader) GetValue() []byte { type TaskQueueMode (line 445) | type TaskQueueMode struct method Reset (line 449) | func (m *TaskQueueMode) Reset() { *m = TaskQueueMode{} } method String (line 450) | func (m *TaskQueueMode) String() string { return proto.CompactTextStri... method ProtoMessage (line 451) | func (*TaskQueueMode) ProtoMessage() {} type TaskQueueAddRequest (line 453) | type TaskQueueAddRequest struct method Reset (line 472) | func (m *TaskQueueAddRequest) Reset() { *m = TaskQueueAddReque... method String (line 473) | func (m *TaskQueueAddRequest) String() string { return proto.CompactTe... method ProtoMessage (line 474) | func (*TaskQueueAddRequest) ProtoMessage() {} method GetQueueName (line 479) | func (m *TaskQueueAddRequest) GetQueueName() []byte { method GetTaskName (line 486) | func (m *TaskQueueAddRequest) GetTaskName() []byte { method GetEtaUsec (line 493) | func (m *TaskQueueAddRequest) GetEtaUsec() int64 { method GetMethod (line 500) | func (m *TaskQueueAddRequest) GetMethod() TaskQueueAddRequest_RequestM... method GetUrl (line 507) | func (m *TaskQueueAddRequest) GetUrl() []byte { method GetHeader (line 514) | func (m *TaskQueueAddRequest) GetHeader() []*TaskQueueAddRequest_Header { method GetBody (line 521) | func (m *TaskQueueAddRequest) GetBody() []byte { method GetTransaction (line 528) | func (m *TaskQueueAddRequest) GetTransaction() *appengine.Transaction { method GetAppId (line 535) | func (m *TaskQueueAddRequest) GetAppId() []byte { method GetCrontimetable (line 542) | func (m *TaskQueueAddRequest) GetCrontimetable() *TaskQueueAddRequest_... method GetDescription (line 549) | func (m *TaskQueueAddRequest) GetDescription() []byte { method GetPayload (line 556) | func (m *TaskQueueAddRequest) GetPayload() *TaskPayload { method GetRetryParameters (line 563) | func (m *TaskQueueAddRequest) GetRetryParameters() *TaskQueueRetryPara... method GetMode (line 570) | func (m *TaskQueueAddRequest) GetMode() TaskQueueMode_Mode { method GetTag (line 577) | func (m *TaskQueueAddRequest) GetTag() []byte { constant Default_TaskQueueAddRequest_Method (line 476) | Default_TaskQueueAddRequest_Method TaskQueueAddRequest_RequestMethod = T... constant Default_TaskQueueAddRequest_Mode (line 477) | Default_TaskQueueAddRequest_Mode TaskQueueMode_Mode = TaskQueueMode_PUSH type TaskQueueAddRequest_Header (line 584) | type TaskQueueAddRequest_Header struct method Reset (line 590) | func (m *TaskQueueAddRequest_Header) Reset() { *m = TaskQueueA... method String (line 591) | func (m *TaskQueueAddRequest_Header) String() string { return proto.Co... method ProtoMessage (line 592) | func (*TaskQueueAddRequest_Header) ProtoMessage() {} method GetKey (line 594) | func (m *TaskQueueAddRequest_Header) GetKey() []byte { method GetValue (line 601) | func (m *TaskQueueAddRequest_Header) GetValue() []byte { type TaskQueueAddRequest_CronTimetable (line 608) | type TaskQueueAddRequest_CronTimetable struct method Reset (line 614) | func (m *TaskQueueAddRequest_CronTimetable) Reset() { *m = Tas... method String (line 615) | func (m *TaskQueueAddRequest_CronTimetable) String() string { return p... method ProtoMessage (line 616) | func (*TaskQueueAddRequest_CronTimetable) ProtoMessage() {} method GetSchedule (line 618) | func (m *TaskQueueAddRequest_CronTimetable) GetSchedule() []byte { method GetTimezone (line 625) | func (m *TaskQueueAddRequest_CronTimetable) GetTimezone() []byte { type TaskQueueAddResponse (line 632) | type TaskQueueAddResponse struct method Reset (line 637) | func (m *TaskQueueAddResponse) Reset() { *m = TaskQueueAddResp... method String (line 638) | func (m *TaskQueueAddResponse) String() string { return proto.CompactT... method ProtoMessage (line 639) | func (*TaskQueueAddResponse) ProtoMessage() {} method GetChosenTaskName (line 641) | func (m *TaskQueueAddResponse) GetChosenTaskName() []byte { type TaskQueueBulkAddRequest (line 648) | type TaskQueueBulkAddRequest struct method Reset (line 653) | func (m *TaskQueueBulkAddRequest) Reset() { *m = TaskQueueBulk... method String (line 654) | func (m *TaskQueueBulkAddRequest) String() string { return proto.Compa... method ProtoMessage (line 655) | func (*TaskQueueBulkAddRequest) ProtoMessage() {} method GetAddRequest (line 657) | func (m *TaskQueueBulkAddRequest) GetAddRequest() []*TaskQueueAddReque... type TaskQueueBulkAddResponse (line 664) | type TaskQueueBulkAddResponse struct method Reset (line 669) | func (m *TaskQueueBulkAddResponse) Reset() { *m = TaskQueueBul... method String (line 670) | func (m *TaskQueueBulkAddResponse) String() string { return proto.Comp... method ProtoMessage (line 671) | func (*TaskQueueBulkAddResponse) ProtoMessage() {} method GetTaskresult (line 673) | func (m *TaskQueueBulkAddResponse) GetTaskresult() []*TaskQueueBulkAdd... type TaskQueueBulkAddResponse_TaskResult (line 680) | type TaskQueueBulkAddResponse_TaskResult struct method Reset (line 686) | func (m *TaskQueueBulkAddResponse_TaskResult) Reset() { *m = T... method String (line 687) | func (m *TaskQueueBulkAddResponse_TaskResult) String() string { return... method ProtoMessage (line 688) | func (*TaskQueueBulkAddResponse_TaskResult) ProtoMessage() {} method GetResult (line 690) | func (m *TaskQueueBulkAddResponse_TaskResult) GetResult() TaskQueueSer... method GetChosenTaskName (line 697) | func (m *TaskQueueBulkAddResponse_TaskResult) GetChosenTaskName() []by... type TaskQueueDeleteRequest (line 704) | type TaskQueueDeleteRequest struct method Reset (line 711) | func (m *TaskQueueDeleteRequest) Reset() { *m = TaskQueueDelet... method String (line 712) | func (m *TaskQueueDeleteRequest) String() string { return proto.Compac... method ProtoMessage (line 713) | func (*TaskQueueDeleteRequest) ProtoMessage() {} method GetQueueName (line 715) | func (m *TaskQueueDeleteRequest) GetQueueName() []byte { method GetTaskName (line 722) | func (m *TaskQueueDeleteRequest) GetTaskName() [][]byte { method GetAppId (line 729) | func (m *TaskQueueDeleteRequest) GetAppId() []byte { type TaskQueueDeleteResponse (line 736) | type TaskQueueDeleteResponse struct method Reset (line 741) | func (m *TaskQueueDeleteResponse) Reset() { *m = TaskQueueDele... method String (line 742) | func (m *TaskQueueDeleteResponse) String() string { return proto.Compa... method ProtoMessage (line 743) | func (*TaskQueueDeleteResponse) ProtoMessage() {} method GetResult (line 745) | func (m *TaskQueueDeleteResponse) GetResult() []TaskQueueServiceError_... type TaskQueueForceRunRequest (line 752) | type TaskQueueForceRunRequest struct method Reset (line 759) | func (m *TaskQueueForceRunRequest) Reset() { *m = TaskQueueFor... method String (line 760) | func (m *TaskQueueForceRunRequest) String() string { return proto.Comp... method ProtoMessage (line 761) | func (*TaskQueueForceRunRequest) ProtoMessage() {} method GetAppId (line 763) | func (m *TaskQueueForceRunRequest) GetAppId() []byte { method GetQueueName (line 770) | func (m *TaskQueueForceRunRequest) GetQueueName() []byte { method GetTaskName (line 777) | func (m *TaskQueueForceRunRequest) GetTaskName() []byte { type TaskQueueForceRunResponse (line 784) | type TaskQueueForceRunResponse struct method Reset (line 789) | func (m *TaskQueueForceRunResponse) Reset() { *m = TaskQueueFo... method String (line 790) | func (m *TaskQueueForceRunResponse) String() string { return proto.Com... method ProtoMessage (line 791) | func (*TaskQueueForceRunResponse) ProtoMessage() {} method GetResult (line 793) | func (m *TaskQueueForceRunResponse) GetResult() TaskQueueServiceError_... type TaskQueueUpdateQueueRequest (line 800) | type TaskQueueUpdateQueueRequest struct method Reset (line 814) | func (m *TaskQueueUpdateQueueRequest) Reset() { *m = TaskQueue... method String (line 815) | func (m *TaskQueueUpdateQueueRequest) String() string { return proto.C... method ProtoMessage (line 816) | func (*TaskQueueUpdateQueueRequest) ProtoMessage() {} method GetAppId (line 820) | func (m *TaskQueueUpdateQueueRequest) GetAppId() []byte { method GetQueueName (line 827) | func (m *TaskQueueUpdateQueueRequest) GetQueueName() []byte { method GetBucketRefillPerSecond (line 834) | func (m *TaskQueueUpdateQueueRequest) GetBucketRefillPerSecond() float... method GetBucketCapacity (line 841) | func (m *TaskQueueUpdateQueueRequest) GetBucketCapacity() int32 { method GetUserSpecifiedRate (line 848) | func (m *TaskQueueUpdateQueueRequest) GetUserSpecifiedRate() string { method GetRetryParameters (line 855) | func (m *TaskQueueUpdateQueueRequest) GetRetryParameters() *TaskQueueR... method GetMaxConcurrentRequests (line 862) | func (m *TaskQueueUpdateQueueRequest) GetMaxConcurrentRequests() int32 { method GetMode (line 869) | func (m *TaskQueueUpdateQueueRequest) GetMode() TaskQueueMode_Mode { method GetAcl (line 876) | func (m *TaskQueueUpdateQueueRequest) GetAcl() *TaskQueueAcl { method GetHeaderOverride (line 883) | func (m *TaskQueueUpdateQueueRequest) GetHeaderOverride() []*TaskQueue... constant Default_TaskQueueUpdateQueueRequest_Mode (line 818) | Default_TaskQueueUpdateQueueRequest_Mode TaskQueueMode_Mode = TaskQueueM... type TaskQueueUpdateQueueResponse (line 890) | type TaskQueueUpdateQueueResponse struct method Reset (line 894) | func (m *TaskQueueUpdateQueueResponse) Reset() { *m = TaskQueu... method String (line 895) | func (m *TaskQueueUpdateQueueResponse) String() string { return proto.... method ProtoMessage (line 896) | func (*TaskQueueUpdateQueueResponse) ProtoMessage() {} type TaskQueueFetchQueuesRequest (line 898) | type TaskQueueFetchQueuesRequest struct method Reset (line 904) | func (m *TaskQueueFetchQueuesRequest) Reset() { *m = TaskQueue... method String (line 905) | func (m *TaskQueueFetchQueuesRequest) String() string { return proto.C... method ProtoMessage (line 906) | func (*TaskQueueFetchQueuesRequest) ProtoMessage() {} method GetAppId (line 908) | func (m *TaskQueueFetchQueuesRequest) GetAppId() []byte { method GetMaxRows (line 915) | func (m *TaskQueueFetchQueuesRequest) GetMaxRows() int32 { type TaskQueueFetchQueuesResponse (line 922) | type TaskQueueFetchQueuesResponse struct method Reset (line 927) | func (m *TaskQueueFetchQueuesResponse) Reset() { *m = TaskQueu... method String (line 928) | func (m *TaskQueueFetchQueuesResponse) String() string { return proto.... method ProtoMessage (line 929) | func (*TaskQueueFetchQueuesResponse) ProtoMessage() {} method GetQueue (line 931) | func (m *TaskQueueFetchQueuesResponse) GetQueue() []*TaskQueueFetchQue... type TaskQueueFetchQueuesResponse_Queue (line 938) | type TaskQueueFetchQueuesResponse_Queue struct method Reset (line 953) | func (m *TaskQueueFetchQueuesResponse_Queue) Reset() { *m = Ta... method String (line 954) | func (m *TaskQueueFetchQueuesResponse_Queue) String() string { return ... method ProtoMessage (line 955) | func (*TaskQueueFetchQueuesResponse_Queue) ProtoMessage() {} method GetQueueName (line 961) | func (m *TaskQueueFetchQueuesResponse_Queue) GetQueueName() []byte { method GetBucketRefillPerSecond (line 968) | func (m *TaskQueueFetchQueuesResponse_Queue) GetBucketRefillPerSecond(... method GetBucketCapacity (line 975) | func (m *TaskQueueFetchQueuesResponse_Queue) GetBucketCapacity() float... method GetUserSpecifiedRate (line 982) | func (m *TaskQueueFetchQueuesResponse_Queue) GetUserSpecifiedRate() st... method GetPaused (line 989) | func (m *TaskQueueFetchQueuesResponse_Queue) GetPaused() bool { method GetRetryParameters (line 996) | func (m *TaskQueueFetchQueuesResponse_Queue) GetRetryParameters() *Tas... method GetMaxConcurrentRequests (line 1003) | func (m *TaskQueueFetchQueuesResponse_Queue) GetMaxConcurrentRequests(... method GetMode (line 1010) | func (m *TaskQueueFetchQueuesResponse_Queue) GetMode() TaskQueueMode_M... method GetAcl (line 1017) | func (m *TaskQueueFetchQueuesResponse_Queue) GetAcl() *TaskQueueAcl { method GetHeaderOverride (line 1024) | func (m *TaskQueueFetchQueuesResponse_Queue) GetHeaderOverride() []*Ta... method GetCreatorName (line 1031) | func (m *TaskQueueFetchQueuesResponse_Queue) GetCreatorName() string { constant Default_TaskQueueFetchQueuesResponse_Queue_Paused (line 957) | Default_TaskQueueFetchQueuesResponse_Queue_Paused bool = false constant Default_TaskQueueFetchQueuesResponse_Queue_Mode (line 958) | Default_TaskQueueFetchQueuesResponse_Queue_Mode TaskQueueMode_Mode = Tas... constant Default_TaskQueueFetchQueuesResponse_Queue_CreatorName (line 959) | Default_TaskQueueFetchQueuesResponse_Queue_CreatorName string = "apphost... type TaskQueueFetchQueueStatsRequest (line 1038) | type TaskQueueFetchQueueStatsRequest struct method Reset (line 1045) | func (m *TaskQueueFetchQueueStatsRequest) Reset() { *m = TaskQ... method String (line 1046) | func (m *TaskQueueFetchQueueStatsRequest) String() string { return pro... method ProtoMessage (line 1047) | func (*TaskQueueFetchQueueStatsRequest) ProtoMessage() {} method GetAppId (line 1051) | func (m *TaskQueueFetchQueueStatsRequest) GetAppId() []byte { method GetQueueName (line 1058) | func (m *TaskQueueFetchQueueStatsRequest) GetQueueName() [][]byte { method GetMaxNumTasks (line 1065) | func (m *TaskQueueFetchQueueStatsRequest) GetMaxNumTasks() int32 { constant Default_TaskQueueFetchQueueStatsRequest_MaxNumTasks (line 1049) | Default_TaskQueueFetchQueueStatsRequest_MaxNumTasks int32 = 0 type TaskQueueScannerQueueInfo (line 1072) | type TaskQueueScannerQueueInfo struct method Reset (line 1081) | func (m *TaskQueueScannerQueueInfo) Reset() { *m = TaskQueueSc... method String (line 1082) | func (m *TaskQueueScannerQueueInfo) String() string { return proto.Com... method ProtoMessage (line 1083) | func (*TaskQueueScannerQueueInfo) ProtoMessage() {} method GetExecutedLastMinute (line 1085) | func (m *TaskQueueScannerQueueInfo) GetExecutedLastMinute() int64 { method GetExecutedLastHour (line 1092) | func (m *TaskQueueScannerQueueInfo) GetExecutedLastHour() int64 { method GetSamplingDurationSeconds (line 1099) | func (m *TaskQueueScannerQueueInfo) GetSamplingDurationSeconds() float... method GetRequestsInFlight (line 1106) | func (m *TaskQueueScannerQueueInfo) GetRequestsInFlight() int32 { method GetEnforcedRate (line 1113) | func (m *TaskQueueScannerQueueInfo) GetEnforcedRate() float64 { type TaskQueueFetchQueueStatsResponse (line 1120) | type TaskQueueFetchQueueStatsResponse struct method Reset (line 1125) | func (m *TaskQueueFetchQueueStatsResponse) Reset() { *m = Task... method String (line 1126) | func (m *TaskQueueFetchQueueStatsResponse) String() string { return pr... method ProtoMessage (line 1127) | func (*TaskQueueFetchQueueStatsResponse) ProtoMessage() {} method GetQueuestats (line 1129) | func (m *TaskQueueFetchQueueStatsResponse) GetQueuestats() []*TaskQueu... type TaskQueueFetchQueueStatsResponse_QueueStats (line 1136) | type TaskQueueFetchQueueStatsResponse_QueueStats struct method Reset (line 1143) | func (m *TaskQueueFetchQueueStatsResponse_QueueStats) Reset() { method String (line 1146) | func (m *TaskQueueFetchQueueStatsResponse_QueueStats) String() string { method ProtoMessage (line 1149) | func (*TaskQueueFetchQueueStatsResponse_QueueStats) ProtoMessage() {} method GetNumTasks (line 1151) | func (m *TaskQueueFetchQueueStatsResponse_QueueStats) GetNumTasks() in... method GetOldestEtaUsec (line 1158) | func (m *TaskQueueFetchQueueStatsResponse_QueueStats) GetOldestEtaUsec... method GetScannerInfo (line 1165) | func (m *TaskQueueFetchQueueStatsResponse_QueueStats) GetScannerInfo()... type TaskQueuePauseQueueRequest (line 1172) | type TaskQueuePauseQueueRequest struct method Reset (line 1179) | func (m *TaskQueuePauseQueueRequest) Reset() { *m = TaskQueueP... method String (line 1180) | func (m *TaskQueuePauseQueueRequest) String() string { return proto.Co... method ProtoMessage (line 1181) | func (*TaskQueuePauseQueueRequest) ProtoMessage() {} method GetAppId (line 1183) | func (m *TaskQueuePauseQueueRequest) GetAppId() []byte { method GetQueueName (line 1190) | func (m *TaskQueuePauseQueueRequest) GetQueueName() []byte { method GetPause (line 1197) | func (m *TaskQueuePauseQueueRequest) GetPause() bool { type TaskQueuePauseQueueResponse (line 1204) | type TaskQueuePauseQueueResponse struct method Reset (line 1208) | func (m *TaskQueuePauseQueueResponse) Reset() { *m = TaskQueue... method String (line 1209) | func (m *TaskQueuePauseQueueResponse) String() string { return proto.C... method ProtoMessage (line 1210) | func (*TaskQueuePauseQueueResponse) ProtoMessage() {} type TaskQueuePurgeQueueRequest (line 1212) | type TaskQueuePurgeQueueRequest struct method Reset (line 1218) | func (m *TaskQueuePurgeQueueRequest) Reset() { *m = TaskQueueP... method String (line 1219) | func (m *TaskQueuePurgeQueueRequest) String() string { return proto.Co... method ProtoMessage (line 1220) | func (*TaskQueuePurgeQueueRequest) ProtoMessage() {} method GetAppId (line 1222) | func (m *TaskQueuePurgeQueueRequest) GetAppId() []byte { method GetQueueName (line 1229) | func (m *TaskQueuePurgeQueueRequest) GetQueueName() []byte { type TaskQueuePurgeQueueResponse (line 1236) | type TaskQueuePurgeQueueResponse struct method Reset (line 1240) | func (m *TaskQueuePurgeQueueResponse) Reset() { *m = TaskQueue... method String (line 1241) | func (m *TaskQueuePurgeQueueResponse) String() string { return proto.C... method ProtoMessage (line 1242) | func (*TaskQueuePurgeQueueResponse) ProtoMessage() {} type TaskQueueDeleteQueueRequest (line 1244) | type TaskQueueDeleteQueueRequest struct method Reset (line 1250) | func (m *TaskQueueDeleteQueueRequest) Reset() { *m = TaskQueue... method String (line 1251) | func (m *TaskQueueDeleteQueueRequest) String() string { return proto.C... method ProtoMessage (line 1252) | func (*TaskQueueDeleteQueueRequest) ProtoMessage() {} method GetAppId (line 1254) | func (m *TaskQueueDeleteQueueRequest) GetAppId() []byte { method GetQueueName (line 1261) | func (m *TaskQueueDeleteQueueRequest) GetQueueName() []byte { type TaskQueueDeleteQueueResponse (line 1268) | type TaskQueueDeleteQueueResponse struct method Reset (line 1272) | func (m *TaskQueueDeleteQueueResponse) Reset() { *m = TaskQueu... method String (line 1273) | func (m *TaskQueueDeleteQueueResponse) String() string { return proto.... method ProtoMessage (line 1274) | func (*TaskQueueDeleteQueueResponse) ProtoMessage() {} type TaskQueueDeleteGroupRequest (line 1276) | type TaskQueueDeleteGroupRequest struct method Reset (line 1281) | func (m *TaskQueueDeleteGroupRequest) Reset() { *m = TaskQueue... method String (line 1282) | func (m *TaskQueueDeleteGroupRequest) String() string { return proto.C... method ProtoMessage (line 1283) | func (*TaskQueueDeleteGroupRequest) ProtoMessage() {} method GetAppId (line 1285) | func (m *TaskQueueDeleteGroupRequest) GetAppId() []byte { type TaskQueueDeleteGroupResponse (line 1292) | type TaskQueueDeleteGroupResponse struct method Reset (line 1296) | func (m *TaskQueueDeleteGroupResponse) Reset() { *m = TaskQueu... method String (line 1297) | func (m *TaskQueueDeleteGroupResponse) String() string { return proto.... method ProtoMessage (line 1298) | func (*TaskQueueDeleteGroupResponse) ProtoMessage() {} type TaskQueueQueryTasksRequest (line 1300) | type TaskQueueQueryTasksRequest struct method Reset (line 1310) | func (m *TaskQueueQueryTasksRequest) Reset() { *m = TaskQueueQ... method String (line 1311) | func (m *TaskQueueQueryTasksRequest) String() string { return proto.Co... method ProtoMessage (line 1312) | func (*TaskQueueQueryTasksRequest) ProtoMessage() {} method GetAppId (line 1316) | func (m *TaskQueueQueryTasksRequest) GetAppId() []byte { method GetQueueName (line 1323) | func (m *TaskQueueQueryTasksRequest) GetQueueName() []byte { method GetStartTaskName (line 1330) | func (m *TaskQueueQueryTasksRequest) GetStartTaskName() []byte { method GetStartEtaUsec (line 1337) | func (m *TaskQueueQueryTasksRequest) GetStartEtaUsec() int64 { method GetStartTag (line 1344) | func (m *TaskQueueQueryTasksRequest) GetStartTag() []byte { method GetMaxRows (line 1351) | func (m *TaskQueueQueryTasksRequest) GetMaxRows() int32 { constant Default_TaskQueueQueryTasksRequest_MaxRows (line 1314) | Default_TaskQueueQueryTasksRequest_MaxRows int32 = 1 type TaskQueueQueryTasksResponse (line 1358) | type TaskQueueQueryTasksResponse struct method Reset (line 1363) | func (m *TaskQueueQueryTasksResponse) Reset() { *m = TaskQueue... method String (line 1364) | func (m *TaskQueueQueryTasksResponse) String() string { return proto.C... method ProtoMessage (line 1365) | func (*TaskQueueQueryTasksResponse) ProtoMessage() {} method GetTask (line 1367) | func (m *TaskQueueQueryTasksResponse) GetTask() []*TaskQueueQueryTasks... type TaskQueueQueryTasksResponse_Task (line 1374) | type TaskQueueQueryTasksResponse_Task struct method Reset (line 1395) | func (m *TaskQueueQueryTasksResponse_Task) Reset() { *m = Task... method String (line 1396) | func (m *TaskQueueQueryTasksResponse_Task) String() string { return pr... method ProtoMessage (line 1397) | func (*TaskQueueQueryTasksResponse_Task) ProtoMessage() {} method GetTaskName (line 1402) | func (m *TaskQueueQueryTasksResponse_Task) GetTaskName() []byte { method GetEtaUsec (line 1409) | func (m *TaskQueueQueryTasksResponse_Task) GetEtaUsec() int64 { method GetUrl (line 1416) | func (m *TaskQueueQueryTasksResponse_Task) GetUrl() []byte { method GetMethod (line 1423) | func (m *TaskQueueQueryTasksResponse_Task) GetMethod() TaskQueueQueryT... method GetRetryCount (line 1430) | func (m *TaskQueueQueryTasksResponse_Task) GetRetryCount() int32 { method GetHeader (line 1437) | func (m *TaskQueueQueryTasksResponse_Task) GetHeader() []*TaskQueueQue... method GetBodySize (line 1444) | func (m *TaskQueueQueryTasksResponse_Task) GetBodySize() int32 { method GetBody (line 1451) | func (m *TaskQueueQueryTasksResponse_Task) GetBody() []byte { method GetCreationTimeUsec (line 1458) | func (m *TaskQueueQueryTasksResponse_Task) GetCreationTimeUsec() int64 { method GetCrontimetable (line 1465) | func (m *TaskQueueQueryTasksResponse_Task) GetCrontimetable() *TaskQue... method GetRunlog (line 1472) | func (m *TaskQueueQueryTasksResponse_Task) GetRunlog() *TaskQueueQuery... method GetDescription (line 1479) | func (m *TaskQueueQueryTasksResponse_Task) GetDescription() []byte { method GetPayload (line 1486) | func (m *TaskQueueQueryTasksResponse_Task) GetPayload() *TaskPayload { method GetRetryParameters (line 1493) | func (m *TaskQueueQueryTasksResponse_Task) GetRetryParameters() *TaskQ... method GetFirstTryUsec (line 1500) | func (m *TaskQueueQueryTasksResponse_Task) GetFirstTryUsec() int64 { method GetTag (line 1507) | func (m *TaskQueueQueryTasksResponse_Task) GetTag() []byte { method GetExecutionCount (line 1514) | func (m *TaskQueueQueryTasksResponse_Task) GetExecutionCount() int32 { constant Default_TaskQueueQueryTasksResponse_Task_RetryCount (line 1399) | Default_TaskQueueQueryTasksResponse_Task_RetryCount int32 = 0 constant Default_TaskQueueQueryTasksResponse_Task_ExecutionCount (line 1400) | Default_TaskQueueQueryTasksResponse_Task_ExecutionCount int32 = 0 type TaskQueueQueryTasksResponse_Task_Header (line 1521) | type TaskQueueQueryTasksResponse_Task_Header struct method Reset (line 1527) | func (m *TaskQueueQueryTasksResponse_Task_Header) Reset() { method String (line 1530) | func (m *TaskQueueQueryTasksResponse_Task_Header) String() string { re... method ProtoMessage (line 1531) | func (*TaskQueueQueryTasksResponse_Task_Header) ProtoMessage() {} method GetKey (line 1533) | func (m *TaskQueueQueryTasksResponse_Task_Header) GetKey() []byte { method GetValue (line 1540) | func (m *TaskQueueQueryTasksResponse_Task_Header) GetValue() []byte { type TaskQueueQueryTasksResponse_Task_CronTimetable (line 1547) | type TaskQueueQueryTasksResponse_Task_CronTimetable struct method Reset (line 1553) | func (m *TaskQueueQueryTasksResponse_Task_CronTimetable) Reset() { method String (line 1556) | func (m *TaskQueueQueryTasksResponse_Task_CronTimetable) String() stri... method ProtoMessage (line 1559) | func (*TaskQueueQueryTasksResponse_Task_CronTimetable) ProtoMessage() {} method GetSchedule (line 1561) | func (m *TaskQueueQueryTasksResponse_Task_CronTimetable) GetSchedule()... method GetTimezone (line 1568) | func (m *TaskQueueQueryTasksResponse_Task_CronTimetable) GetTimezone()... type TaskQueueQueryTasksResponse_Task_RunLog (line 1575) | type TaskQueueQueryTasksResponse_Task_RunLog struct method Reset (line 1584) | func (m *TaskQueueQueryTasksResponse_Task_RunLog) Reset() { method String (line 1587) | func (m *TaskQueueQueryTasksResponse_Task_RunLog) String() string { re... method ProtoMessage (line 1588) | func (*TaskQueueQueryTasksResponse_Task_RunLog) ProtoMessage() {} method GetDispatchedUsec (line 1590) | func (m *TaskQueueQueryTasksResponse_Task_RunLog) GetDispatchedUsec() ... method GetLagUsec (line 1597) | func (m *TaskQueueQueryTasksResponse_Task_RunLog) GetLagUsec() int64 { method GetElapsedUsec (line 1604) | func (m *TaskQueueQueryTasksResponse_Task_RunLog) GetElapsedUsec() int... method GetResponseCode (line 1611) | func (m *TaskQueueQueryTasksResponse_Task_RunLog) GetResponseCode() in... method GetRetryReason (line 1618) | func (m *TaskQueueQueryTasksResponse_Task_RunLog) GetRetryReason() str... type TaskQueueFetchTaskRequest (line 1625) | type TaskQueueFetchTaskRequest struct method Reset (line 1632) | func (m *TaskQueueFetchTaskRequest) Reset() { *m = TaskQueueFe... method String (line 1633) | func (m *TaskQueueFetchTaskRequest) String() string { return proto.Com... method ProtoMessage (line 1634) | func (*TaskQueueFetchTaskRequest) ProtoMessage() {} method GetAppId (line 1636) | func (m *TaskQueueFetchTaskRequest) GetAppId() []byte { method GetQueueName (line 1643) | func (m *TaskQueueFetchTaskRequest) GetQueueName() []byte { method GetTaskName (line 1650) | func (m *TaskQueueFetchTaskRequest) GetTaskName() []byte { type TaskQueueFetchTaskResponse (line 1657) | type TaskQueueFetchTaskResponse struct method Reset (line 1662) | func (m *TaskQueueFetchTaskResponse) Reset() { *m = TaskQueueF... method String (line 1663) | func (m *TaskQueueFetchTaskResponse) String() string { return proto.Co... method ProtoMessage (line 1664) | func (*TaskQueueFetchTaskResponse) ProtoMessage() {} method GetTask (line 1666) | func (m *TaskQueueFetchTaskResponse) GetTask() *TaskQueueQueryTasksRes... type TaskQueueUpdateStorageLimitRequest (line 1673) | type TaskQueueUpdateStorageLimitRequest struct method Reset (line 1679) | func (m *TaskQueueUpdateStorageLimitRequest) Reset() { *m = Ta... method String (line 1680) | func (m *TaskQueueUpdateStorageLimitRequest) String() string { return ... method ProtoMessage (line 1681) | func (*TaskQueueUpdateStorageLimitRequest) ProtoMessage() {} method GetAppId (line 1683) | func (m *TaskQueueUpdateStorageLimitRequest) GetAppId() []byte { method GetLimit (line 1690) | func (m *TaskQueueUpdateStorageLimitRequest) GetLimit() int64 { type TaskQueueUpdateStorageLimitResponse (line 1697) | type TaskQueueUpdateStorageLimitResponse struct method Reset (line 1702) | func (m *TaskQueueUpdateStorageLimitResponse) Reset() { *m = T... method String (line 1703) | func (m *TaskQueueUpdateStorageLimitResponse) String() string { return... method ProtoMessage (line 1704) | func (*TaskQueueUpdateStorageLimitResponse) ProtoMessage() {} method GetNewLimit (line 1706) | func (m *TaskQueueUpdateStorageLimitResponse) GetNewLimit() int64 { type TaskQueueQueryAndOwnTasksRequest (line 1713) | type TaskQueueQueryAndOwnTasksRequest struct method Reset (line 1722) | func (m *TaskQueueQueryAndOwnTasksRequest) Reset() { *m = Task... method String (line 1723) | func (m *TaskQueueQueryAndOwnTasksRequest) String() string { return pr... method ProtoMessage (line 1724) | func (*TaskQueueQueryAndOwnTasksRequest) ProtoMessage() {} method GetQueueName (line 1728) | func (m *TaskQueueQueryAndOwnTasksRequest) GetQueueName() []byte { method GetLeaseSeconds (line 1735) | func (m *TaskQueueQueryAndOwnTasksRequest) GetLeaseSeconds() float64 { method GetMaxTasks (line 1742) | func (m *TaskQueueQueryAndOwnTasksRequest) GetMaxTasks() int64 { method GetGroupByTag (line 1749) | func (m *TaskQueueQueryAndOwnTasksRequest) GetGroupByTag() bool { method GetTag (line 1756) | func (m *TaskQueueQueryAndOwnTasksRequest) GetTag() []byte { constant Default_TaskQueueQueryAndOwnTasksRequest_GroupByTag (line 1726) | Default_TaskQueueQueryAndOwnTasksRequest_GroupByTag bool = false type TaskQueueQueryAndOwnTasksResponse (line 1763) | type TaskQueueQueryAndOwnTasksResponse struct method Reset (line 1768) | func (m *TaskQueueQueryAndOwnTasksResponse) Reset() { *m = Tas... method String (line 1769) | func (m *TaskQueueQueryAndOwnTasksResponse) String() string { return p... method ProtoMessage (line 1770) | func (*TaskQueueQueryAndOwnTasksResponse) ProtoMessage() {} method GetTask (line 1772) | func (m *TaskQueueQueryAndOwnTasksResponse) GetTask() []*TaskQueueQuer... type TaskQueueQueryAndOwnTasksResponse_Task (line 1779) | type TaskQueueQueryAndOwnTasksResponse_Task struct method Reset (line 1788) | func (m *TaskQueueQueryAndOwnTasksResponse_Task) Reset() { method String (line 1791) | func (m *TaskQueueQueryAndOwnTasksResponse_Task) String() string { ret... method ProtoMessage (line 1792) | func (*TaskQueueQueryAndOwnTasksResponse_Task) ProtoMessage() {} method GetTaskName (line 1796) | func (m *TaskQueueQueryAndOwnTasksResponse_Task) GetTaskName() []byte { method GetEtaUsec (line 1803) | func (m *TaskQueueQueryAndOwnTasksResponse_Task) GetEtaUsec() int64 { method GetRetryCount (line 1810) | func (m *TaskQueueQueryAndOwnTasksResponse_Task) GetRetryCount() int32 { method GetBody (line 1817) | func (m *TaskQueueQueryAndOwnTasksResponse_Task) GetBody() []byte { method GetTag (line 1824) | func (m *TaskQueueQueryAndOwnTasksResponse_Task) GetTag() []byte { constant Default_TaskQueueQueryAndOwnTasksResponse_Task_RetryCount (line 1794) | Default_TaskQueueQueryAndOwnTasksResponse_Task_RetryCount int32 = 0 type TaskQueueModifyTaskLeaseRequest (line 1831) | type TaskQueueModifyTaskLeaseRequest struct method Reset (line 1839) | func (m *TaskQueueModifyTaskLeaseRequest) Reset() { *m = TaskQ... method String (line 1840) | func (m *TaskQueueModifyTaskLeaseRequest) String() string { return pro... method ProtoMessage (line 1841) | func (*TaskQueueModifyTaskLeaseRequest) ProtoMessage() {} method GetQueueName (line 1843) | func (m *TaskQueueModifyTaskLeaseRequest) GetQueueName() []byte { method GetTaskName (line 1850) | func (m *TaskQueueModifyTaskLeaseRequest) GetTaskName() []byte { method GetEtaUsec (line 1857) | func (m *TaskQueueModifyTaskLeaseRequest) GetEtaUsec() int64 { method GetLeaseSeconds (line 1864) | func (m *TaskQueueModifyTaskLeaseRequest) GetLeaseSeconds() float64 { type TaskQueueModifyTaskLeaseResponse (line 1871) | type TaskQueueModifyTaskLeaseResponse struct method Reset (line 1876) | func (m *TaskQueueModifyTaskLeaseResponse) Reset() { *m = Task... method String (line 1877) | func (m *TaskQueueModifyTaskLeaseResponse) String() string { return pr... method ProtoMessage (line 1878) | func (*TaskQueueModifyTaskLeaseResponse) ProtoMessage() {} method GetUpdatedEtaUsec (line 1880) | func (m *TaskQueueModifyTaskLeaseResponse) GetUpdatedEtaUsec() int64 { function init (line 1887) | func init() { FILE: vendor/google.golang.org/appengine/internal/transaction.go function RegisterTransactionSetter (line 25) | func RegisterTransactionSetter(f interface{}) { function applyTransaction (line 32) | func applyTransaction(pb proto.Message, t *pb.Transaction) { function transactionFromContext (line 41) | func transactionFromContext(ctx netcontext.Context) *transaction { function withTransaction (line 46) | func withTransaction(ctx netcontext.Context, t *transaction) netcontext.... type transaction (line 50) | type transaction struct function RunTransactionOnce (line 57) | func RunTransactionOnce(c netcontext.Context, f func(netcontext.Context)... FILE: vendor/google.golang.org/appengine/internal/urlfetch/urlfetch_service.pb.go type URLFetchServiceError_ErrorCode (line 27) | type URLFetchServiceError_ErrorCode method Enum (line 76) | func (x URLFetchServiceError_ErrorCode) Enum() *URLFetchServiceError_E... method String (line 81) | func (x URLFetchServiceError_ErrorCode) String() string { method UnmarshalJSON (line 84) | func (x *URLFetchServiceError_ErrorCode) UnmarshalJSON(data []byte) er... constant URLFetchServiceError_OK (line 30) | URLFetchServiceError_OK URLFetchServiceError_Error... constant URLFetchServiceError_INVALID_URL (line 31) | URLFetchServiceError_INVALID_URL URLFetchServiceError_Error... constant URLFetchServiceError_FETCH_ERROR (line 32) | URLFetchServiceError_FETCH_ERROR URLFetchServiceError_Error... constant URLFetchServiceError_UNSPECIFIED_ERROR (line 33) | URLFetchServiceError_UNSPECIFIED_ERROR URLFetchServiceError_Error... constant URLFetchServiceError_RESPONSE_TOO_LARGE (line 34) | URLFetchServiceError_RESPONSE_TOO_LARGE URLFetchServiceError_Error... constant URLFetchServiceError_DEADLINE_EXCEEDED (line 35) | URLFetchServiceError_DEADLINE_EXCEEDED URLFetchServiceError_Error... constant URLFetchServiceError_SSL_CERTIFICATE_ERROR (line 36) | URLFetchServiceError_SSL_CERTIFICATE_ERROR URLFetchServiceError_Error... constant URLFetchServiceError_DNS_ERROR (line 37) | URLFetchServiceError_DNS_ERROR URLFetchServiceError_Error... constant URLFetchServiceError_CLOSED (line 38) | URLFetchServiceError_CLOSED URLFetchServiceError_Error... constant URLFetchServiceError_INTERNAL_TRANSIENT_ERROR (line 39) | URLFetchServiceError_INTERNAL_TRANSIENT_ERROR URLFetchServiceError_Error... constant URLFetchServiceError_TOO_MANY_REDIRECTS (line 40) | URLFetchServiceError_TOO_MANY_REDIRECTS URLFetchServiceError_Error... constant URLFetchServiceError_MALFORMED_REPLY (line 41) | URLFetchServiceError_MALFORMED_REPLY URLFetchServiceError_Error... constant URLFetchServiceError_CONNECTION_ERROR (line 42) | URLFetchServiceError_CONNECTION_ERROR URLFetchServiceError_Error... type URLFetchRequest_RequestMethod (line 93) | type URLFetchRequest_RequestMethod method Enum (line 121) | func (x URLFetchRequest_RequestMethod) Enum() *URLFetchRequest_Request... method String (line 126) | func (x URLFetchRequest_RequestMethod) String() string { method UnmarshalJSON (line 129) | func (x *URLFetchRequest_RequestMethod) UnmarshalJSON(data []byte) err... constant URLFetchRequest_GET (line 96) | URLFetchRequest_GET URLFetchRequest_RequestMethod = 1 constant URLFetchRequest_POST (line 97) | URLFetchRequest_POST URLFetchRequest_RequestMethod = 2 constant URLFetchRequest_HEAD (line 98) | URLFetchRequest_HEAD URLFetchRequest_RequestMethod = 3 constant URLFetchRequest_PUT (line 99) | URLFetchRequest_PUT URLFetchRequest_RequestMethod = 4 constant URLFetchRequest_DELETE (line 100) | URLFetchRequest_DELETE URLFetchRequest_RequestMethod = 5 constant URLFetchRequest_PATCH (line 101) | URLFetchRequest_PATCH URLFetchRequest_RequestMethod = 6 type URLFetchServiceError (line 138) | type URLFetchServiceError struct method Reset (line 142) | func (m *URLFetchServiceError) Reset() { *m = URLFetchServiceE... method String (line 143) | func (m *URLFetchServiceError) String() string { return proto.CompactT... method ProtoMessage (line 144) | func (*URLFetchServiceError) ProtoMessage() {} type URLFetchRequest (line 146) | type URLFetchRequest struct method Reset (line 157) | func (m *URLFetchRequest) Reset() { *m = URLFetchRequest{} } method String (line 158) | func (m *URLFetchRequest) String() string { return proto.CompactTextSt... method ProtoMessage (line 159) | func (*URLFetchRequest) ProtoMessage() {} method GetMethod (line 164) | func (m *URLFetchRequest) GetMethod() URLFetchRequest_RequestMethod { method GetUrl (line 171) | func (m *URLFetchRequest) GetUrl() string { method GetHeader (line 178) | func (m *URLFetchRequest) GetHeader() []*URLFetchRequest_Header { method GetPayload (line 185) | func (m *URLFetchRequest) GetPayload() []byte { method GetFollowRedirects (line 192) | func (m *URLFetchRequest) GetFollowRedirects() bool { method GetDeadline (line 199) | func (m *URLFetchRequest) GetDeadline() float64 { method GetMustValidateServerCertificate (line 206) | func (m *URLFetchRequest) GetMustValidateServerCertificate() bool { constant Default_URLFetchRequest_FollowRedirects (line 161) | Default_URLFetchRequest_FollowRedirects bool = true constant Default_URLFetchRequest_MustValidateServerCertificate (line 162) | Default_URLFetchRequest_MustValidateServerCertificate bool = true type URLFetchRequest_Header (line 213) | type URLFetchRequest_Header struct method Reset (line 219) | func (m *URLFetchRequest_Header) Reset() { *m = URLFetchReques... method String (line 220) | func (m *URLFetchRequest_Header) String() string { return proto.Compac... method ProtoMessage (line 221) | func (*URLFetchRequest_Header) ProtoMessage() {} method GetKey (line 223) | func (m *URLFetchRequest_Header) GetKey() string { method GetValue (line 230) | func (m *URLFetchRequest_Header) GetValue() string { type URLFetchResponse (line 237) | type URLFetchResponse struct method Reset (line 251) | func (m *URLFetchResponse) Reset() { *m = URLFetchResponse{} } method String (line 252) | func (m *URLFetchResponse) String() string { return proto.CompactTextS... method ProtoMessage (line 253) | func (*URLFetchResponse) ProtoMessage() {} method GetContent (line 260) | func (m *URLFetchResponse) GetContent() []byte { method GetStatusCode (line 267) | func (m *URLFetchResponse) GetStatusCode() int32 { method GetHeader (line 274) | func (m *URLFetchResponse) GetHeader() []*URLFetchResponse_Header { method GetContentWasTruncated (line 281) | func (m *URLFetchResponse) GetContentWasTruncated() bool { method GetExternalBytesSent (line 288) | func (m *URLFetchResponse) GetExternalBytesSent() int64 { method GetExternalBytesReceived (line 295) | func (m *URLFetchResponse) GetExternalBytesReceived() int64 { method GetFinalUrl (line 302) | func (m *URLFetchResponse) GetFinalUrl() string { method GetApiCpuMilliseconds (line 309) | func (m *URLFetchResponse) GetApiCpuMilliseconds() int64 { method GetApiBytesSent (line 316) | func (m *URLFetchResponse) GetApiBytesSent() int64 { method GetApiBytesReceived (line 323) | func (m *URLFetchResponse) GetApiBytesReceived() int64 { constant Default_URLFetchResponse_ContentWasTruncated (line 255) | Default_URLFetchResponse_ContentWasTruncated bool = false constant Default_URLFetchResponse_ApiCpuMilliseconds (line 256) | Default_URLFetchResponse_ApiCpuMilliseconds int64 = 0 constant Default_URLFetchResponse_ApiBytesSent (line 257) | Default_URLFetchResponse_ApiBytesSent int64 = 0 constant Default_URLFetchResponse_ApiBytesReceived (line 258) | Default_URLFetchResponse_ApiBytesReceived int64 = 0 type URLFetchResponse_Header (line 330) | type URLFetchResponse_Header struct method Reset (line 336) | func (m *URLFetchResponse_Header) Reset() { *m = URLFetchRespo... method String (line 337) | func (m *URLFetchResponse_Header) String() string { return proto.Compa... method ProtoMessage (line 338) | func (*URLFetchResponse_Header) ProtoMessage() {} method GetKey (line 340) | func (m *URLFetchResponse_Header) GetKey() string { method GetValue (line 347) | func (m *URLFetchResponse_Header) GetValue() string { function init (line 354) | func init() { FILE: vendor/google.golang.org/appengine/internal/user/user_service.pb.go type UserServiceError_ErrorCode (line 33) | type UserServiceError_ErrorCode method Enum (line 61) | func (x UserServiceError_ErrorCode) Enum() *UserServiceError_ErrorCode { method String (line 66) | func (x UserServiceError_ErrorCode) String() string { method UnmarshalJSON (line 69) | func (x *UserServiceError_ErrorCode) UnmarshalJSON(data []byte) error { constant UserServiceError_OK (line 36) | UserServiceError_OK UserServiceError_ErrorCode = 0 constant UserServiceError_REDIRECT_URL_TOO_LONG (line 37) | UserServiceError_REDIRECT_URL_TOO_LONG UserServiceError_ErrorCode = 1 constant UserServiceError_NOT_ALLOWED (line 38) | UserServiceError_NOT_ALLOWED UserServiceError_ErrorCode = 2 constant UserServiceError_OAUTH_INVALID_TOKEN (line 39) | UserServiceError_OAUTH_INVALID_TOKEN UserServiceError_ErrorCode = 3 constant UserServiceError_OAUTH_INVALID_REQUEST (line 40) | UserServiceError_OAUTH_INVALID_REQUEST UserServiceError_ErrorCode = 4 constant UserServiceError_OAUTH_ERROR (line 41) | UserServiceError_OAUTH_ERROR UserServiceError_ErrorCode = 5 type UserServiceError (line 78) | type UserServiceError struct method Reset (line 82) | func (m *UserServiceError) Reset() { *m = UserServiceError{} } method String (line 83) | func (m *UserServiceError) String() string { return proto.CompactTextS... method ProtoMessage (line 84) | func (*UserServiceError) ProtoMessage() {} type CreateLoginURLRequest (line 86) | type CreateLoginURLRequest struct method Reset (line 93) | func (m *CreateLoginURLRequest) Reset() { *m = CreateLoginURLR... method String (line 94) | func (m *CreateLoginURLRequest) String() string { return proto.Compact... method ProtoMessage (line 95) | func (*CreateLoginURLRequest) ProtoMessage() {} method GetDestinationUrl (line 97) | func (m *CreateLoginURLRequest) GetDestinationUrl() string { method GetAuthDomain (line 104) | func (m *CreateLoginURLRequest) GetAuthDomain() string { method GetFederatedIdentity (line 111) | func (m *CreateLoginURLRequest) GetFederatedIdentity() string { type CreateLoginURLResponse (line 118) | type CreateLoginURLResponse struct method Reset (line 123) | func (m *CreateLoginURLResponse) Reset() { *m = CreateLoginURL... method String (line 124) | func (m *CreateLoginURLResponse) String() string { return proto.Compac... method ProtoMessage (line 125) | func (*CreateLoginURLResponse) ProtoMessage() {} method GetLoginUrl (line 127) | func (m *CreateLoginURLResponse) GetLoginUrl() string { type CreateLogoutURLRequest (line 134) | type CreateLogoutURLRequest struct method Reset (line 140) | func (m *CreateLogoutURLRequest) Reset() { *m = CreateLogoutUR... method String (line 141) | func (m *CreateLogoutURLRequest) String() string { return proto.Compac... method ProtoMessage (line 142) | func (*CreateLogoutURLRequest) ProtoMessage() {} method GetDestinationUrl (line 144) | func (m *CreateLogoutURLRequest) GetDestinationUrl() string { method GetAuthDomain (line 151) | func (m *CreateLogoutURLRequest) GetAuthDomain() string { type CreateLogoutURLResponse (line 158) | type CreateLogoutURLResponse struct method Reset (line 163) | func (m *CreateLogoutURLResponse) Reset() { *m = CreateLogoutU... method String (line 164) | func (m *CreateLogoutURLResponse) String() string { return proto.Compa... method ProtoMessage (line 165) | func (*CreateLogoutURLResponse) ProtoMessage() {} method GetLogoutUrl (line 167) | func (m *CreateLogoutURLResponse) GetLogoutUrl() string { type GetOAuthUserRequest (line 174) | type GetOAuthUserRequest struct method Reset (line 180) | func (m *GetOAuthUserRequest) Reset() { *m = GetOAuthUserReque... method String (line 181) | func (m *GetOAuthUserRequest) String() string { return proto.CompactTe... method ProtoMessage (line 182) | func (*GetOAuthUserRequest) ProtoMessage() {} method GetScope (line 184) | func (m *GetOAuthUserRequest) GetScope() string { method GetScopes (line 191) | func (m *GetOAuthUserRequest) GetScopes() []string { type GetOAuthUserResponse (line 198) | type GetOAuthUserResponse struct method Reset (line 209) | func (m *GetOAuthUserResponse) Reset() { *m = GetOAuthUserResp... method String (line 210) | func (m *GetOAuthUserResponse) String() string { return proto.CompactT... method ProtoMessage (line 211) | func (*GetOAuthUserResponse) ProtoMessage() {} method GetEmail (line 215) | func (m *GetOAuthUserResponse) GetEmail() string { method GetUserId (line 222) | func (m *GetOAuthUserResponse) GetUserId() string { method GetAuthDomain (line 229) | func (m *GetOAuthUserResponse) GetAuthDomain() string { method GetUserOrganization (line 236) | func (m *GetOAuthUserResponse) GetUserOrganization() string { method GetIsAdmin (line 243) | func (m *GetOAuthUserResponse) GetIsAdmin() bool { method GetClientId (line 250) | func (m *GetOAuthUserResponse) GetClientId() string { method GetScopes (line 257) | func (m *GetOAuthUserResponse) GetScopes() []string { constant Default_GetOAuthUserResponse_IsAdmin (line 213) | Default_GetOAuthUserResponse_IsAdmin bool = false type CheckOAuthSignatureRequest (line 264) | type CheckOAuthSignatureRequest struct method Reset (line 268) | func (m *CheckOAuthSignatureRequest) Reset() { *m = CheckOAuth... method String (line 269) | func (m *CheckOAuthSignatureRequest) String() string { return proto.Co... method ProtoMessage (line 270) | func (*CheckOAuthSignatureRequest) ProtoMessage() {} type CheckOAuthSignatureResponse (line 272) | type CheckOAuthSignatureResponse struct method Reset (line 277) | func (m *CheckOAuthSignatureResponse) Reset() { *m = CheckOAut... method String (line 278) | func (m *CheckOAuthSignatureResponse) String() string { return proto.C... method ProtoMessage (line 279) | func (*CheckOAuthSignatureResponse) ProtoMessage() {} method GetOauthConsumerKey (line 281) | func (m *CheckOAuthSignatureResponse) GetOauthConsumerKey() string { function init (line 288) | func init() { FILE: vendor/google.golang.org/appengine/internal/xmpp/xmpp_service.pb.go type XmppServiceError_ErrorCode (line 35) | type XmppServiceError_ErrorCode method Enum (line 72) | func (x XmppServiceError_ErrorCode) Enum() *XmppServiceError_ErrorCode { method String (line 77) | func (x XmppServiceError_ErrorCode) String() string { method UnmarshalJSON (line 80) | func (x *XmppServiceError_ErrorCode) UnmarshalJSON(data []byte) error { constant XmppServiceError_UNSPECIFIED_ERROR (line 38) | XmppServiceError_UNSPECIFIED_ERROR XmppServiceError_ErrorCode = 1 constant XmppServiceError_INVALID_JID (line 39) | XmppServiceError_INVALID_JID XmppServiceError_ErrorCode = 2 constant XmppServiceError_NO_BODY (line 40) | XmppServiceError_NO_BODY XmppServiceError_ErrorCode = 3 constant XmppServiceError_INVALID_XML (line 41) | XmppServiceError_INVALID_XML XmppServiceError_ErrorCode = 4 constant XmppServiceError_INVALID_TYPE (line 42) | XmppServiceError_INVALID_TYPE XmppServiceError_ErrorCode = 5 constant XmppServiceError_INVALID_SHOW (line 43) | XmppServiceError_INVALID_SHOW XmppServiceError_ErrorCode = 6 constant XmppServiceError_EXCEEDED_MAX_SIZE (line 44) | XmppServiceError_EXCEEDED_MAX_SIZE XmppServiceError_ErrorCode = 7 constant XmppServiceError_APPID_ALIAS_REQUIRED (line 45) | XmppServiceError_APPID_ALIAS_REQUIRED XmppServiceError_ErrorCode = 8 constant XmppServiceError_NONDEFAULT_MODULE (line 46) | XmppServiceError_NONDEFAULT_MODULE XmppServiceError_ErrorCode = 9 type PresenceResponse_SHOW (line 89) | type PresenceResponse_SHOW method Enum (line 114) | func (x PresenceResponse_SHOW) Enum() *PresenceResponse_SHOW { method String (line 119) | func (x PresenceResponse_SHOW) String() string { method UnmarshalJSON (line 122) | func (x *PresenceResponse_SHOW) UnmarshalJSON(data []byte) error { constant PresenceResponse_NORMAL (line 92) | PresenceResponse_NORMAL PresenceResponse_SHOW = 0 constant PresenceResponse_AWAY (line 93) | PresenceResponse_AWAY PresenceResponse_SHOW = 1 constant PresenceResponse_DO_NOT_DISTURB (line 94) | PresenceResponse_DO_NOT_DISTURB PresenceResponse_SHOW = 2 constant PresenceResponse_CHAT (line 95) | PresenceResponse_CHAT PresenceResponse_SHOW = 3 constant PresenceResponse_EXTENDED_AWAY (line 96) | PresenceResponse_EXTENDED_AWAY PresenceResponse_SHOW = 4 type XmppMessageResponse_XmppMessageStatus (line 131) | type XmppMessageResponse_XmppMessageStatus method Enum (line 150) | func (x XmppMessageResponse_XmppMessageStatus) Enum() *XmppMessageResp... method String (line 155) | func (x XmppMessageResponse_XmppMessageStatus) String() string { method UnmarshalJSON (line 158) | func (x *XmppMessageResponse_XmppMessageStatus) UnmarshalJSON(data []b... constant XmppMessageResponse_NO_ERROR (line 134) | XmppMessageResponse_NO_ERROR XmppMessageResponse_XmppMessageStatus = 0 constant XmppMessageResponse_INVALID_JID (line 135) | XmppMessageResponse_INVALID_JID XmppMessageResponse_XmppMessageStatus = 1 constant XmppMessageResponse_OTHER_ERROR (line 136) | XmppMessageResponse_OTHER_ERROR XmppMessageResponse_XmppMessageStatus = 2 type XmppServiceError (line 167) | type XmppServiceError struct method Reset (line 171) | func (m *XmppServiceError) Reset() { *m = XmppServiceError{} } method String (line 172) | func (m *XmppServiceError) String() string { return proto.CompactTextS... method ProtoMessage (line 173) | func (*XmppServiceError) ProtoMessage() {} type PresenceRequest (line 175) | type PresenceRequest struct method Reset (line 181) | func (m *PresenceRequest) Reset() { *m = PresenceRequest{} } method String (line 182) | func (m *PresenceRequest) String() string { return proto.CompactTextSt... method ProtoMessage (line 183) | func (*PresenceRequest) ProtoMessage() {} method GetJid (line 185) | func (m *PresenceRequest) GetJid() string { method GetFromJid (line 192) | func (m *PresenceRequest) GetFromJid() string { type PresenceResponse (line 199) | type PresenceResponse struct method Reset (line 206) | func (m *PresenceResponse) Reset() { *m = PresenceResponse{} } method String (line 207) | func (m *PresenceResponse) String() string { return proto.CompactTextS... method ProtoMessage (line 208) | func (*PresenceResponse) ProtoMessage() {} method GetIsAvailable (line 210) | func (m *PresenceResponse) GetIsAvailable() bool { method GetPresence (line 217) | func (m *PresenceResponse) GetPresence() PresenceResponse_SHOW { method GetValid (line 224) | func (m *PresenceResponse) GetValid() bool { type BulkPresenceRequest (line 231) | type BulkPresenceRequest struct method Reset (line 237) | func (m *BulkPresenceRequest) Reset() { *m = BulkPresenceReque... method String (line 238) | func (m *BulkPresenceRequest) String() string { return proto.CompactTe... method ProtoMessage (line 239) | func (*BulkPresenceRequest) ProtoMessage() {} method GetJid (line 241) | func (m *BulkPresenceRequest) GetJid() []string { method GetFromJid (line 248) | func (m *BulkPresenceRequest) GetFromJid() string { type BulkPresenceResponse (line 255) | type BulkPresenceResponse struct method Reset (line 260) | func (m *BulkPresenceResponse) Reset() { *m = BulkPresenceResp... method String (line 261) | func (m *BulkPresenceResponse) String() string { return proto.CompactT... method ProtoMessage (line 262) | func (*BulkPresenceResponse) ProtoMessage() {} method GetPresenceResponse (line 264) | func (m *BulkPresenceResponse) GetPresenceResponse() []*PresenceRespon... type XmppMessageRequest (line 271) | type XmppMessageRequest struct method Reset (line 280) | func (m *XmppMessageRequest) Reset() { *m = XmppMessageRequest... method String (line 281) | func (m *XmppMessageRequest) String() string { return proto.CompactTex... method ProtoMessage (line 282) | func (*XmppMessageRequest) ProtoMessage() {} method GetJid (line 287) | func (m *XmppMessageRequest) GetJid() []string { method GetBody (line 294) | func (m *XmppMessageRequest) GetBody() string { method GetRawXml (line 301) | func (m *XmppMessageRequest) GetRawXml() bool { method GetType (line 308) | func (m *XmppMessageRequest) GetType() string { method GetFromJid (line 315) | func (m *XmppMessageRequest) GetFromJid() string { constant Default_XmppMessageRequest_RawXml (line 284) | Default_XmppMessageRequest_RawXml bool = false constant Default_XmppMessageRequest_Type (line 285) | Default_XmppMessageRequest_Type string = "chat" type XmppMessageResponse (line 322) | type XmppMessageResponse struct method Reset (line 327) | func (m *XmppMessageResponse) Reset() { *m = XmppMessageRespon... method String (line 328) | func (m *XmppMessageResponse) String() string { return proto.CompactTe... method ProtoMessage (line 329) | func (*XmppMessageResponse) ProtoMessage() {} method GetStatus (line 331) | func (m *XmppMessageResponse) GetStatus() []XmppMessageResponse_XmppMe... type XmppSendPresenceRequest (line 338) | type XmppSendPresenceRequest struct method Reset (line 347) | func (m *XmppSendPresenceRequest) Reset() { *m = XmppSendPrese... method String (line 348) | func (m *XmppSendPresenceRequest) String() string { return proto.Compa... method ProtoMessage (line 349) | func (*XmppSendPresenceRequest) ProtoMessage() {} method GetJid (line 351) | func (m *XmppSendPresenceRequest) GetJid() string { method GetType (line 358) | func (m *XmppSendPresenceRequest) GetType() string { method GetShow (line 365) | func (m *XmppSendPresenceRequest) GetShow() string { method GetStatus (line 372) | func (m *XmppSendPresenceRequest) GetStatus() string { method GetFromJid (line 379) | func (m *XmppSendPresenceRequest) GetFromJid() string { type XmppSendPresenceResponse (line 386) | type XmppSendPresenceResponse struct method Reset (line 390) | func (m *XmppSendPresenceResponse) Reset() { *m = XmppSendPres... method String (line 391) | func (m *XmppSendPresenceResponse) String() string { return proto.Comp... method ProtoMessage (line 392) | func (*XmppSendPresenceResponse) ProtoMessage() {} type XmppInviteRequest (line 394) | type XmppInviteRequest struct method Reset (line 400) | func (m *XmppInviteRequest) Reset() { *m = XmppInviteRequest{} } method String (line 401) | func (m *XmppInviteRequest) String() string { return proto.CompactText... method ProtoMessage (line 402) | func (*XmppInviteRequest) ProtoMessage() {} method GetJid (line 404) | func (m *XmppInviteRequest) GetJid() string { method GetFromJid (line 411) | func (m *XmppInviteRequest) GetFromJid() string { type XmppInviteResponse (line 418) | type XmppInviteResponse struct method Reset (line 422) | func (m *XmppInviteResponse) Reset() { *m = XmppInviteResponse... method String (line 423) | func (m *XmppInviteResponse) String() string { return proto.CompactTex... method ProtoMessage (line 424) | func (*XmppInviteResponse) ProtoMessage() {} function init (line 426) | func init() { FILE: vendor/google.golang.org/appengine/log/api.go function Debugf (line 18) | func Debugf(ctx context.Context, format string, args ...interface{}) { function Infof (line 23) | func Infof(ctx context.Context, format string, args ...interface{}) { function Warningf (line 28) | func Warningf(ctx context.Context, format string, args ...interface{}) { function Errorf (line 33) | func Errorf(ctx context.Context, format string, args ...interface{}) { function Criticalf (line 38) | func Criticalf(ctx context.Context, format string, args ...interface{}) { FILE: vendor/google.golang.org/appengine/log/log.go type Query (line 46) | type Query struct method Run (line 234) | func (params *Query) Run(c context.Context) *Result { type AppLog (line 83) | type AppLog struct type Record (line 90) | type Record struct type Result (line 138) | type Result struct method Next (line 147) | func (qr *Result) Next() (*Record, error) { method run (line 304) | func (r *Result) run() error { function protoToAppLogs (line 176) | func protoToAppLogs(logLines []*pb.LogLine) []AppLog { function protoToRecord (line 193) | func protoToRecord(rl *pb.RequestLog) *Record { function makeRequest (line 243) | func makeRequest(params *Query, appID, versionID string) (*pb.LogReadReq... function init (line 321) | func init() { FILE: vendor/google.golang.org/appengine/mail/mail.go type Message (line 35) | type Message struct type Attachment (line 60) | type Attachment struct function Send (line 68) | func Send(c context.Context, msg *Message) error { function SendToAdmins (line 73) | func SendToAdmins(c context.Context, msg *Message) error { function send (line 77) | func send(c context.Context, method string, msg *Message) error { function init (line 121) | func init() { FILE: vendor/google.golang.org/appengine/memcache/memcache.go type Item (line 65) | type Item struct constant secondsIn30Years (line 87) | secondsIn30Years = 60 * 60 * 24 * 365 * 30 constant thirtyYears (line 88) | thirtyYears = time.Duration(secondsIn30Years) * time.Second function protoToItem (line 92) | func protoToItem(p *pb.MemcacheGetResponse_Item) *Item { function singleError (line 102) | func singleError(err error) error { function Get (line 111) | func Get(c context.Context, key string) (*Item, error) { function GetMulti (line 125) | func GetMulti(c context.Context, key []string) (map[string]*Item, error) { function Delete (line 152) | func Delete(c context.Context, key string) error { function DeleteMulti (line 159) | func DeleteMulti(c context.Context, key []string) error { function Increment (line 202) | func Increment(c context.Context, key string, delta int64, initialValue ... function IncrementExisting (line 211) | func IncrementExisting(c context.Context, key string, delta int64) (newV... function incr (line 215) | func incr(c context.Context, key string, delta int64, initialValue *uint... function set (line 239) | func set(c context.Context, item []*Item, value [][]byte, policy pb.Memc... function Set (line 317) | func Set(c context.Context, item *Item) error { function SetMulti (line 323) | func SetMulti(c context.Context, item []*Item) error { function Add (line 329) | func Add(c context.Context, item *Item) error { function AddMulti (line 335) | func AddMulti(c context.Context, item []*Item) error { function CompareAndSwap (line 345) | func CompareAndSwap(c context.Context, item *Item) error { function CompareAndSwapMulti (line 351) | func CompareAndSwapMulti(c context.Context, item []*Item) error { type Codec (line 361) | type Codec struct method Get (line 369) | func (cd Codec) Get(c context.Context, key string, v interface{}) (*It... method set (line 380) | func (cd Codec) set(c context.Context, items []*Item, policy pb.Memcac... method Set (line 404) | func (cd Codec) Set(c context.Context, item *Item) error { method SetMulti (line 410) | func (cd Codec) SetMulti(c context.Context, items []*Item) error { method Add (line 416) | func (cd Codec) Add(c context.Context, item *Item) error { method AddMulti (line 422) | func (cd Codec) AddMulti(c context.Context, items []*Item) error { method CompareAndSwap (line 432) | func (cd Codec) CompareAndSwap(c context.Context, item *Item) error { method CompareAndSwapMulti (line 438) | func (cd Codec) CompareAndSwapMulti(c context.Context, items []*Item) ... function gobMarshal (line 449) | func gobMarshal(v interface{}) ([]byte, error) { function gobUnmarshal (line 457) | func gobUnmarshal(data []byte, v interface{}) error { type Statistics (line 463) | type Statistics struct function Stats (line 475) | func Stats(c context.Context) (*Statistics, error) { function Flush (line 495) | func Flush(c context.Context) error { function namespaceMod (line 501) | func namespaceMod(m proto.Message, namespace string) { function init (line 523) | func init() { FILE: vendor/google.golang.org/appengine/module/module.go function List (line 22) | func List(c context.Context) ([]string, error) { function NumInstances (line 31) | func NumInstances(c context.Context, module, version string) (int, error) { function SetNumInstances (line 50) | func SetNumInstances(c context.Context, module, version string, instance... function Versions (line 65) | func Versions(c context.Context, module string) ([]string, error) { function DefaultVersion (line 77) | func DefaultVersion(c context.Context, module string) (string, error) { function Start (line 89) | func Start(c context.Context, module, version string) error { function Stop (line 103) | func Stop(c context.Context, module, version string) error { FILE: vendor/google.golang.org/appengine/namespace.go function Namespace (line 17) | func Namespace(c context.Context, namespace string) (context.Context, er... FILE: vendor/google.golang.org/appengine/remote_api/client.go function NewRemoteContext (line 33) | func NewRemoteContext(host string, client *http.Client) (context.Context... type remoteContext (line 64) | type remoteContext struct method logf (line 77) | func (c *remoteContext) logf(level int64, format string, args ...inter... method call (line 81) | func (c *remoteContext) call(ctx context.Context, service, method stri... function getAppID (line 136) | func getAppID(client *http.Client, url string) (string, error) { type headerAddingRoundTripper (line 167) | type headerAddingRoundTripper struct method RoundTrip (line 171) | func (t *headerAddingRoundTripper) RoundTrip(r *http.Request) (*http.R... FILE: vendor/google.golang.org/appengine/remote_api/remote_api.go function init (line 27) | func init() { function handle (line 31) | func handle(w http.ResponseWriter, req *http.Request) { type rawMessage (line 124) | type rawMessage struct method Marshal (line 128) | func (rm *rawMessage) Marshal() ([]byte, error) { method Unmarshal (line 132) | func (rm *rawMessage) Unmarshal(buf []byte) error { method Reset (line 150) | func (rm *rawMessage) Reset() { rm.buf = nil } method String (line 151) | func (rm *rawMessage) String() string { return strconv.Quote(string(rm... method ProtoMessage (line 152) | func (*rawMessage) ProtoMessage() {} function requestSupported (line 138) | func requestSupported(service, method string) bool { FILE: vendor/google.golang.org/appengine/runtime/runtime.go type Statistics (line 24) | type Statistics struct function Stats (line 39) | func Stats(c context.Context) (*Statistics, error) { function init (line 69) | func init() { type send (line 83) | type send struct type recv (line 88) | type recv struct function matchmaker (line 93) | func matchmaker(sendc <-chan send, recvc <-chan recv) { function handleBackground (line 125) | func handleBackground(w http.ResponseWriter, req *http.Request) { function RunInBackground (line 136) | func RunInBackground(c context.Context, f func(c context.Context)) error { function init (line 146) | func init() { FILE: vendor/google.golang.org/appengine/search/field.go type Field (line 9) | type Field struct type Facet (line 32) | type Facet struct type DocumentMetadata (line 51) | type DocumentMetadata struct type FieldLoadSaver (line 62) | type FieldLoadSaver interface type FieldList (line 68) | type FieldList method Load (line 72) | func (l *FieldList) Load(f []Field, _ *DocumentMetadata) error { method Save (line 78) | func (l *FieldList) Save() ([]Field, *DocumentMetadata, error) { FILE: vendor/google.golang.org/appengine/search/search.go type Atom (line 43) | type Atom type HTML (line 47) | type HTML function validIndexNameOrDocID (line 51) | func validIndexNameOrDocID(s string) bool { function validFieldName (line 70) | func validFieldName(s string) bool { function validDocRank (line 75) | func validDocRank(r int) bool { function validLanguage (line 80) | func validLanguage(s string) bool { function validFloat (line 85) | func validFloat(f float64) bool { type Index (line 90) | type Index struct method Put (line 122) | func (x *Index) Put(c context.Context, id string, src interface{}) (st... method Get (line 168) | func (x *Index) Get(c context.Context, id string, dst interface{}) err... method Delete (line 193) | func (x *Index) Delete(c context.Context, id string) error { method List (line 215) | func (x *Index) List(c context.Context, opts *ListOptions) *Iterator { method Search (line 282) | func (x *Index) Search(c context.Context, query string, opts *SearchOp... function Open (line 102) | func Open(name string) (*Index, error) { function moreList (line 231) | func moreList(t *Iterator) error { type ListOptions (line 267) | type ListOptions struct function moreSearch (line 308) | func moreSearch(t *Iterator) error { type SearchOptions (line 380) | type SearchOptions struct type Cursor (line 422) | type Cursor type FieldExpression (line 425) | type FieldExpression struct type FacetSearchOption (line 436) | type FacetSearchOption interface function AutoFacetDiscovery (line 447) | func AutoFacetDiscovery(facetLimit, valueLimit int) FacetSearchOption { type autoFacetOpt (line 451) | type autoFacetOpt struct method setParams (line 457) | func (o *autoFacetOpt) setParams(params *pb.SearchParams) error { constant defaultAutoFacetLimit (line 455) | defaultAutoFacetLimit = 10 function FacetDiscovery (line 475) | func FacetDiscovery(name string, value ...interface{}) FacetSearchOption { type facetOpt (line 479) | type facetOpt struct method setParams (line 484) | func (o *facetOpt) setParams(params *pb.SearchParams) error { function FacetDocumentDepth (line 515) | func FacetDocumentDepth(depth int) FacetSearchOption { type facetDepthOpt (line 519) | type facetDepthOpt method setParams (line 521) | func (o facetDepthOpt) setParams(params *pb.SearchParams) error { type FacetResult (line 528) | type FacetResult struct type Range (line 540) | type Range struct function AtLeast (line 550) | func AtLeast(min float64) Range { function LessThan (line 555) | func LessThan(max float64) Range { type SortOptions (line 560) | type SortOptions struct type SortExpression (line 575) | type SortExpression struct type Scorer (line 591) | type Scorer interface type enumScorer (line 595) | type enumScorer struct method toProto (line 599) | func (e enumScorer) toProto(spec *pb.ScorerSpec) { function sortToProto (line 616) | func sortToProto(sort *SortOptions, params *pb.SearchParams) error { function refinementsToProto (line 650) | func refinementsToProto(refinements []Facet, params *pb.SearchParams) er... function rangeToProto (line 673) | func rangeToProto(r Range) (*pb.FacetRange, error) { function protoToRange (line 692) | func protoToRange(rng *pb.FacetRefinement_Range) Range { type Iterator (line 705) | type Iterator struct method Count (line 745) | func (t *Iterator) Count() int { return t.count } method fetchMore (line 748) | func (t *Iterator) fetchMore() { method Next (line 761) | func (t *Iterator) Next(dst interface{}) (string, error) { method Cursor (line 797) | func (t *Iterator) Cursor() Cursor { method Facets (line 806) | func (t *Iterator) Facets() ([][]FacetResult, error) { function errIter (line 734) | func errIter(err string) *Iterator { function saveDoc (line 835) | func saveDoc(src interface{}) (*pb.Document, error) { function fieldsToProto (line 875) | func fieldsToProto(src []Field) ([]*pb.Field, error) { function facetsToProto (line 947) | func facetsToProto(src []Facet) ([]*pb.Facet, error) { function loadDoc (line 983) | func loadDoc(dst interface{}, src *pb.Document, exprs []*pb.Field) (err ... function protoToFields (line 1015) | func protoToFields(fields []*pb.Field) ([]Field, error) { function protoToFacets (line 1060) | func protoToFacets(facets []*pb.Facet) ([]Facet, error) { function namespaceMod (line 1088) | func namespaceMod(m proto.Message, namespace string) { function init (line 1106) | func init() { FILE: vendor/google.golang.org/appengine/search/struct.go type ErrFieldMismatch (line 17) | type ErrFieldMismatch struct method Error (line 22) | func (e *ErrFieldMismatch) Error() string { type ErrFacetMismatch (line 30) | type ErrFacetMismatch struct method Error (line 36) | func (e *ErrFacetMismatch) Error() string { type structCodec (line 41) | type structCodec struct type structTag (line 53) | type structTag struct function loadCodec (line 63) | func loadCodec(t reflect.Type) (*structCodec, error) { type structFLS (line 108) | type structFLS struct method Load (line 113) | func (s structFLS) Load(fields []Field, meta *DocumentMetadata) error { method Save (line 189) | func (s structFLS) Save() ([]Field, *DocumentMetadata, error) { function newStructFLS (line 207) | func newStructFLS(p interface{}) (FieldLoadSaver, error) { function loadStructWithMeta (line 219) | func loadStructWithMeta(dst interface{}, f []Field, meta *DocumentMetada... function saveStructWithMeta (line 227) | func saveStructWithMeta(src interface{}) ([]Field, *DocumentMetadata, er... function LoadStruct (line 236) | func LoadStruct(dst interface{}, f []Field) error { function SaveStruct (line 242) | func SaveStruct(src interface{}) ([]Field, error) { FILE: vendor/google.golang.org/appengine/socket/socket_classic.go function Dial (line 29) | func Dial(ctx context.Context, protocol, addr string) (*Conn, error) { function DialTimeout (line 40) | func DialTimeout(ctx context.Context, protocol, addr string, timeout tim... function LookupIP (line 107) | func LookupIP(ctx context.Context, host string) (addrs []net.IP, err err... function resolve (line 119) | func resolve(ctx context.Context, fams []pb.CreateSocketRequest_SocketFa... function withDeadline (line 141) | func withDeadline(parent context.Context, deadline time.Time) (context.C... type Conn (line 150) | type Conn struct method SetContext (line 165) | func (cn *Conn) SetContext(ctx context.Context) { method Read (line 169) | func (cn *Conn) Read(b []byte) (n int, err error) { method Write (line 197) | func (cn *Conn) Write(b []byte) (n int, err error) { method Close (line 228) | func (cn *Conn) Close() error { method LocalAddr (line 259) | func (cn *Conn) LocalAddr() net.Addr { return addr(cn.prot, cn.local) } method RemoteAddr (line 260) | func (cn *Conn) RemoteAddr() net.Addr { return addr(cn.prot, cn.remote) } method SetDeadline (line 262) | func (cn *Conn) SetDeadline(t time.Time) error { method SetReadDeadline (line 268) | func (cn *Conn) SetReadDeadline(t time.Time) error { method SetWriteDeadline (line 273) | func (cn *Conn) SetWriteDeadline(t time.Time) error { method KeepAlive (line 280) | func (cn *Conn) KeepAlive() error { function addr (line 240) | func addr(prot pb.CreateSocketRequest_SocketProtocol, ap *pb.AddressPort... function init (line 288) | func init() { FILE: vendor/google.golang.org/appengine/socket/socket_vm.go function Dial (line 22) | func Dial(ctx context.Context, protocol, addr string) (*Conn, error) { function DialTimeout (line 32) | func DialTimeout(ctx context.Context, protocol, addr string, timeout tim... function LookupIP (line 41) | func LookupIP(ctx context.Context, host string) (addrs []net.IP, err err... type Conn (line 47) | type Conn struct method SetContext (line 55) | func (cn *Conn) SetContext(ctx context.Context) { method KeepAlive (line 61) | func (cn *Conn) KeepAlive() error { FILE: vendor/google.golang.org/appengine/taskqueue/taskqueue.go type RetryOptions (line 41) | type RetryOptions struct method toRetryParameters (line 65) | func (opt *RetryOptions) toRetryParameters() *pb.TaskQueueRetryParamet... type Task (line 86) | type Task struct method method (line 131) | func (t *Task) method() string { function NewPOSTTask (line 139) | func NewPOSTTask(path string, params url.Values) *Task { function getDefaultNamespace (line 155) | func getDefaultNamespace(ctx context.Context) string { function newAddReq (line 159) | func newAddReq(c context.Context, task *Task, queueName string) (*pb.Tas... function Add (line 242) | func Add(c context.Context, task *Task, queueName string) (*Task, error) { function AddMulti (line 268) | func AddMulti(c context.Context, tasks []*Task, queueName string) ([]*Ta... function Delete (line 314) | func Delete(c context.Context, task *Task, queueName string) error { function DeleteMulti (line 324) | func DeleteMulti(c context.Context, tasks []*Task, queueName string) err... function lease (line 359) | func lease(c context.Context, maxTasks int, queueName string, leaseTime ... function Lease (line 391) | func Lease(c context.Context, maxTasks int, queueName string, leaseTime ... function LeaseByTag (line 399) | func LeaseByTag(c context.Context, maxTasks int, queueName string, lease... function Purge (line 404) | func Purge(c context.Context, queueName string) error { function ModifyLease (line 418) | func ModifyLease(c context.Context, task *Task, queueName string, leaseT... type QueueStatistics (line 437) | type QueueStatistics struct function QueueStats (line 447) | func QueueStats(c context.Context, queueNames []string) ([]QueueStatisti... function setTransaction (line 478) | func setTransaction(x *pb.TaskQueueAddRequest, t *dspb.Transaction) { function init (line 482) | func init() { FILE: vendor/google.golang.org/appengine/timeout.go function IsTimeoutError (line 10) | func IsTimeoutError(err error) bool { FILE: vendor/google.golang.org/appengine/urlfetch/urlfetch.go type Transport (line 31) | type Transport struct method RoundTrip (line 127) | func (t *Transport) RoundTrip(req *http.Request) (res *http.Response, ... function Client (line 52) | func Client(ctx context.Context) *http.Client { type bodyReader (line 60) | type bodyReader struct method Read (line 77) | func (br *bodyReader) Read(p []byte) (n int, err error) { method Close (line 96) | func (br *bodyReader) Close() error { function statusCodeToText (line 70) | func statusCodeToText(code int) string { function urlString (line 112) | func urlString(u *url.URL) string { function init (line 207) | func init() { FILE: vendor/google.golang.org/appengine/user/oauth.go function CurrentOAuth (line 18) | func CurrentOAuth(c context.Context, scopes ...string) (*User, error) { function OAuthConsumerKey (line 43) | func OAuthConsumerKey(c context.Context) (string, error) { FILE: vendor/google.golang.org/appengine/user/user.go type User (line 19) | type User struct method String (line 38) | func (u *User) String() string { function LoginURL (line 50) | func LoginURL(c context.Context, dest string) (string, error) { function LoginURLFederated (line 55) | func LoginURLFederated(c context.Context, dest, identity string) (string... function LogoutURL (line 71) | func LogoutURL(c context.Context, dest string) (string, error) { function init (line 82) | func init() { FILE: vendor/google.golang.org/appengine/user/user_classic.go function Current (line 17) | func Current(ctx context.Context) *User { function IsAdmin (line 33) | func IsAdmin(ctx context.Context) bool { FILE: vendor/google.golang.org/appengine/user/user_vm.go function Current (line 17) | func Current(c context.Context) *User { function IsAdmin (line 35) | func IsAdmin(c context.Context) bool { FILE: vendor/google.golang.org/appengine/xmpp/xmpp.go type Message (line 40) | type Message struct method Send (line 98) | func (m *Message) Send(c context.Context) error { type Presence (line 61) | type Presence struct method Send (line 145) | func (p *Presence) Send(c context.Context) error { function Handle (line 86) | func Handle(f func(c context.Context, m *Message)) { function Invite (line 133) | func Invite(c context.Context, to, from string) error { function GetPresence (line 178) | func GetPresence(c context.Context, to string, from string) (string, err... function GetPresenceMulti (line 204) | func GetPresenceMulti(c context.Context, to []string, from string) ([]st... function init (line 251) | func init() { FILE: vendor/google.golang.org/cloud/bigquery/bigquery.go type Source (line 28) | type Source interface type Destination (line 33) | type Destination interface type Option (line 38) | type Option interface type ReadSource (line 43) | type ReadSource interface type ReadOption (line 48) | type ReadOption interface constant Scope (line 52) | Scope = "https://www.googleapis.com/auth/bigquery" type Client (line 55) | type Client struct method Copy (line 97) | func (c *Client) Copy(ctx context.Context, dst Destination, src Source... method Read (line 119) | func (c *Client) Read(ctx context.Context, src ReadSource, options ...... function NewClient (line 66) | func NewClient(client *http.Client, projectID string) (*Client, error) { function initJobProto (line 82) | func initJobProto(projectID string, options []Option) (*bq.Job, []Option) { FILE: vendor/google.golang.org/cloud/bigquery/copy_op.go type copyOption (line 24) | type copyOption interface method cp (line 28) | func (c *Client) cp(ctx context.Context, dst *Table, src Tables, options... FILE: vendor/google.golang.org/cloud/bigquery/error.go type Error (line 24) | type Error struct method Error (line 29) | func (e Error) Error() string { function errorFromErrorProto (line 33) | func errorFromErrorProto(ep *bq.ErrorProto) *Error { FILE: vendor/google.golang.org/cloud/bigquery/extract_op.go type extractOption (line 24) | type extractOption interface function DisableHeader (line 29) | func DisableHeader() Option { return disableHeader{} } type disableHeader (line 31) | type disableHeader struct method implementsOption (line 33) | func (opt disableHeader) implementsOption() {} method customizeExtract (line 35) | func (opt disableHeader) customizeExtract(conf *bq.JobConfigurationExt... method extract (line 39) | func (c *Client) extract(ctx context.Context, dst *GCSReference, src *Ta... FILE: vendor/google.golang.org/cloud/bigquery/gcs.go type GCSReference (line 21) | type GCSReference struct method implementsSource (line 52) | func (gcs *GCSReference) implementsSource() {} method implementsDestination (line 53) | func (gcs *GCSReference) implementsDestination() {} method customizeLoadSrc (line 92) | func (gcs *GCSReference) customizeLoadSrc(conf *bq.JobConfigurationLoa... method customizeExtractDst (line 103) | func (gcs *GCSReference) customizeExtractDst(conf *bq.JobConfiguration... method NewGCSReference (line 61) | func (c *Client) NewGCSReference(uri ...string) *GCSReference { type DataFormat (line 65) | type DataFormat constant CSV (line 68) | CSV DataFormat = "CSV" constant Avro (line 69) | Avro DataFormat = "AVRO" constant JSON (line 70) | JSON DataFormat = "NEWLINE_DELIMITED_JSON" constant DatastoreBackup (line 71) | DatastoreBackup DataFormat = "DATASTORE_BACKUP" type Encoding (line 77) | type Encoding constant UTF_8 (line 80) | UTF_8 Encoding = "UTF-8" constant ISO_8859_1 (line 81) | ISO_8859_1 Encoding = "ISO-8859-1" type Compression (line 85) | type Compression constant None (line 88) | None Compression = "NONE" constant Gzip (line 89) | Gzip Compression = "GZIP" FILE: vendor/google.golang.org/cloud/bigquery/iterator.go type Iterator (line 25) | type Iterator struct method Next (line 41) | func (it *Iterator) Next(ctx context.Context) bool { method hasCurrentRow (line 57) | func (it *Iterator) hasCurrentRow() bool { method fetchRows (line 63) | func (it *Iterator) fetchRows(ctx context.Context) { method Err (line 83) | func (it *Iterator) Err() error { method Get (line 88) | func (it *Iterator) Get(dst interface{}) error { FILE: vendor/google.golang.org/cloud/bigquery/job.go type Job (line 23) | type Job struct method Status (line 84) | func (j *Job) Status(ctx context.Context) (*JobStatus, error) { type State (line 30) | type State constant Pending (line 33) | Pending State = iota constant Running (line 34) | Running constant Done (line 35) | Done type JobStatus (line 39) | type JobStatus struct method Done (line 74) | func (s *JobStatus) Done() bool { method Err (line 79) | func (s *JobStatus) Err() error { type jobOption (line 51) | type jobOption interface type jobID (line 55) | type jobID method implementsOption (line 63) | func (opt jobID) implementsOption() {} method customizeJob (line 65) | func (opt jobID) customizeJob(job *bq.Job, projectID string) { function JobID (line 59) | func JobID(ID string) Option { FILE: vendor/google.golang.org/cloud/bigquery/load_op.go type loadOption (line 24) | type loadOption interface function DestinationSchema (line 30) | func DestinationSchema(schema Schema) Option { return destSchema(schema) } type destSchema (line 32) | type destSchema method implementsOption (line 34) | func (opt destSchema) implementsOption() {} method customizeLoad (line 36) | func (opt destSchema) customizeLoad(conf *bq.JobConfigurationLoad, pro... function MaxBadRecords (line 48) | func MaxBadRecords(n int64) Option { return maxBadRecords(n) } type maxBadRecords (line 50) | type maxBadRecords method implementsOption (line 52) | func (opt maxBadRecords) implementsOption() {} method customizeLoad (line 54) | func (opt maxBadRecords) customizeLoad(conf *bq.JobConfigurationLoad, ... function AllowJaggedRows (line 59) | func AllowJaggedRows() Option { return allowJaggedRows{} } type allowJaggedRows (line 61) | type allowJaggedRows struct method implementsOption (line 63) | func (opt allowJaggedRows) implementsOption() {} method customizeLoad (line 65) | func (opt allowJaggedRows) customizeLoad(conf *bq.JobConfigurationLoad... function AllowQuotedNewlines (line 70) | func AllowQuotedNewlines() Option { return allowQuotedNewlines{} } type allowQuotedNewlines (line 72) | type allowQuotedNewlines struct method implementsOption (line 74) | func (opt allowQuotedNewlines) implementsOption() {} method customizeLoad (line 76) | func (opt allowQuotedNewlines) customizeLoad(conf *bq.JobConfiguration... function IgnoreUnknownValues (line 85) | func IgnoreUnknownValues() Option { return ignoreUnknownValues{} } type ignoreUnknownValues (line 87) | type ignoreUnknownValues struct method implementsOption (line 89) | func (opt ignoreUnknownValues) implementsOption() {} method customizeLoad (line 91) | func (opt ignoreUnknownValues) customizeLoad(conf *bq.JobConfiguration... method load (line 95) | func (c *Client) load(ctx context.Context, dst *Table, src *GCSReference... FILE: vendor/google.golang.org/cloud/bigquery/query.go type Query (line 20) | type Query struct method implementsSource (line 30) | func (q *Query) implementsSource() {} method customizeQuerySrc (line 32) | func (q *Query) customizeQuerySrc(conf *bq.JobConfigurationQuery, proj... FILE: vendor/google.golang.org/cloud/bigquery/query_op.go type queryOption (line 24) | type queryOption interface function UseQueryCache (line 32) | func UseQueryCache() Option { return useQueryCache{} } type useQueryCache (line 34) | type useQueryCache struct method implementsOption (line 36) | func (opt useQueryCache) implementsOption() {} method customizeQuery (line 38) | func (opt useQueryCache) customizeQuery(conf *bq.JobConfigurationQuery... function JobPriority (line 45) | func JobPriority(priority string) Option { return jobPriority(priority) } type jobPriority (line 47) | type jobPriority method implementsOption (line 49) | func (opt jobPriority) implementsOption() {} method customizeQuery (line 51) | func (opt jobPriority) customizeQuery(conf *bq.JobConfigurationQuery, ... constant BatchPriority (line 56) | BatchPriority = "BATCH" constant InteractivePriority (line 57) | InteractivePriority = "INTERACTIVE" method query (line 63) | func (c *Client) query(ctx context.Context, dst *Table, src *Query, opti... FILE: vendor/google.golang.org/cloud/bigquery/read_op.go function RecordsPerRequest (line 18) | func RecordsPerRequest(n int64) ReadOption { return recordsPerRequest(n) } type recordsPerRequest (line 20) | type recordsPerRequest method customizeRead (line 22) | func (opt recordsPerRequest) customizeRead(conf *pagingConf) { method readTable (line 28) | func (c *Client) readTable(src *Table, options []ReadOption) (*Iterator,... FILE: vendor/google.golang.org/cloud/bigquery/schema.go type Schema (line 20) | type Schema type FieldSchema (line 24) | type FieldSchema struct method proto (line 46) | func (fs *FieldSchema) proto() *bq.TableFieldSchema { type FieldType (line 66) | type FieldType constant StringFieldType (line 69) | StringFieldType FieldType = "STRING" constant IntegerFieldType (line 70) | IntegerFieldType FieldType = "INTEGER" constant FloatFieldType (line 71) | FloatFieldType FieldType = "FLOAT" constant BooleanFieldType (line 72) | BooleanFieldType FieldType = "BOOLEAN" constant TimestampFieldType (line 73) | TimestampFieldType FieldType = "TIMESTAMP" constant RecordFieldType (line 74) | RecordFieldType FieldType = "RECORD" FILE: vendor/google.golang.org/cloud/bigquery/service.go type service (line 29) | type service interface type bigqueryService (line 35) | type bigqueryService struct method insertJob (line 48) | func (s *bigqueryService) insertJob(ctx context.Context, job *bq.Job, ... method readTabledata (line 75) | func (s *bigqueryService) readTabledata(ctx context.Context, conf *rea... method jobStatus (line 109) | func (s *bigqueryService) jobStatus(ctx context.Context, projectID, jo... function newBigqueryService (line 39) | func newBigqueryService(client *http.Client) (*bigqueryService, error) { type pagingConf (line 57) | type pagingConf struct type readTabledataConf (line 64) | type readTabledataConf struct type readTabledataResult (line 69) | type readTabledataResult struct function convertRow (line 101) | func convertRow(r *bq.TableRow) []Value { function jobStatusFromProto (line 120) | func jobStatusFromProto(status *bq.JobStatus) (*JobStatus, error) { FILE: vendor/google.golang.org/cloud/bigquery/table.go type Table (line 20) | type Table struct method implementsSource (line 64) | func (t *Table) implementsSource() {} method implementsReadSource (line 65) | func (t *Table) implementsReadSource() {} method implementsDestination (line 66) | func (t *Table) implementsDestination() {} method tableRefProto (line 69) | func (t *Table) tableRefProto() *bq.TableReference { method implicitTable (line 78) | func (t *Table) implicitTable() bool { method customizeLoadDst (line 82) | func (t *Table) customizeLoadDst(conf *bq.JobConfigurationLoad, projec... method customizeExtractSrc (line 88) | func (t *Table) customizeExtractSrc(conf *bq.JobConfigurationExtract, ... method customizeCopyDst (line 92) | func (t *Table) customizeCopyDst(conf *bq.JobConfigurationTableCopy, p... method customizeQueryDst (line 104) | func (t *Table) customizeQueryDst(conf *bq.JobConfigurationQuery, proj... method customizeReadSrc (line 112) | func (t *Table) customizeReadSrc(conf *readTabledataConf) { type Tables (line 35) | type Tables method implementsSource (line 67) | func (ts Tables) implementsSource() {} method customizeCopySrc (line 98) | func (ts Tables) customizeCopySrc(conf *bq.JobConfigurationTableCopy, ... type CreateDisposition (line 38) | type CreateDisposition constant CreateIfNeeded (line 42) | CreateIfNeeded CreateDisposition = "CREATE_IF_NEEDED" constant CreateNever (line 45) | CreateNever CreateDisposition = "CREATE_NEVER" type WriteDisposition (line 49) | type WriteDisposition constant WriteAppend (line 54) | WriteAppend WriteDisposition = "WRITE_APPEND" constant WriteTruncate (line 58) | WriteTruncate WriteDisposition = "WRITE_TRUNCATE" constant WriteEmpty (line 61) | WriteEmpty WriteDisposition = "WRITE_EMPTY" FILE: vendor/google.golang.org/cloud/bigquery/value.go type Value (line 18) | type Value interface type ValueLoader (line 22) | type ValueLoader interface type ValueList (line 27) | type ValueList method Load (line 30) | func (vs *ValueList) Load(v []Value) error { FILE: vendor/google.golang.org/cloud/bigtable/admin.go constant adminAddr (line 30) | adminAddr = "bigtabletableadmin.googleapis.com:443" type AdminClient (line 33) | type AdminClient struct method Close (line 64) | func (ac *AdminClient) Close() { method clusterPrefix (line 68) | func (ac *AdminClient) clusterPrefix() string { method Tables (line 73) | func (ac *AdminClient) Tables(ctx context.Context) ([]string, error) { method CreateTable (line 91) | func (ac *AdminClient) CreateTable(ctx context.Context, table string) ... method CreateColumnFamily (line 105) | func (ac *AdminClient) CreateColumnFamily(ctx context.Context, table, ... method DeleteTable (line 117) | func (ac *AdminClient) DeleteTable(ctx context.Context, table string) ... method DeleteColumnFamily (line 127) | func (ac *AdminClient) DeleteColumnFamily(ctx context.Context, table, ... method TableInfo (line 142) | func (ac *AdminClient) TableInfo(ctx context.Context, table string) (*... method SetClusterSize (line 159) | func (ac *AdminClient) SetClusterSize(ctx context.Context, nodes int) ... function NewAdminClient (line 42) | func NewAdminClient(ctx context.Context, project, zone, cluster string, ... type TableInfo (line 137) | type TableInfo struct FILE: vendor/google.golang.org/cloud/bigtable/bigtable.go constant prodAddr (line 33) | prodAddr = "bigtable.googleapis.com:443" type Client (line 36) | type Client struct method Close (line 65) | func (c *Client) Close() { method fullTableName (line 69) | func (c *Client) fullTableName(table string) string { method Open (line 80) | func (c *Client) Open(table string) *Table { function NewClient (line 44) | func NewClient(ctx context.Context, project, zone, cluster string, opts ... type Table (line 74) | type Table struct method ReadRows (line 95) | func (t *Table) ReadRows(ctx context.Context, arg RowRange, f func(Row... method ReadRow (line 134) | func (t *Table) ReadRow(ctx context.Context, row string, opts ...ReadO... method Apply (line 322) | func (t *Table) Apply(ctx context.Context, row string, m *Mutation, op... method ApplyReadModifyWrite (line 470) | func (t *Table) ApplyReadModifyWrite(ctx context.Context, row string, ... type chunkReader (line 143) | type chunkReader struct method process (line 149) | func (cr *chunkReader) process(rrr *btspb.ReadRowsResponse) Row { function decodeFamilyProto (line 175) | func decodeFamilyProto(r Row, row string, f *btdpb.Family) { type RowRange (line 195) | type RowRange struct method Unbounded (line 209) | func (r RowRange) Unbounded() bool { method Contains (line 214) | func (r RowRange) Contains(row string) bool { method String (line 219) | func (r RowRange) String() string { method proto (line 227) | func (r RowRange) proto() *btdpb.RowRange { function NewRange (line 201) | func NewRange(begin, end string) RowRange { function SingleRow (line 238) | func SingleRow(row string) RowRange { function PrefixRange (line 246) | func PrefixRange(prefix string) RowRange { function InfiniteRange (line 255) | func InfiniteRange(start string) RowRange { function prefixSuccessor (line 265) | func prefixSuccessor(prefix string) string { type ReadOption (line 281) | type ReadOption interface function RowFilter (line 286) | func RowFilter(f Filter) ReadOption { return rowFilter{f} } type rowFilter (line 288) | type rowFilter struct method set (line 290) | func (rf rowFilter) set(req *btspb.ReadRowsRequest) { req.Filter = rf.... function LimitRows (line 293) | func LimitRows(limit int64) ReadOption { return limitRows{limit} } type limitRows (line 295) | type limitRows struct method set (line 297) | func (lr limitRows) set(req *btspb.ReadRowsRequest) { req.NumRowsLimit... type Row (line 302) | type Row method Key (line 305) | func (r Row) Key() string { type ReadItem (line 315) | type ReadItem struct type ApplyOption (line 360) | type ApplyOption interface type applyAfterFunc (line 364) | type applyAfterFunc method after (line 366) | func (a applyAfterFunc) after(res proto.Message) { a(res) } function GetCondMutationResult (line 370) | func GetCondMutationResult(matched *bool) ApplyOption { type Mutation (line 379) | type Mutation struct method Set (line 404) | func (m *Mutation) Set(family, column string, ts Timestamp, value []by... method DeleteCellsInColumn (line 419) | func (m *Mutation) DeleteCellsInColumn(family, column string) { method DeleteTimestampRange (line 429) | func (m *Mutation) DeleteTimestampRange(family, column string, start, ... method DeleteCellsInFamily (line 441) | func (m *Mutation) DeleteCellsInFamily(family string) { method DeleteRow (line 448) | func (m *Mutation) DeleteRow() { function NewMutation (line 388) | func NewMutation() *Mutation { function NewCondMutation (line 397) | func NewCondMutation(cond Filter, mtrue, mfalse *Mutation) *Mutation { type Timestamp (line 453) | type Timestamp method Time (line 466) | func (ts Timestamp) Time() time.Time { return time.Unix(0, int64(ts)*1... constant ServerTime (line 457) | ServerTime Timestamp = -1 function Time (line 460) | func Time(t time.Time) Timestamp { return Timestamp(t.UnixNano() / 1e3) } function Now (line 463) | func Now() Timestamp { return Time(time.Now()) } type ReadModifyWrite (line 495) | type ReadModifyWrite struct method AppendValue (line 504) | func (m *ReadModifyWrite) AppendValue(family, column string, v []byte) { method Increment (line 516) | func (m *ReadModifyWrite) Increment(family, column string, delta int64) { function NewReadModifyWrite (line 500) | func NewReadModifyWrite() *ReadModifyWrite { return new(ReadModifyWrite) } FILE: vendor/google.golang.org/cloud/bigtable/bttest/inmem.go type Server (line 51) | type Server struct method Close (line 96) | func (s *Server) Close() { type server (line 62) | type server struct method CreateTable (line 101) | func (s *server) CreateTable(ctx context.Context, req *bttspb.CreateTa... method ListTables (line 115) | func (s *server) ListTables(ctx context.Context, req *bttspb.ListTable... method DeleteTable (line 130) | func (s *server) DeleteTable(ctx context.Context, req *bttspb.DeleteTa... method CreateColumnFamily (line 140) | func (s *server) CreateColumnFamily(ctx context.Context, req *bttspb.C... method ReadRows (line 161) | func (s *server) ReadRows(req *btspb.ReadRowsRequest, stream btspb.Big... method MutateRow (line 295) | func (s *server) MutateRow(ctx context.Context, req *btspb.MutateRowRe... method CheckAndMutateRow (line 313) | func (s *server) CheckAndMutateRow(ctx context.Context, req *btspb.Che... method ReadModifyWriteRow (line 437) | func (s *server) ReadModifyWriteRow(ctx context.Context, req *btspb.Re... function NewServer (line 73) | func NewServer() (*Server, error) { function streamRow (line 204) | func streamRow(stream btspb.BigtableService_ReadRowsServer, r *row, f *b... function filterCells (line 241) | func filterCells(f *btdpb.RowFilter, r *row, fam, col string, cs []cell)... function includeCell (line 260) | func includeCell(f *btdpb.RowFilter, r *row, fam, col string, cell cell)... function applyMutations (line 364) | func applyMutations(tbl *table, r *row, muts []*btdpb.Mutation) error { type table (line 510) | type table struct method validTimestamp (line 524) | func (t *table) validTimestamp(ts int64) bool { method mutableRow (line 529) | func (t *table) mutableRow(row string) *row { function newTable (line 517) | func newTable() *table { type byRowKey (line 551) | type byRowKey method Len (line 553) | func (b byRowKey) Len() int { return len(b) } method Swap (line 554) | func (b byRowKey) Swap(i, j int) { b[i], b[j] = b[j], b[i] } method Less (line 555) | func (b byRowKey) Less(i, j int) bool { return b[i].key < b[j].key } type row (line 557) | type row struct function newRow (line 564) | func newRow(key string) *row { type cell (line 571) | type cell struct type byDescTS (line 576) | type byDescTS method Len (line 578) | func (b byDescTS) Len() int { return len(b) } method Swap (line 579) | func (b byDescTS) Swap(i, j int) { b[i], b[j] = b[j], b[i] } method Less (line 580) | func (b byDescTS) Less(i, j int) bool { return b[i].ts > b[j].ts } FILE: vendor/google.golang.org/cloud/bigtable/cmd/cbt/cbt.go function getClient (line 56) | func getClient() *bigtable.Client { function getAdminClient (line 67) | func getAdminClient() *bigtable.AdminClient { function configFilename (line 78) | func configFilename() string { function loadConfig (line 83) | func loadConfig() { function main (line 116) | func main() { function usage (line 160) | func usage() { function init (line 168) | func init() { function doCount (line 283) | func doCount(ctx context.Context, args ...string) { function doCreateFamily (line 300) | func doCreateFamily(ctx context.Context, args ...string) { function doCreateTable (line 310) | func doCreateTable(ctx context.Context, args ...string) { function doDeleteFamily (line 320) | func doDeleteFamily(ctx context.Context, args ...string) { function doDeleteRow (line 330) | func doDeleteRow(ctx context.Context, args ...string) { function doDeleteTable (line 342) | func doDeleteTable(ctx context.Context, args ...string) { function init (line 358) | func init() { function doDoc (line 363) | func doDoc(ctx context.Context, args ...string) { doDocFn(ctx, args...) } function doHelp (line 364) | func doHelp(ctx context.Context, args ...string) { doHelpFn(ctx, args...) } function doDocReal (line 366) | func doDocReal(ctx context.Context, args ...string) { function doHelpReal (line 421) | func doHelpReal(ctx context.Context, args ...string) { function doLookup (line 435) | func doLookup(ctx context.Context, args ...string) { function printRow (line 448) | func printRow(r bigtable.Row) { type byColumn (line 468) | type byColumn method Len (line 470) | func (b byColumn) Len() int { return len(b) } method Swap (line 471) | func (b byColumn) Swap(i, j int) { b[i], b[j] = b[j], b[i] } method Less (line 472) | func (b byColumn) Less(i, j int) bool { return b[i].Column < b[j].Colu... function doLS (line 474) | func doLS(ctx context.Context, args ...string) { function doRead (line 500) | func doRead(ctx context.Context, args ...string) { function doSet (line 546) | func doSet(ctx context.Context, args ...string) { function doSetClusterSize (line 575) | func doSetClusterSize(ctx context.Context, args ...string) { FILE: vendor/google.golang.org/cloud/bigtable/doc.go constant Scope (line 95) | Scope = "https://www.googleapis.com/auth/bigtable.data" constant ReadonlyScope (line 97) | ReadonlyScope = "https://www.googleapis.com/auth/bigtable.readonly" constant AdminScope (line 100) | AdminScope = "https://www.googleapis.com/auth/bigtable.admin" FILE: vendor/google.golang.org/cloud/bigtable/filter.go type Filter (line 27) | type Filter interface function ChainFilters (line 33) | func ChainFilters(sub ...Filter) Filter { return chainFilter{sub} } type chainFilter (line 35) | type chainFilter struct method String (line 39) | func (cf chainFilter) String() string { method proto (line 47) | func (cf chainFilter) proto() *btdpb.RowFilter { function InterleaveFilters (line 59) | func InterleaveFilters(sub ...Filter) Filter { return interleaveFilter{s... type interleaveFilter (line 61) | type interleaveFilter struct method String (line 65) | func (ilf interleaveFilter) String() string { method proto (line 73) | func (ilf interleaveFilter) proto() *btdpb.RowFilter { function RowKeyFilter (line 86) | func RowKeyFilter(pattern string) Filter { return rowKeyFilter(pattern) } type rowKeyFilter (line 88) | type rowKeyFilter method String (line 90) | func (rkf rowKeyFilter) String() string { return fmt.Sprintf("row(%s)"... method proto (line 92) | func (rkf rowKeyFilter) proto() *btdpb.RowFilter { function FamilyFilter (line 99) | func FamilyFilter(pattern string) Filter { return familyFilter(pattern) } type familyFilter (line 101) | type familyFilter method String (line 103) | func (ff familyFilter) String() string { return fmt.Sprintf("col(%s:)"... method proto (line 105) | func (ff familyFilter) proto() *btdpb.RowFilter { function ColumnFilter (line 112) | func ColumnFilter(pattern string) Filter { return columnFilter(pattern) } type columnFilter (line 114) | type columnFilter method String (line 116) | func (cf columnFilter) String() string { return fmt.Sprintf("col(.*:%s... method proto (line 118) | func (cf columnFilter) proto() *btdpb.RowFilter { function ValueFilter (line 125) | func ValueFilter(pattern string) Filter { return valueFilter(pattern) } type valueFilter (line 127) | type valueFilter method String (line 129) | func (vf valueFilter) String() string { return fmt.Sprintf("value_matc... method proto (line 131) | func (vf valueFilter) proto() *btdpb.RowFilter { function LatestNFilter (line 136) | func LatestNFilter(n int) Filter { return latestNFilter(n) } type latestNFilter (line 138) | type latestNFilter method String (line 140) | func (lnf latestNFilter) String() string { return fmt.Sprintf("col(*,%... method proto (line 142) | func (lnf latestNFilter) proto() *btdpb.RowFilter { function StripValueFilter (line 147) | func StripValueFilter() Filter { return stripValueFilter{} } type stripValueFilter (line 149) | type stripValueFilter struct method String (line 151) | func (stripValueFilter) String() string { return "strip_value... method proto (line 152) | func (stripValueFilter) proto() *btdpb.RowFilter { return &btdpb.RowFi... FILE: vendor/google.golang.org/cloud/bigtable/internal/cluster_data_proto/bigtable_cluster_data.pb.go type Zone_Status (line 23) | type Zone_Status method String (line 49) | func (x Zone_Status) String() string { constant Zone_UNKNOWN (line 27) | Zone_UNKNOWN Zone_Status = 0 constant Zone_OK (line 29) | Zone_OK Zone_Status = 1 constant Zone_PLANNED_MAINTENANCE (line 31) | Zone_PLANNED_MAINTENANCE Zone_Status = 2 constant Zone_EMERGENCY_MAINENANCE (line 33) | Zone_EMERGENCY_MAINENANCE Zone_Status = 3 type Zone (line 55) | type Zone struct method Reset (line 65) | func (m *Zone) Reset() { *m = Zone{} } method String (line 66) | func (m *Zone) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 67) | func (*Zone) ProtoMessage() {} type Cluster (line 70) | type Cluster struct method Reset (line 87) | func (m *Cluster) Reset() { *m = Cluster{} } method String (line 88) | func (m *Cluster) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 89) | func (*Cluster) ProtoMessage() {} function init (line 91) | func init() { FILE: vendor/google.golang.org/cloud/bigtable/internal/cluster_service_proto/bigtable_cluster_service.pb.go function init (line 23) | func init() { type BigtableClusterServiceClient (line 28) | type BigtableClusterServiceClient interface type bigtableClusterServiceClient (line 94) | type bigtableClusterServiceClient struct method ListZones (line 102) | func (c *bigtableClusterServiceClient) ListZones(ctx context.Context, ... method GetCluster (line 111) | func (c *bigtableClusterServiceClient) GetCluster(ctx context.Context,... method ListClusters (line 120) | func (c *bigtableClusterServiceClient) ListClusters(ctx context.Contex... method CreateCluster (line 129) | func (c *bigtableClusterServiceClient) CreateCluster(ctx context.Conte... method UpdateCluster (line 138) | func (c *bigtableClusterServiceClient) UpdateCluster(ctx context.Conte... method DeleteCluster (line 147) | func (c *bigtableClusterServiceClient) DeleteCluster(ctx context.Conte... function NewBigtableClusterServiceClient (line 98) | func NewBigtableClusterServiceClient(cc *grpc.ClientConn) BigtableCluste... type BigtableClusterServiceServer (line 158) | type BigtableClusterServiceServer interface function RegisterBigtableClusterServiceServer (line 224) | func RegisterBigtableClusterServiceServer(s *grpc.Server, srv BigtableCl... function _BigtableClusterService_ListZones_Handler (line 228) | func _BigtableClusterService_ListZones_Handler(srv interface{}, ctx cont... function _BigtableClusterService_GetCluster_Handler (line 240) | func _BigtableClusterService_GetCluster_Handler(srv interface{}, ctx con... function _BigtableClusterService_ListClusters_Handler (line 252) | func _BigtableClusterService_ListClusters_Handler(srv interface{}, ctx c... function _BigtableClusterService_CreateCluster_Handler (line 264) | func _BigtableClusterService_CreateCluster_Handler(srv interface{}, ctx ... function _BigtableClusterService_UpdateCluster_Handler (line 276) | func _BigtableClusterService_UpdateCluster_Handler(srv interface{}, ctx ... function _BigtableClusterService_DeleteCluster_Handler (line 288) | func _BigtableClusterService_DeleteCluster_Handler(srv interface{}, ctx ... FILE: vendor/google.golang.org/cloud/bigtable/internal/cluster_service_proto/bigtable_cluster_service_messages.pb.go type ListZonesRequest (line 34) | type ListZonesRequest struct method Reset (line 41) | func (m *ListZonesRequest) Reset() { *m = ListZonesRequest{} } method String (line 42) | func (m *ListZonesRequest) String() string { return proto.CompactTextS... method ProtoMessage (line 43) | func (*ListZonesRequest) ProtoMessage() {} type ListZonesResponse (line 46) | type ListZonesResponse struct method Reset (line 51) | func (m *ListZonesResponse) Reset() { *m = ListZonesResponse{} } method String (line 52) | func (m *ListZonesResponse) String() string { return proto.CompactText... method ProtoMessage (line 53) | func (*ListZonesResponse) ProtoMessage() {} method GetZones (line 55) | func (m *ListZonesResponse) GetZones() []*google_bigtable_admin_cluste... type GetClusterRequest (line 63) | type GetClusterRequest struct method Reset (line 69) | func (m *GetClusterRequest) Reset() { *m = GetClusterRequest{} } method String (line 70) | func (m *GetClusterRequest) String() string { return proto.CompactText... method ProtoMessage (line 71) | func (*GetClusterRequest) ProtoMessage() {} type ListClustersRequest (line 74) | type ListClustersRequest struct method Reset (line 80) | func (m *ListClustersRequest) Reset() { *m = ListClustersReque... method String (line 81) | func (m *ListClustersRequest) String() string { return proto.CompactTe... method ProtoMessage (line 82) | func (*ListClustersRequest) ProtoMessage() {} type ListClustersResponse (line 85) | type ListClustersResponse struct method Reset (line 92) | func (m *ListClustersResponse) Reset() { *m = ListClustersResp... method String (line 93) | func (m *ListClustersResponse) String() string { return proto.CompactT... method ProtoMessage (line 94) | func (*ListClustersResponse) ProtoMessage() {} method GetClusters (line 96) | func (m *ListClustersResponse) GetClusters() []*google_bigtable_admin_... method GetFailedZones (line 103) | func (m *ListClustersResponse) GetFailedZones() []*google_bigtable_adm... type CreateClusterRequest (line 111) | type CreateClusterRequest struct method Reset (line 125) | func (m *CreateClusterRequest) Reset() { *m = CreateClusterReq... method String (line 126) | func (m *CreateClusterRequest) String() string { return proto.CompactT... method ProtoMessage (line 127) | func (*CreateClusterRequest) ProtoMessage() {} method GetCluster (line 129) | func (m *CreateClusterRequest) GetCluster() *google_bigtable_admin_clu... type CreateClusterMetadata (line 138) | type CreateClusterMetadata struct method Reset (line 143) | func (m *CreateClusterMetadata) Reset() { *m = CreateClusterMe... method String (line 144) | func (m *CreateClusterMetadata) String() string { return proto.Compact... method ProtoMessage (line 145) | func (*CreateClusterMetadata) ProtoMessage() {} method GetOriginalRequest (line 147) | func (m *CreateClusterMetadata) GetOriginalRequest() *CreateClusterReq... type UpdateClusterMetadata (line 156) | type UpdateClusterMetadata struct method Reset (line 161) | func (m *UpdateClusterMetadata) Reset() { *m = UpdateClusterMe... method String (line 162) | func (m *UpdateClusterMetadata) String() string { return proto.Compact... method ProtoMessage (line 163) | func (*UpdateClusterMetadata) ProtoMessage() {} method GetOriginalRequest (line 165) | func (m *UpdateClusterMetadata) GetOriginalRequest() *google_bigtable_... type DeleteClusterRequest (line 173) | type DeleteClusterRequest struct method Reset (line 179) | func (m *DeleteClusterRequest) Reset() { *m = DeleteClusterReq... method String (line 180) | func (m *DeleteClusterRequest) String() string { return proto.CompactT... method ProtoMessage (line 181) | func (*DeleteClusterRequest) ProtoMessage() {} type UndeleteClusterRequest (line 184) | type UndeleteClusterRequest struct method Reset (line 190) | func (m *UndeleteClusterRequest) Reset() { *m = UndeleteCluste... method String (line 191) | func (m *UndeleteClusterRequest) String() string { return proto.Compac... method ProtoMessage (line 192) | func (*UndeleteClusterRequest) ProtoMessage() {} type UndeleteClusterMetadata (line 196) | type UndeleteClusterMetadata struct method Reset (line 199) | func (m *UndeleteClusterMetadata) Reset() { *m = UndeleteClust... method String (line 200) | func (m *UndeleteClusterMetadata) String() string { return proto.Compa... method ProtoMessage (line 201) | func (*UndeleteClusterMetadata) ProtoMessage() {} function init (line 203) | func init() { FILE: vendor/google.golang.org/cloud/bigtable/internal/data_proto/bigtable_data.pb.go type Row (line 33) | type Row struct method Reset (line 43) | func (m *Row) Reset() { *m = Row{} } method String (line 44) | func (m *Row) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 45) | func (*Row) ProtoMessage() {} method GetFamilies (line 47) | func (m *Row) GetFamilies() []*Family { type Family (line 55) | type Family struct method Reset (line 67) | func (m *Family) Reset() { *m = Family{} } method String (line 68) | func (m *Family) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 69) | func (*Family) ProtoMessage() {} method GetColumns (line 71) | func (m *Family) GetColumns() []*Column { type Column (line 79) | type Column struct method Reset (line 90) | func (m *Column) Reset() { *m = Column{} } method String (line 91) | func (m *Column) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 92) | func (*Column) ProtoMessage() {} method GetCells (line 94) | func (m *Column) GetCells() []*Cell { type Cell (line 102) | type Cell struct method Reset (line 116) | func (m *Cell) Reset() { *m = Cell{} } method String (line 117) | func (m *Cell) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 118) | func (*Cell) ProtoMessage() {} type RowRange (line 121) | type RowRange struct method Reset (line 128) | func (m *RowRange) Reset() { *m = RowRange{} } method String (line 129) | func (m *RowRange) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 130) | func (*RowRange) ProtoMessage() {} type ColumnRange (line 136) | type ColumnRange struct method Reset (line 149) | func (m *ColumnRange) Reset() { *m = ColumnRange{} } method String (line 150) | func (m *ColumnRange) String() string { return proto.CompactTextString... method ProtoMessage (line 151) | func (*ColumnRange) ProtoMessage() {} type TimestampRange (line 154) | type TimestampRange struct method Reset (line 161) | func (m *TimestampRange) Reset() { *m = TimestampRange{} } method String (line 162) | func (m *TimestampRange) String() string { return proto.CompactTextStr... method ProtoMessage (line 163) | func (*TimestampRange) ProtoMessage() {} type ValueRange (line 166) | type ValueRange struct method Reset (line 177) | func (m *ValueRange) Reset() { *m = ValueRange{} } method String (line 178) | func (m *ValueRange) String() string { return proto.CompactTextString(... method ProtoMessage (line 179) | func (*ValueRange) ProtoMessage() {} type RowFilter (line 214) | type RowFilter struct method Reset (line 274) | func (m *RowFilter) Reset() { *m = RowFilter{} } method String (line 275) | func (m *RowFilter) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 276) | func (*RowFilter) ProtoMessage() {} method GetChain (line 278) | func (m *RowFilter) GetChain() *RowFilter_Chain { method GetInterleave (line 285) | func (m *RowFilter) GetInterleave() *RowFilter_Interleave { method GetCondition (line 292) | func (m *RowFilter) GetCondition() *RowFilter_Condition { method GetColumnRangeFilter (line 299) | func (m *RowFilter) GetColumnRangeFilter() *ColumnRange { method GetTimestampRangeFilter (line 306) | func (m *RowFilter) GetTimestampRangeFilter() *TimestampRange { method GetValueRangeFilter (line 313) | func (m *RowFilter) GetValueRangeFilter() *ValueRange { type RowFilter_Chain (line 321) | type RowFilter_Chain struct method Reset (line 328) | func (m *RowFilter_Chain) Reset() { *m = RowFilter_Chain{} } method String (line 329) | func (m *RowFilter_Chain) String() string { return proto.CompactTextSt... method ProtoMessage (line 330) | func (*RowFilter_Chain) ProtoMessage() {} method GetFilters (line 332) | func (m *RowFilter_Chain) GetFilters() []*RowFilter { type RowFilter_Interleave (line 341) | type RowFilter_Interleave struct method Reset (line 369) | func (m *RowFilter_Interleave) Reset() { *m = RowFilter_Interl... method String (line 370) | func (m *RowFilter_Interleave) String() string { return proto.CompactT... method ProtoMessage (line 371) | func (*RowFilter_Interleave) ProtoMessage() {} method GetFilters (line 373) | func (m *RowFilter_Interleave) GetFilters() []*RowFilter { type RowFilter_Condition (line 387) | type RowFilter_Condition struct method Reset (line 400) | func (m *RowFilter_Condition) Reset() { *m = RowFilter_Conditi... method String (line 401) | func (m *RowFilter_Condition) String() string { return proto.CompactTe... method ProtoMessage (line 402) | func (*RowFilter_Condition) ProtoMessage() {} method GetPredicateFilter (line 404) | func (m *RowFilter_Condition) GetPredicateFilter() *RowFilter { method GetTrueFilter (line 411) | func (m *RowFilter_Condition) GetTrueFilter() *RowFilter { method GetFalseFilter (line 418) | func (m *RowFilter_Condition) GetFalseFilter() *RowFilter { type Mutation (line 426) | type Mutation struct method Reset (line 437) | func (m *Mutation) Reset() { *m = Mutation{} } method String (line 438) | func (m *Mutation) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 439) | func (*Mutation) ProtoMessage() {} method GetSetCell (line 441) | func (m *Mutation) GetSetCell() *Mutation_SetCell { method GetDeleteFromColumn (line 448) | func (m *Mutation) GetDeleteFromColumn() *Mutation_DeleteFromColumn { method GetDeleteFromFamily (line 455) | func (m *Mutation) GetDeleteFromFamily() *Mutation_DeleteFromFamily { method GetDeleteFromRow (line 462) | func (m *Mutation) GetDeleteFromRow() *Mutation_DeleteFromRow { type Mutation_SetCell (line 470) | type Mutation_SetCell struct method Reset (line 487) | func (m *Mutation_SetCell) Reset() { *m = Mutation_SetCell{} } method String (line 488) | func (m *Mutation_SetCell) String() string { return proto.CompactTextS... method ProtoMessage (line 489) | func (*Mutation_SetCell) ProtoMessage() {} type Mutation_DeleteFromColumn (line 493) | type Mutation_DeleteFromColumn struct method Reset (line 504) | func (m *Mutation_DeleteFromColumn) Reset() { *m = Mutation_De... method String (line 505) | func (m *Mutation_DeleteFromColumn) String() string { return proto.Com... method ProtoMessage (line 506) | func (*Mutation_DeleteFromColumn) ProtoMessage() {} method GetTimeRange (line 508) | func (m *Mutation_DeleteFromColumn) GetTimeRange() *TimestampRange { type Mutation_DeleteFromFamily (line 516) | type Mutation_DeleteFromFamily struct method Reset (line 522) | func (m *Mutation_DeleteFromFamily) Reset() { *m = Mutation_De... method String (line 523) | func (m *Mutation_DeleteFromFamily) String() string { return proto.Com... method ProtoMessage (line 524) | func (*Mutation_DeleteFromFamily) ProtoMessage() {} type Mutation_DeleteFromRow (line 527) | type Mutation_DeleteFromRow struct method Reset (line 530) | func (m *Mutation_DeleteFromRow) Reset() { *m = Mutation_Delet... method String (line 531) | func (m *Mutation_DeleteFromRow) String() string { return proto.Compac... method ProtoMessage (line 532) | func (*Mutation_DeleteFromRow) ProtoMessage() {} type ReadModifyWriteRule (line 536) | type ReadModifyWriteRule struct method Reset (line 555) | func (m *ReadModifyWriteRule) Reset() { *m = ReadModifyWriteRu... method String (line 556) | func (m *ReadModifyWriteRule) String() string { return proto.CompactTe... method ProtoMessage (line 557) | func (*ReadModifyWriteRule) ProtoMessage() {} function init (line 559) | func init() { FILE: vendor/google.golang.org/cloud/bigtable/internal/empty/empty.pb.go type Empty (line 29) | type Empty struct method Reset (line 32) | func (m *Empty) Reset() { *m = Empty{} } method String (line 33) | func (m *Empty) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 34) | func (*Empty) ProtoMessage() {} function init (line 36) | func init() { FILE: vendor/google.golang.org/cloud/bigtable/internal/service_proto/bigtable_service.pb.go function init (line 23) | func init() { type BigtableServiceClient (line 28) | type BigtableServiceClient interface type bigtableServiceClient (line 51) | type bigtableServiceClient struct method ReadRows (line 59) | func (c *bigtableServiceClient) ReadRows(ctx context.Context, in *Read... method SampleRowKeys (line 91) | func (c *bigtableServiceClient) SampleRowKeys(ctx context.Context, in ... method MutateRow (line 123) | func (c *bigtableServiceClient) MutateRow(ctx context.Context, in *Mut... method CheckAndMutateRow (line 132) | func (c *bigtableServiceClient) CheckAndMutateRow(ctx context.Context,... method ReadModifyWriteRow (line 141) | func (c *bigtableServiceClient) ReadModifyWriteRow(ctx context.Context... function NewBigtableServiceClient (line 55) | func NewBigtableServiceClient(cc *grpc.ClientConn) BigtableServiceClient { type BigtableService_ReadRowsClient (line 74) | type BigtableService_ReadRowsClient interface type bigtableServiceReadRowsClient (line 79) | type bigtableServiceReadRowsClient struct method Recv (line 83) | func (x *bigtableServiceReadRowsClient) Recv() (*ReadRowsResponse, err... type BigtableService_SampleRowKeysClient (line 106) | type BigtableService_SampleRowKeysClient interface type bigtableServiceSampleRowKeysClient (line 111) | type bigtableServiceSampleRowKeysClient struct method Recv (line 115) | func (x *bigtableServiceSampleRowKeysClient) Recv() (*SampleRowKeysRes... type BigtableServiceServer (line 152) | type BigtableServiceServer interface function RegisterBigtableServiceServer (line 175) | func RegisterBigtableServiceServer(s *grpc.Server, srv BigtableServiceSe... function _BigtableService_ReadRows_Handler (line 179) | func _BigtableService_ReadRows_Handler(srv interface{}, stream grpc.Serv... type BigtableService_ReadRowsServer (line 187) | type BigtableService_ReadRowsServer interface type bigtableServiceReadRowsServer (line 192) | type bigtableServiceReadRowsServer struct method Send (line 196) | func (x *bigtableServiceReadRowsServer) Send(m *ReadRowsResponse) error { function _BigtableService_SampleRowKeys_Handler (line 200) | func _BigtableService_SampleRowKeys_Handler(srv interface{}, stream grpc... type BigtableService_SampleRowKeysServer (line 208) | type BigtableService_SampleRowKeysServer interface type bigtableServiceSampleRowKeysServer (line 213) | type bigtableServiceSampleRowKeysServer struct method Send (line 217) | func (x *bigtableServiceSampleRowKeysServer) Send(m *SampleRowKeysResp... function _BigtableService_MutateRow_Handler (line 221) | func _BigtableService_MutateRow_Handler(srv interface{}, ctx context.Con... function _BigtableService_CheckAndMutateRow_Handler (line 233) | func _BigtableService_CheckAndMutateRow_Handler(srv interface{}, ctx con... function _BigtableService_ReadModifyWriteRow_Handler (line 245) | func _BigtableService_ReadModifyWriteRow_Handler(srv interface{}, ctx co... FILE: vendor/google.golang.org/cloud/bigtable/internal/service_proto/bigtable_service_messages.pb.go type ReadRowsRequest (line 31) | type ReadRowsRequest struct method Reset (line 60) | func (m *ReadRowsRequest) Reset() { *m = ReadRowsRequest{} } method String (line 61) | func (m *ReadRowsRequest) String() string { return proto.CompactTextSt... method ProtoMessage (line 62) | func (*ReadRowsRequest) ProtoMessage() {} method GetRowRange (line 64) | func (m *ReadRowsRequest) GetRowRange() *google_bigtable_v11.RowRange { method GetFilter (line 71) | func (m *ReadRowsRequest) GetFilter() *google_bigtable_v11.RowFilter { type ReadRowsResponse (line 79) | type ReadRowsResponse struct method Reset (line 88) | func (m *ReadRowsResponse) Reset() { *m = ReadRowsResponse{} } method String (line 89) | func (m *ReadRowsResponse) String() string { return proto.CompactTextS... method ProtoMessage (line 90) | func (*ReadRowsResponse) ProtoMessage() {} method GetChunks (line 92) | func (m *ReadRowsResponse) GetChunks() []*ReadRowsResponse_Chunk { type ReadRowsResponse_Chunk (line 101) | type ReadRowsResponse_Chunk struct method Reset (line 115) | func (m *ReadRowsResponse_Chunk) Reset() { *m = ReadRowsRespon... method String (line 116) | func (m *ReadRowsResponse_Chunk) String() string { return proto.Compac... method ProtoMessage (line 117) | func (*ReadRowsResponse_Chunk) ProtoMessage() {} method GetRowContents (line 119) | func (m *ReadRowsResponse_Chunk) GetRowContents() *google_bigtable_v11... type SampleRowKeysRequest (line 127) | type SampleRowKeysRequest struct method Reset (line 132) | func (m *SampleRowKeysRequest) Reset() { *m = SampleRowKeysReq... method String (line 133) | func (m *SampleRowKeysRequest) String() string { return proto.CompactT... method ProtoMessage (line 134) | func (*SampleRowKeysRequest) ProtoMessage() {} type SampleRowKeysResponse (line 137) | type SampleRowKeysResponse struct method Reset (line 153) | func (m *SampleRowKeysResponse) Reset() { *m = SampleRowKeysRe... method String (line 154) | func (m *SampleRowKeysResponse) String() string { return proto.Compact... method ProtoMessage (line 155) | func (*SampleRowKeysResponse) ProtoMessage() {} type MutateRowRequest (line 158) | type MutateRowRequest struct method Reset (line 168) | func (m *MutateRowRequest) Reset() { *m = MutateRowRequest{} } method String (line 169) | func (m *MutateRowRequest) String() string { return proto.CompactTextS... method ProtoMessage (line 170) | func (*MutateRowRequest) ProtoMessage() {} method GetMutations (line 172) | func (m *MutateRowRequest) GetMutations() []*google_bigtable_v11.Mutat... type CheckAndMutateRowRequest (line 180) | type CheckAndMutateRowRequest struct method Reset (line 208) | func (m *CheckAndMutateRowRequest) Reset() { *m = CheckAndMuta... method String (line 209) | func (m *CheckAndMutateRowRequest) String() string { return proto.Comp... method ProtoMessage (line 210) | func (*CheckAndMutateRowRequest) ProtoMessage() {} method GetTrueMutations (line 212) | func (m *CheckAndMutateRowRequest) GetTrueMutations() []*google_bigtab... method GetFalseMutations (line 219) | func (m *CheckAndMutateRowRequest) GetFalseMutations() []*google_bigta... method GetPredicateFilter (line 226) | func (m *CheckAndMutateRowRequest) GetPredicateFilter() *google_bigtab... type CheckAndMutateRowResponse (line 234) | type CheckAndMutateRowResponse struct method Reset (line 240) | func (m *CheckAndMutateRowResponse) Reset() { *m = CheckAndMut... method String (line 241) | func (m *CheckAndMutateRowResponse) String() string { return proto.Com... method ProtoMessage (line 242) | func (*CheckAndMutateRowResponse) ProtoMessage() {} type ReadModifyWriteRowRequest (line 245) | type ReadModifyWriteRowRequest struct method Reset (line 257) | func (m *ReadModifyWriteRowRequest) Reset() { *m = ReadModifyW... method String (line 258) | func (m *ReadModifyWriteRowRequest) String() string { return proto.Com... method ProtoMessage (line 259) | func (*ReadModifyWriteRowRequest) ProtoMessage() {} method GetRules (line 261) | func (m *ReadModifyWriteRowRequest) GetRules() []*google_bigtable_v11.... function init (line 268) | func init() { FILE: vendor/google.golang.org/cloud/bigtable/internal/table_data_proto/bigtable_table_data.pb.go type Table_TimestampGranularity (line 22) | type Table_TimestampGranularity method String (line 35) | func (x Table_TimestampGranularity) String() string { constant Table_MILLIS (line 25) | Table_MILLIS Table_TimestampGranularity = 0 type Table (line 41) | type Table struct method Reset (line 53) | func (m *Table) Reset() { *m = Table{} } method String (line 54) | func (m *Table) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 55) | func (*Table) ProtoMessage() {} method GetColumnFamilies (line 57) | func (m *Table) GetColumnFamilies() map[string]*ColumnFamily { type ColumnFamily (line 65) | type ColumnFamily struct method Reset (line 98) | func (m *ColumnFamily) Reset() { *m = ColumnFamily{} } method String (line 99) | func (m *ColumnFamily) String() string { return proto.CompactTextStrin... method ProtoMessage (line 100) | func (*ColumnFamily) ProtoMessage() {} function init (line 102) | func init() { FILE: vendor/google.golang.org/cloud/bigtable/internal/table_service_proto/bigtable_table_service.pb.go function init (line 23) | func init() { type BigtableTableServiceClient (line 28) | type BigtableTableServiceClient interface type bigtableTableServiceClient (line 50) | type bigtableTableServiceClient struct method CreateTable (line 58) | func (c *bigtableTableServiceClient) CreateTable(ctx context.Context, ... method ListTables (line 67) | func (c *bigtableTableServiceClient) ListTables(ctx context.Context, i... method GetTable (line 76) | func (c *bigtableTableServiceClient) GetTable(ctx context.Context, in ... method DeleteTable (line 85) | func (c *bigtableTableServiceClient) DeleteTable(ctx context.Context, ... method RenameTable (line 94) | func (c *bigtableTableServiceClient) RenameTable(ctx context.Context, ... method CreateColumnFamily (line 103) | func (c *bigtableTableServiceClient) CreateColumnFamily(ctx context.Co... method UpdateColumnFamily (line 112) | func (c *bigtableTableServiceClient) UpdateColumnFamily(ctx context.Co... method DeleteColumnFamily (line 121) | func (c *bigtableTableServiceClient) DeleteColumnFamily(ctx context.Co... function NewBigtableTableServiceClient (line 54) | func NewBigtableTableServiceClient(cc *grpc.ClientConn) BigtableTableSer... type BigtableTableServiceServer (line 132) | type BigtableTableServiceServer interface function RegisterBigtableTableServiceServer (line 154) | func RegisterBigtableTableServiceServer(s *grpc.Server, srv BigtableTabl... function _BigtableTableService_CreateTable_Handler (line 158) | func _BigtableTableService_CreateTable_Handler(srv interface{}, ctx cont... function _BigtableTableService_ListTables_Handler (line 170) | func _BigtableTableService_ListTables_Handler(srv interface{}, ctx conte... function _BigtableTableService_GetTable_Handler (line 182) | func _BigtableTableService_GetTable_Handler(srv interface{}, ctx context... function _BigtableTableService_DeleteTable_Handler (line 194) | func _BigtableTableService_DeleteTable_Handler(srv interface{}, ctx cont... function _BigtableTableService_RenameTable_Handler (line 206) | func _BigtableTableService_RenameTable_Handler(srv interface{}, ctx cont... function _BigtableTableService_CreateColumnFamily_Handler (line 218) | func _BigtableTableService_CreateColumnFamily_Handler(srv interface{}, c... function _BigtableTableService_UpdateColumnFamily_Handler (line 230) | func _BigtableTableService_UpdateColumnFamily_Handler(srv interface{}, c... function _BigtableTableService_DeleteColumnFamily_Handler (line 242) | func _BigtableTableService_DeleteColumnFamily_Handler(srv interface{}, c... FILE: vendor/google.golang.org/cloud/bigtable/internal/table_service_proto/bigtable_table_service_messages.pb.go type CreateTableRequest (line 30) | type CreateTableRequest struct method Reset (line 41) | func (m *CreateTableRequest) Reset() { *m = CreateTableRequest... method String (line 42) | func (m *CreateTableRequest) String() string { return proto.CompactTex... method ProtoMessage (line 43) | func (*CreateTableRequest) ProtoMessage() {} method GetTable (line 45) | func (m *CreateTableRequest) GetTable() *google_bigtable_admin_table_v... type ListTablesRequest (line 52) | type ListTablesRequest struct method Reset (line 57) | func (m *ListTablesRequest) Reset() { *m = ListTablesRequest{} } method String (line 58) | func (m *ListTablesRequest) String() string { return proto.CompactText... method ProtoMessage (line 59) | func (*ListTablesRequest) ProtoMessage() {} type ListTablesResponse (line 61) | type ListTablesResponse struct method Reset (line 67) | func (m *ListTablesResponse) Reset() { *m = ListTablesResponse... method String (line 68) | func (m *ListTablesResponse) String() string { return proto.CompactTex... method ProtoMessage (line 69) | func (*ListTablesResponse) ProtoMessage() {} method GetTables (line 71) | func (m *ListTablesResponse) GetTables() []*google_bigtable_admin_tabl... type GetTableRequest (line 78) | type GetTableRequest struct method Reset (line 83) | func (m *GetTableRequest) Reset() { *m = GetTableRequest{} } method String (line 84) | func (m *GetTableRequest) String() string { return proto.CompactTextSt... method ProtoMessage (line 85) | func (*GetTableRequest) ProtoMessage() {} type DeleteTableRequest (line 87) | type DeleteTableRequest struct method Reset (line 92) | func (m *DeleteTableRequest) Reset() { *m = DeleteTableRequest... method String (line 93) | func (m *DeleteTableRequest) String() string { return proto.CompactTex... method ProtoMessage (line 94) | func (*DeleteTableRequest) ProtoMessage() {} type RenameTableRequest (line 96) | type RenameTableRequest struct method Reset (line 104) | func (m *RenameTableRequest) Reset() { *m = RenameTableRequest... method String (line 105) | func (m *RenameTableRequest) String() string { return proto.CompactTex... method ProtoMessage (line 106) | func (*RenameTableRequest) ProtoMessage() {} type CreateColumnFamilyRequest (line 108) | type CreateColumnFamilyRequest struct method Reset (line 118) | func (m *CreateColumnFamilyRequest) Reset() { *m = CreateColum... method String (line 119) | func (m *CreateColumnFamilyRequest) String() string { return proto.Com... method ProtoMessage (line 120) | func (*CreateColumnFamilyRequest) ProtoMessage() {} method GetColumnFamily (line 122) | func (m *CreateColumnFamilyRequest) GetColumnFamily() *google_bigtable... type DeleteColumnFamilyRequest (line 129) | type DeleteColumnFamilyRequest struct method Reset (line 134) | func (m *DeleteColumnFamilyRequest) Reset() { *m = DeleteColum... method String (line 135) | func (m *DeleteColumnFamilyRequest) String() string { return proto.Com... method ProtoMessage (line 136) | func (*DeleteColumnFamilyRequest) ProtoMessage() {} function init (line 138) | func init() { FILE: vendor/google.golang.org/cloud/bigtable/sample/search.go constant prototypeTableName (line 79) | prototypeTableName = "shakespearetemplate" constant indexColumnFamily (line 80) | indexColumnFamily = "i" constant contentColumnFamily (line 81) | contentColumnFamily = "c" constant mainPage (line 82) | mainPage = ` function main (line 112) | func main() { function handleMain (line 154) | func handleMain(w http.ResponseWriter, r *http.Request) { function tokenize (line 160) | func tokenize(s string) []string { function handleContent (line 175) | func handleContent(w http.ResponseWriter, r *http.Request) { function handleSearch (line 202) | func handleSearch(w http.ResponseWriter, r *http.Request) { function handleAddDoc (line 290) | func handleAddDoc(w http.ResponseWriter, r *http.Request) { function rebuildTable (line 367) | func rebuildTable() error { function handleClear (line 429) | func handleClear(w http.ResponseWriter, r *http.Request) { FILE: vendor/google.golang.org/cloud/cloud.go function NewContext (line 33) | func NewContext(projID string, c *http.Client) context.Context { function WithContext (line 42) | func WithContext(parent context.Context, projID string, c *http.Client) ... FILE: vendor/google.golang.org/cloud/compute/metadata/metadata.go type cachedValue (line 36) | type cachedValue struct method get (line 123) | func (c *cachedValue) get() (v string, err error) { type NotDefinedError (line 67) | type NotDefinedError method Error (line 69) | func (suffix NotDefinedError) Error() string { function Get (line 81) | func Get(suffix string) (string, error) { function getTrimmed (line 117) | func getTrimmed(suffix string) (s string, err error) { function OnGCE (line 147) | func OnGCE() bool { function ProjectID (line 166) | func ProjectID() (string, error) { return projID.get() } function NumericProjectID (line 169) | func NumericProjectID() (string, error) { return projNum.get() } function InternalIP (line 172) | func InternalIP() (string, error) { function ExternalIP (line 177) | func ExternalIP() (string, error) { function Hostname (line 183) | func Hostname() (string, error) { function InstanceTags (line 189) | func InstanceTags() ([]string, error) { function InstanceID (line 202) | func InstanceID() (string, error) { function InstanceName (line 207) | func InstanceName() (string, error) { function Zone (line 216) | func Zone() (string, error) { function InstanceAttributes (line 228) | func InstanceAttributes() ([]string, error) { return lines("instance/att... function ProjectAttributes (line 233) | func ProjectAttributes() ([]string, error) { return lines("project/attri... function lines (line 235) | func lines(suffix string) ([]string, error) { function InstanceAttributeValue (line 255) | func InstanceAttributeValue(attr string) (string, error) { function ProjectAttributeValue (line 267) | func ProjectAttributeValue(attr string) (string, error) { function Scopes (line 274) | func Scopes(serviceAccount string) ([]string, error) { FILE: vendor/google.golang.org/cloud/container/container.go type Type (line 31) | type Type type Status (line 38) | type Status type Resource (line 50) | type Resource struct function resourceFromRaw (line 105) | func resourceFromRaw(c *raw.Cluster) *Resource { function resourcesFromRaw (line 128) | func resourcesFromRaw(c []*raw.Cluster) []*Resource { type Op (line 137) | type Op struct function opFromRaw (line 156) | func opFromRaw(o *raw.Operation) *Op { function opsFromRaw (line 169) | func opsFromRaw(o []*raw.Operation) []*Op { function Clusters (line 179) | func Clusters(ctx context.Context, zone string) ([]*Resource, error) { function Cluster (line 196) | func Cluster(ctx context.Context, zone, name string) (*Resource, error) { function CreateCluster (line 207) | func CreateCluster(ctx context.Context, zone string, resource *Resource)... function DeleteCluster (line 212) | func DeleteCluster(ctx context.Context, zone, name string) error { function Operations (line 221) | func Operations(ctx context.Context, zone string) ([]*Op, error) { function Operation (line 238) | func Operation(ctx context.Context, zone, name string) (*Op, error) { function rawService (line 250) | func rawService(ctx context.Context) *raw.Service { FILE: vendor/google.golang.org/cloud/datastore/datastore.go type ContextKey (line 35) | type ContextKey constant ScopeDatastore (line 39) | ScopeDatastore = "https://www.googleapis.com/auth/datastore" constant ScopeUserEmail (line 43) | ScopeUserEmail = "https://www.googleapis.com/auth/userinfo.email" type multiArgType (line 56) | type multiArgType constant multiArgTypeInvalid (line 59) | multiArgTypeInvalid multiArgType = iota constant multiArgTypePropertyLoadSaver (line 60) | multiArgTypePropertyLoadSaver constant multiArgTypeStruct (line 61) | multiArgTypeStruct constant multiArgTypeStructPtr (line 62) | multiArgTypeStructPtr constant multiArgTypeInterface (line 63) | multiArgTypeInterface type nsKey (line 68) | type nsKey struct function WithNamespace (line 72) | func WithNamespace(parent context.Context, namespace string) context.Con... function ctxNamespace (line 78) | func ctxNamespace(ctx context.Context) string { type ErrFieldMismatch (line 88) | type ErrFieldMismatch struct method Error (line 108) | func (e *ErrFieldMismatch) Error() string { type errHTTP (line 95) | type errHTTP struct method Error (line 101) | func (e *errHTTP) Error() string { function baseUrl (line 115) | func baseUrl(ctx context.Context) string { function call (line 124) | func call(ctx context.Context, method string, req proto.Message, resp pr... function keyToProto (line 155) | func keyToProto(k *Key) *pb.Key { function protoToKey (line 189) | func protoToKey(p *pb.Key) *Key { function multiKeyToProto (line 206) | func multiKeyToProto(keys []*Key) []*pb.Key { function multiProtoToKey (line 215) | func multiProtoToKey(keys []*pb.Key) []*Key { function multiValid (line 225) | func multiValid(key []*Key) error { function checkMultiArg (line 253) | func checkMultiArg(v reflect.Value) (m multiArgType, elemType reflect.Ty... function Get (line 290) | func Get(ctx context.Context, key *Key, dst interface{}) error { function GetMulti (line 308) | func GetMulti(ctx context.Context, keys []*Key, dst interface{}) error { function get (line 312) | func get(ctx context.Context, keys []*Key, dst interface{}, opts *pb.Rea... function Put (line 386) | func Put(ctx context.Context, key *Key, src interface{}) (*Key, error) { function PutMulti (line 400) | func PutMulti(ctx context.Context, keys []*Key, src interface{}) ([]*Key... function putMutation (line 438) | func putMutation(keys []*Key, src interface{}) (*pb.Mutation, error) { function Delete (line 482) | func Delete(ctx context.Context, key *Key) error { function DeleteMulti (line 491) | func DeleteMulti(ctx context.Context, keys []*Key) error { function deleteMutation (line 505) | func deleteMutation(keys []*Key) (*pb.Mutation, error) { FILE: vendor/google.golang.org/cloud/datastore/errors.go type MultiError (line 26) | type MultiError method Error (line 28) | func (m MultiError) Error() string { FILE: vendor/google.golang.org/cloud/datastore/key.go type Key (line 31) | type Key struct method Kind (line 40) | func (k *Key) Kind() string { method ID (line 44) | func (k *Key) ID() int64 { method Name (line 48) | func (k *Key) Name() string { method Parent (line 52) | func (k *Key) Parent() *Key { method SetParent (line 56) | func (k *Key) SetParent(v *Key) { method Namespace (line 63) | func (k *Key) Namespace() string { method Incomplete (line 68) | func (k *Key) Incomplete() bool { method valid (line 73) | func (k *Key) valid() bool { method Equal (line 96) | func (k *Key) Equal(o *Key) bool { method marshal (line 113) | func (k *Key) marshal(b *bytes.Buffer) { method String (line 128) | func (k *Key) String() string { method GobEncode (line 174) | func (k *Key) GobEncode() ([]byte, error) { method GobDecode (line 182) | func (k *Key) GobDecode(buf []byte) error { method MarshalJSON (line 191) | func (k *Key) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 195) | func (k *Key) UnmarshalJSON(buf []byte) error { method Encode (line 210) | func (k *Key) Encode() string { type gobKey (line 139) | type gobKey struct function keyToGobKey (line 148) | func keyToGobKey(k *Key) *gobKey { function gobKeyToKey (line 161) | func gobKeyToKey(gk *gobKey) *Key { function DecodeKey (line 223) | func DecodeKey(encoded string) (*Key, error) { function NewIncompleteKey (line 244) | func NewIncompleteKey(ctx context.Context, kind string, parent *Key) *Key { function NewKey (line 253) | func NewKey(ctx context.Context, kind, name string, id int64, parent *Ke... function AllocateIDs (line 265) | func AllocateIDs(ctx context.Context, keys []*Key) ([]*Key, error) { FILE: vendor/google.golang.org/cloud/datastore/load.go function typeMismatchReason (line 32) | func typeMismatchReason(p Property, v reflect.Value) string { type propertyLoader (line 54) | type propertyLoader struct method load (line 60) | func (l *propertyLoader) load(codec *structCodec, structValue reflect.... function loadEntity (line 184) | func loadEntity(dst interface{}, src *pb.Entity) (err error) { method Load (line 192) | func (s structPLS) Load(props []Property) error { function protoToProperties (line 215) | func protoToProperties(src *pb.Entity) []Property { function propValue (line 253) | func propValue(v *pb.Value) interface{} { FILE: vendor/google.golang.org/cloud/datastore/prop.go constant maxIndexedProperties (line 26) | maxIndexedProperties = 5000 constant maxBlobLen (line 29) | maxBlobLen = 1 << 20 type Property (line 35) | type Property struct type PropertyLoadSaver (line 76) | type PropertyLoadSaver interface type PropertyList (line 82) | type PropertyList method Load (line 91) | func (l *PropertyList) Load(p []Property) error { method Save (line 97) | func (l *PropertyList) Save() ([]Property, error) { function validPropertyName (line 103) | func validPropertyName(name string) bool { type structTag (line 132) | type structTag struct type structCodec (line 139) | type structCodec struct type fieldCodec (line 154) | type fieldCodec struct function getStructCodec (line 166) | func getStructCodec(t reflect.Type) (*structCodec, error) { function getStructCodecLocked (line 174) | func getStructCodecLocked(t reflect.Type) (ret *structCodec, retErr erro... type structPLS (line 263) | type structPLS struct function newStructPLS (line 269) | func newStructPLS(p interface{}) (PropertyLoadSaver, error) { function LoadStruct (line 284) | func LoadStruct(dst interface{}, p []Property) error { function SaveStruct (line 294) | func SaveStruct(src interface{}) ([]Property, error) { FILE: vendor/google.golang.org/cloud/datastore/query.go type operator (line 31) | type operator constant lessThan (line 34) | lessThan operator = iota constant lessEq (line 35) | lessEq constant equal (line 36) | equal constant greaterEq (line 37) | greaterEq constant greaterThan (line 38) | greaterThan constant keyFieldName (line 40) | keyFieldName = "__key__" type filter (line 52) | type filter struct type sortDirection (line 58) | type sortDirection constant ascending (line 61) | ascending sortDirection = iota constant descending (line 62) | descending type order (line 71) | type order struct function NewQuery (line 81) | func NewQuery(kind string) *Query { type Query (line 89) | type Query struct method clone (line 108) | func (q *Query) clone() *Query { method Ancestor (line 124) | func (q *Query) Ancestor(ancestor *Key) *Query { method EventualConsistency (line 137) | func (q *Query) EventualConsistency() *Query { method Transaction (line 150) | func (q *Query) Transaction(t *Transaction) *Query { method Filter (line 164) | func (q *Query) Filter(filterStr string, value interface{}) *Query { method Order (line 206) | func (q *Query) Order(fieldName string) *Query { method Project (line 242) | func (q *Query) Project(fieldNames ...string) *Query { method Distinct (line 251) | func (q *Query) Distinct() *Query { method KeysOnly (line 259) | func (q *Query) KeysOnly() *Query { method Limit (line 267) | func (q *Query) Limit(limit int) *Query { method Offset (line 279) | func (q *Query) Offset(offset int) *Query { method Start (line 294) | func (q *Query) Start(c Cursor) *Query { method End (line 305) | func (q *Query) End(c Cursor) *Query { method toProto (line 316) | func (q *Query) toProto(req *pb.RunQueryRequest) error { method Count (line 412) | func (q *Query) Count(ctx context.Context) (int, error) { method GetAll (line 481) | func (q *Query) GetAll(ctx context.Context, dst interface{}) ([]*Key, ... method Run (line 548) | func (q *Query) Run(ctx context.Context) *Iterator { function unquote (line 233) | func unquote(s string) (string, error) { function callNext (line 452) | func callNext(ctx context.Context, req *pb.RunQueryRequest, res *pb.RunQ... type Iterator (line 595) | type Iterator struct method Next (line 623) | func (t *Iterator) Next(dst interface{}) (*Key, error) { method next (line 634) | func (t *Iterator) next() (*Key, *pb.Entity, error) { method Cursor (line 679) | func (t *Iterator) Cursor() (Cursor, error) { type Cursor (line 726) | type Cursor struct method String (line 731) | func (c Cursor) String() string { function DecodeCursor (line 740) | func DecodeCursor(s string) (Cursor, error) { FILE: vendor/google.golang.org/cloud/datastore/save.go function saveEntity (line 28) | func saveEntity(key *Key, src interface{}) (*pb.Entity, error) { function saveStructProperty (line 42) | func saveStructProperty(props *[]Property, name string, noIndex, multipl... method Save (line 84) | func (s structPLS) Save() ([]Property, error) { method save (line 92) | func (s structPLS) save(props *[]Property, prefix string, noIndex, multi... function propertiesToProto (line 123) | func propertiesToProto(key *Key, props []Property) (*pb.Entity, error) { function interfaceToProto (line 174) | func interfaceToProto(iv interface{}) (p *pb.Value, errStr string) { FILE: vendor/google.golang.org/cloud/datastore/time.go function toUnixMicro (line 27) | func toUnixMicro(t time.Time) int64 { function fromUnixMicro (line 34) | func fromUnixMicro(t int64) time.Time { FILE: vendor/google.golang.org/cloud/datastore/transaction.go type TransactionOption (line 34) | type TransactionOption interface type isolation (line 38) | type isolation struct method apply (line 42) | func (i isolation) apply(req *pb.BeginTransactionRequest) { type Transaction (line 62) | type Transaction struct method Commit (line 87) | func (t *Transaction) Commit() (*Commit, error) { method Rollback (line 122) | func (t *Transaction) Rollback() error { method Get (line 136) | func (t *Transaction) Get(key *Key, dst interface{}) error { method GetMulti (line 145) | func (t *Transaction) GetMulti(keys []*Key, dst interface{}) error { method Put (line 158) | func (t *Transaction) Put(key *Key, src interface{}) (*PendingKey, err... method PutMulti (line 171) | func (t *Transaction) PutMulti(keys []*Key, src interface{}) ([]*Pendi... method Delete (line 199) | func (t *Transaction) Delete(key *Key) error { method DeleteMulti (line 208) | func (t *Transaction) DeleteMulti(keys []*Key) error { function NewTransaction (line 70) | func NewTransaction(ctx context.Context, opts ...TransactionOption) (*Tr... type Commit (line 221) | type Commit struct method Key (line 224) | func (c *Commit) Key(p *PendingKey) *Key { type PendingKey (line 233) | type PendingKey struct FILE: vendor/google.golang.org/cloud/examples/bigquery/concat_table/main.go function main (line 40) | func main() { FILE: vendor/google.golang.org/cloud/examples/bigquery/load/main.go function main (line 41) | func main() { FILE: vendor/google.golang.org/cloud/examples/bigquery/query/main.go function main (line 39) | func main() { FILE: vendor/google.golang.org/cloud/examples/bigquery/read/main.go function main (line 37) | func main() { FILE: vendor/google.golang.org/cloud/examples/pubsub/cmdline/main.go constant usage (line 47) | usage = `Available arguments are: constant tick (line 56) | tick = 1 * time.Second function usageAndExit (line 59) | func usageAndExit(msg string) { function checkArgs (line 68) | func checkArgs(argv []string, min int) { function newClient (line 77) | func newClient(jsonFile string) (*http.Client, error) { function listTopics (line 107) | func listTopics(ctx context.Context, argv []string) { function createTopic (line 111) | func createTopic(ctx context.Context, argv []string) { function deleteTopic (line 121) | func deleteTopic(ctx context.Context, argv []string) { function listSubscriptions (line 131) | func listSubscriptions(ctx context.Context, argv []string) { function createSubscription (line 135) | func createSubscription(ctx context.Context, argv []string) { function deleteSubscription (line 146) | func deleteSubscription(ctx context.Context, argv []string) { function publish (line 156) | func publish(ctx context.Context, argv []string) { type reporter (line 169) | type reporter struct method report (line 176) | func (r *reporter) report() { function ack (line 194) | func ack(ctx context.Context, sub string, ackID ...string) { function pullLoop (line 201) | func pullLoop(ctx context.Context, sub string, result chan<- int) { function pullMessages (line 227) | func pullMessages(ctx context.Context, argv []string) { function publishLoop (line 246) | func publishLoop(ctx context.Context, topic string, workerid int, result... function publishMessages (line 267) | func publishMessages(ctx context.Context, argv []string) { function main (line 327) | func main() { FILE: vendor/google.golang.org/cloud/examples/storage/appengine/app.go function init (line 40) | func init() { type demo (line 45) | type demo struct method errorf (line 55) | func (d *demo) errorf(format string, args ...interface{}) { method createFile (line 118) | func (d *demo) createFile(fileName string) { method readFile (line 144) | func (d *demo) readFile(fileName string) { method copyFile (line 168) | func (d *demo) copyFile(fileName string) { method dumpStats (line 182) | func (d *demo) dumpStats(obj *storage.Object) { method statFile (line 201) | func (d *demo) statFile(fileName string) { method createListFiles (line 214) | func (d *demo) createListFiles() { method listBucket (line 222) | func (d *demo) listBucket() { method listDir (line 240) | func (d *demo) listDir(name, indent string) { method listBucketDirMode (line 262) | func (d *demo) listBucketDirMode() { method dumpDefaultACL (line 268) | func (d *demo) dumpDefaultACL() { method defaultACL (line 280) | func (d *demo) defaultACL() { method putDefaultACLRule (line 286) | func (d *demo) putDefaultACLRule() { method deleteDefaultACLRule (line 297) | func (d *demo) deleteDefaultACLRule() { method dumpBucketACL (line 308) | func (d *demo) dumpBucketACL() { method bucketACL (line 320) | func (d *demo) bucketACL() { method putBucketACLRule (line 326) | func (d *demo) putBucketACLRule() { method deleteBucketACLRule (line 337) | func (d *demo) deleteBucketACLRule() { method dumpACL (line 348) | func (d *demo) dumpACL(fileName string) { method acl (line 360) | func (d *demo) acl(fileName string) { method putACLRule (line 366) | func (d *demo) putACLRule(fileName string) { method deleteACLRule (line 377) | func (d *demo) deleteACLRule(fileName string) { method deleteFiles (line 388) | func (d *demo) deleteFiles() { function handler (line 61) | func handler(w http.ResponseWriter, r *http.Request) { FILE: vendor/google.golang.org/cloud/examples/storage/appenginevm/app.go function init (line 40) | func init() { type demo (line 45) | type demo struct method errorf (line 55) | func (d *demo) errorf(format string, args ...interface{}) { method createFile (line 118) | func (d *demo) createFile(fileName string) { method readFile (line 144) | func (d *demo) readFile(fileName string) { method copyFile (line 168) | func (d *demo) copyFile(fileName string) { method dumpStats (line 182) | func (d *demo) dumpStats(obj *storage.Object) { method statFile (line 201) | func (d *demo) statFile(fileName string) { method createListFiles (line 214) | func (d *demo) createListFiles() { method listBucket (line 222) | func (d *demo) listBucket() { method listDir (line 240) | func (d *demo) listDir(name, indent string) { method listBucketDirMode (line 262) | func (d *demo) listBucketDirMode() { method dumpDefaultACL (line 268) | func (d *demo) dumpDefaultACL() { method defaultACL (line 280) | func (d *demo) defaultACL() { method putDefaultACLRule (line 286) | func (d *demo) putDefaultACLRule() { method deleteDefaultACLRule (line 297) | func (d *demo) deleteDefaultACLRule() { method dumpBucketACL (line 308) | func (d *demo) dumpBucketACL() { method bucketACL (line 320) | func (d *demo) bucketACL() { method putBucketACLRule (line 326) | func (d *demo) putBucketACLRule() { method deleteBucketACLRule (line 337) | func (d *demo) deleteBucketACLRule() { method dumpACL (line 348) | func (d *demo) dumpACL(fileName string) { method acl (line 360) | func (d *demo) acl(fileName string) { method putACLRule (line 366) | func (d *demo) putACLRule(fileName string) { method deleteACLRule (line 377) | func (d *demo) deleteACLRule(fileName string) { method deleteFiles (line 388) | func (d *demo) deleteFiles() { function handler (line 61) | func handler(w http.ResponseWriter, r *http.Request) { FILE: vendor/google.golang.org/cloud/internal/cloud.go type contextKey (line 28) | type contextKey struct function WithContext (line 30) | func WithContext(parent context.Context, projID string, c *http.Client) ... constant userAgent (line 43) | userAgent = "gcloud-golang/0.1" type cloudContext (line 45) | type cloudContext struct method service (line 62) | func (c *cloudContext) service(name string, fill func(*http.Client) in... function Service (line 58) | func Service(ctx context.Context, name string, fill func(*http.Client) i... type Transport (line 79) | type Transport struct method RoundTrip (line 87) | func (t *Transport) RoundTrip(req *http.Request) (*http.Response, erro... function cloneRequest (line 101) | func cloneRequest(r *http.Request) *http.Request { function ProjID (line 113) | func ProjID(ctx context.Context) string { function HTTPClient (line 117) | func HTTPClient(ctx context.Context) *http.Client { function cc (line 123) | func cc(ctx context.Context) *cloudContext { FILE: vendor/google.golang.org/cloud/internal/datastore/datastore_v1.pb.go type EntityResult_ResultType (line 59) | type EntityResult_ResultType method Enum (line 80) | func (x EntityResult_ResultType) Enum() *EntityResult_ResultType { method String (line 85) | func (x EntityResult_ResultType) String() string { method UnmarshalJSON (line 88) | func (x *EntityResult_ResultType) UnmarshalJSON(data []byte) error { constant EntityResult_FULL (line 62) | EntityResult_FULL EntityResult_ResultType = 1 constant EntityResult_PROJECTION (line 63) | EntityResult_PROJECTION EntityResult_ResultType = 2 constant EntityResult_KEY_ONLY (line 66) | EntityResult_KEY_ONLY EntityResult_ResultType = 3 type PropertyExpression_AggregationFunction (line 97) | type PropertyExpression_AggregationFunction method Enum (line 110) | func (x PropertyExpression_AggregationFunction) Enum() *PropertyExpres... method String (line 115) | func (x PropertyExpression_AggregationFunction) String() string { method UnmarshalJSON (line 118) | func (x *PropertyExpression_AggregationFunction) UnmarshalJSON(data []... constant PropertyExpression_FIRST (line 100) | PropertyExpression_FIRST PropertyExpression_AggregationFunction = 1 type PropertyOrder_Direction (line 127) | type PropertyOrder_Direction method Enum (line 143) | func (x PropertyOrder_Direction) Enum() *PropertyOrder_Direction { method String (line 148) | func (x PropertyOrder_Direction) String() string { method UnmarshalJSON (line 151) | func (x *PropertyOrder_Direction) UnmarshalJSON(data []byte) error { constant PropertyOrder_ASCENDING (line 130) | PropertyOrder_ASCENDING PropertyOrder_Direction = 1 constant PropertyOrder_DESCENDING (line 131) | PropertyOrder_DESCENDING PropertyOrder_Direction = 2 type CompositeFilter_Operator (line 160) | type CompositeFilter_Operator method Enum (line 173) | func (x CompositeFilter_Operator) Enum() *CompositeFilter_Operator { method String (line 178) | func (x CompositeFilter_Operator) String() string { method UnmarshalJSON (line 181) | func (x *CompositeFilter_Operator) UnmarshalJSON(data []byte) error { constant CompositeFilter_AND (line 163) | CompositeFilter_AND CompositeFilter_Operator = 1 type PropertyFilter_Operator (line 190) | type PropertyFilter_Operator method Enum (line 218) | func (x PropertyFilter_Operator) Enum() *PropertyFilter_Operator { method String (line 223) | func (x PropertyFilter_Operator) String() string { method UnmarshalJSON (line 226) | func (x *PropertyFilter_Operator) UnmarshalJSON(data []byte) error { constant PropertyFilter_LESS_THAN (line 193) | PropertyFilter_LESS_THAN PropertyFilter_Operator = 1 constant PropertyFilter_LESS_THAN_OR_EQUAL (line 194) | PropertyFilter_LESS_THAN_OR_EQUAL PropertyFilter_Operator = 2 constant PropertyFilter_GREATER_THAN (line 195) | PropertyFilter_GREATER_THAN PropertyFilter_Operator = 3 constant PropertyFilter_GREATER_THAN_OR_EQUAL (line 196) | PropertyFilter_GREATER_THAN_OR_EQUAL PropertyFilter_Operator = 4 constant PropertyFilter_EQUAL (line 197) | PropertyFilter_EQUAL PropertyFilter_Operator = 5 constant PropertyFilter_HAS_ANCESTOR (line 198) | PropertyFilter_HAS_ANCESTOR PropertyFilter_Operator = 11 type QueryResultBatch_MoreResultsType (line 236) | type QueryResultBatch_MoreResultsType method Enum (line 256) | func (x QueryResultBatch_MoreResultsType) Enum() *QueryResultBatch_Mor... method String (line 261) | func (x QueryResultBatch_MoreResultsType) String() string { method UnmarshalJSON (line 264) | func (x *QueryResultBatch_MoreResultsType) UnmarshalJSON(data []byte) ... constant QueryResultBatch_NOT_FINISHED (line 239) | QueryResultBatch_NOT_FINISHED QueryResultBatch_MoreResultsTy... constant QueryResultBatch_MORE_RESULTS_AFTER_LIMIT (line 240) | QueryResultBatch_MORE_RESULTS_AFTER_LIMIT QueryResultBatch_MoreResultsTy... constant QueryResultBatch_NO_MORE_RESULTS (line 242) | QueryResultBatch_NO_MORE_RESULTS QueryResultBatch_MoreResultsType = 3 type ReadOptions_ReadConsistency (line 273) | type ReadOptions_ReadConsistency method Enum (line 292) | func (x ReadOptions_ReadConsistency) Enum() *ReadOptions_ReadConsisten... method String (line 297) | func (x ReadOptions_ReadConsistency) String() string { method UnmarshalJSON (line 300) | func (x *ReadOptions_ReadConsistency) UnmarshalJSON(data []byte) error { constant ReadOptions_DEFAULT (line 276) | ReadOptions_DEFAULT ReadOptions_ReadConsistency = 0 constant ReadOptions_STRONG (line 277) | ReadOptions_STRONG ReadOptions_ReadConsistency = 1 constant ReadOptions_EVENTUAL (line 278) | ReadOptions_EVENTUAL ReadOptions_ReadConsistency = 2 type BeginTransactionRequest_IsolationLevel (line 309) | type BeginTransactionRequest_IsolationLevel method Enum (line 328) | func (x BeginTransactionRequest_IsolationLevel) Enum() *BeginTransacti... method String (line 333) | func (x BeginTransactionRequest_IsolationLevel) String() string { method UnmarshalJSON (line 336) | func (x *BeginTransactionRequest_IsolationLevel) UnmarshalJSON(data []... constant BeginTransactionRequest_SNAPSHOT (line 312) | BeginTransactionRequest_SNAPSHOT BeginTransactionRequest_IsolationLevel = 0 constant BeginTransactionRequest_SERIALIZABLE (line 316) | BeginTransactionRequest_SERIALIZABLE BeginTransactionRequest_IsolationLe... type CommitRequest_Mode (line 345) | type CommitRequest_Mode method Enum (line 361) | func (x CommitRequest_Mode) Enum() *CommitRequest_Mode { method String (line 366) | func (x CommitRequest_Mode) String() string { method UnmarshalJSON (line 369) | func (x *CommitRequest_Mode) UnmarshalJSON(data []byte) error { constant CommitRequest_TRANSACTIONAL (line 348) | CommitRequest_TRANSACTIONAL CommitRequest_Mode = 1 constant CommitRequest_NON_TRANSACTIONAL (line 349) | CommitRequest_NON_TRANSACTIONAL CommitRequest_Mode = 2 type PartitionId (line 406) | type PartitionId struct method Reset (line 414) | func (m *PartitionId) Reset() { *m = PartitionId{} } method String (line 415) | func (m *PartitionId) String() string { return proto.CompactTextString... method ProtoMessage (line 416) | func (*PartitionId) ProtoMessage() {} method GetDatasetId (line 418) | func (m *PartitionId) GetDatasetId() string { method GetNamespace (line 425) | func (m *PartitionId) GetNamespace() string { type Key (line 436) | type Key struct method Reset (line 457) | func (m *Key) Reset() { *m = Key{} } method String (line 458) | func (m *Key) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 459) | func (*Key) ProtoMessage() {} method GetPartitionId (line 461) | func (m *Key) GetPartitionId() *PartitionId { method GetPathElement (line 468) | func (m *Key) GetPathElement() []*Key_PathElement { type Key_PathElement (line 480) | type Key_PathElement struct method Reset (line 498) | func (m *Key_PathElement) Reset() { *m = Key_PathElement{} } method String (line 499) | func (m *Key_PathElement) String() string { return proto.CompactTextSt... method ProtoMessage (line 500) | func (*Key_PathElement) ProtoMessage() {} method GetKind (line 502) | func (m *Key_PathElement) GetKind() string { method GetId (line 509) | func (m *Key_PathElement) GetId() int64 { method GetName (line 516) | func (m *Key_PathElement) GetName() string { type Value (line 529) | type Value struct method Reset (line 578) | func (m *Value) Reset() { *m = Value{} } method String (line 579) | func (m *Value) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 580) | func (*Value) ProtoMessage() {} method GetBooleanValue (line 584) | func (m *Value) GetBooleanValue() bool { method GetIntegerValue (line 591) | func (m *Value) GetIntegerValue() int64 { method GetDoubleValue (line 598) | func (m *Value) GetDoubleValue() float64 { method GetTimestampMicrosecondsValue (line 605) | func (m *Value) GetTimestampMicrosecondsValue() int64 { method GetKeyValue (line 612) | func (m *Value) GetKeyValue() *Key { method GetBlobKeyValue (line 619) | func (m *Value) GetBlobKeyValue() string { method GetStringValue (line 626) | func (m *Value) GetStringValue() string { method GetBlobValue (line 633) | func (m *Value) GetBlobValue() []byte { method GetEntityValue (line 640) | func (m *Value) GetEntityValue() *Entity { method GetListValue (line 647) | func (m *Value) GetListValue() []*Value { method GetMeaning (line 654) | func (m *Value) GetMeaning() int32 { method GetIndexed (line 661) | func (m *Value) GetIndexed() bool { constant Default_Value_Indexed (line 582) | Default_Value_Indexed bool = true type Property (line 669) | type Property struct method Reset (line 685) | func (m *Property) Reset() { *m = Property{} } method String (line 686) | func (m *Property) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 687) | func (*Property) ProtoMessage() {} method GetName (line 689) | func (m *Property) GetName() string { method GetValue (line 696) | func (m *Property) GetValue() *Value { type Entity (line 708) | type Entity struct method Reset (line 722) | func (m *Entity) Reset() { *m = Entity{} } method String (line 723) | func (m *Entity) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 724) | func (*Entity) ProtoMessage() {} method GetKey (line 726) | func (m *Entity) GetKey() *Key { method GetProperty (line 733) | func (m *Entity) GetProperty() []*Property { type EntityResult (line 741) | type EntityResult struct method Reset (line 747) | func (m *EntityResult) Reset() { *m = EntityResult{} } method String (line 748) | func (m *EntityResult) String() string { return proto.CompactTextStrin... method ProtoMessage (line 749) | func (*EntityResult) ProtoMessage() {} method GetEntity (line 751) | func (m *EntityResult) GetEntity() *Entity { type Query (line 759) | type Query struct method Reset (line 786) | func (m *Query) Reset() { *m = Query{} } method String (line 787) | func (m *Query) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 788) | func (*Query) ProtoMessage() {} method GetProjection (line 792) | func (m *Query) GetProjection() []*PropertyExpression { method GetKind (line 799) | func (m *Query) GetKind() []*KindExpression { method GetFilter (line 806) | func (m *Query) GetFilter() *Filter { method GetOrder (line 813) | func (m *Query) GetOrder() []*PropertyOrder { method GetGroupBy (line 820) | func (m *Query) GetGroupBy() []*PropertyReference { method GetStartCursor (line 827) | func (m *Query) GetStartCursor() []byte { method GetEndCursor (line 834) | func (m *Query) GetEndCursor() []byte { method GetOffset (line 841) | func (m *Query) GetOffset() int32 { method GetLimit (line 848) | func (m *Query) GetLimit() int32 { constant Default_Query_Offset (line 790) | Default_Query_Offset int32 = 0 type KindExpression (line 856) | type KindExpression struct method Reset (line 862) | func (m *KindExpression) Reset() { *m = KindExpression{} } method String (line 863) | func (m *KindExpression) String() string { return proto.CompactTextStr... method ProtoMessage (line 864) | func (*KindExpression) ProtoMessage() {} method GetName (line 866) | func (m *KindExpression) GetName() string { type PropertyReference (line 875) | type PropertyReference struct method Reset (line 881) | func (m *PropertyReference) Reset() { *m = PropertyReference{} } method String (line 882) | func (m *PropertyReference) String() string { return proto.CompactText... method ProtoMessage (line 883) | func (*PropertyReference) ProtoMessage() {} method GetName (line 885) | func (m *PropertyReference) GetName() string { type PropertyExpression (line 893) | type PropertyExpression struct method Reset (line 904) | func (m *PropertyExpression) Reset() { *m = PropertyExpression... method String (line 905) | func (m *PropertyExpression) String() string { return proto.CompactTex... method ProtoMessage (line 906) | func (*PropertyExpression) ProtoMessage() {} method GetProperty (line 908) | func (m *PropertyExpression) GetProperty() *PropertyReference { method GetAggregationFunction (line 915) | func (m *PropertyExpression) GetAggregationFunction() PropertyExpressi... type PropertyOrder (line 923) | type PropertyOrder struct method Reset (line 931) | func (m *PropertyOrder) Reset() { *m = PropertyOrder{} } method String (line 932) | func (m *PropertyOrder) String() string { return proto.CompactTextStri... method ProtoMessage (line 933) | func (*PropertyOrder) ProtoMessage() {} method GetProperty (line 937) | func (m *PropertyOrder) GetProperty() *PropertyReference { method GetDirection (line 944) | func (m *PropertyOrder) GetDirection() PropertyOrder_Direction { constant Default_PropertyOrder_Direction (line 935) | Default_PropertyOrder_Direction PropertyOrder_Direction = PropertyOrder_... type Filter (line 952) | type Filter struct method Reset (line 960) | func (m *Filter) Reset() { *m = Filter{} } method String (line 961) | func (m *Filter) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 962) | func (*Filter) ProtoMessage() {} method GetCompositeFilter (line 964) | func (m *Filter) GetCompositeFilter() *CompositeFilter { method GetPropertyFilter (line 971) | func (m *Filter) GetPropertyFilter() *PropertyFilter { type CompositeFilter (line 979) | type CompositeFilter struct method Reset (line 988) | func (m *CompositeFilter) Reset() { *m = CompositeFilter{} } method String (line 989) | func (m *CompositeFilter) String() string { return proto.CompactTextSt... method ProtoMessage (line 990) | func (*CompositeFilter) ProtoMessage() {} method GetOperator (line 992) | func (m *CompositeFilter) GetOperator() CompositeFilter_Operator { method GetFilter (line 999) | func (m *CompositeFilter) GetFilter() []*Filter { type PropertyFilter (line 1007) | type PropertyFilter struct method Reset (line 1017) | func (m *PropertyFilter) Reset() { *m = PropertyFilter{} } method String (line 1018) | func (m *PropertyFilter) String() string { return proto.CompactTextStr... method ProtoMessage (line 1019) | func (*PropertyFilter) ProtoMessage() {} method GetProperty (line 1021) | func (m *PropertyFilter) GetProperty() *PropertyReference { method GetOperator (line 1028) | func (m *PropertyFilter) GetOperator() PropertyFilter_Operator { method GetValue (line 1035) | func (m *PropertyFilter) GetValue() *Value { type GqlQuery (line 1043) | type GqlQuery struct method Reset (line 1063) | func (m *GqlQuery) Reset() { *m = GqlQuery{} } method String (line 1064) | func (m *GqlQuery) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 1065) | func (*GqlQuery) ProtoMessage() {} method GetQueryString (line 1069) | func (m *GqlQuery) GetQueryString() string { method GetAllowLiteral (line 1076) | func (m *GqlQuery) GetAllowLiteral() bool { method GetNameArg (line 1083) | func (m *GqlQuery) GetNameArg() []*GqlQueryArg { method GetNumberArg (line 1090) | func (m *GqlQuery) GetNumberArg() []*GqlQueryArg { constant Default_GqlQuery_AllowLiteral (line 1067) | Default_GqlQuery_AllowLiteral bool = false type GqlQueryArg (line 1099) | type GqlQueryArg struct method Reset (line 1109) | func (m *GqlQueryArg) Reset() { *m = GqlQueryArg{} } method String (line 1110) | func (m *GqlQueryArg) String() string { return proto.CompactTextString... method ProtoMessage (line 1111) | func (*GqlQueryArg) ProtoMessage() {} method GetName (line 1113) | func (m *GqlQueryArg) GetName() string { method GetValue (line 1120) | func (m *GqlQueryArg) GetValue() *Value { method GetCursor (line 1127) | func (m *GqlQueryArg) GetCursor() []byte { type QueryResultBatch (line 1135) | type QueryResultBatch struct method Reset (line 1150) | func (m *QueryResultBatch) Reset() { *m = QueryResultBatch{} } method String (line 1151) | func (m *QueryResultBatch) String() string { return proto.CompactTextS... method ProtoMessage (line 1152) | func (*QueryResultBatch) ProtoMessage() {} method GetEntityResultType (line 1154) | func (m *QueryResultBatch) GetEntityResultType() EntityResult_ResultTy... method GetEntityResult (line 1161) | func (m *QueryResultBatch) GetEntityResult() []*EntityResult { method GetEndCursor (line 1168) | func (m *QueryResultBatch) GetEndCursor() []byte { method GetMoreResults (line 1175) | func (m *QueryResultBatch) GetMoreResults() QueryResultBatch_MoreResul... method GetSkippedResults (line 1182) | func (m *QueryResultBatch) GetSkippedResults() int32 { type Mutation (line 1198) | type Mutation struct method Reset (line 1223) | func (m *Mutation) Reset() { *m = Mutation{} } method String (line 1224) | func (m *Mutation) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 1225) | func (*Mutation) ProtoMessage() {} method GetUpsert (line 1227) | func (m *Mutation) GetUpsert() []*Entity { method GetUpdate (line 1234) | func (m *Mutation) GetUpdate() []*Entity { method GetInsert (line 1241) | func (m *Mutation) GetInsert() []*Entity { method GetInsertAutoId (line 1248) | func (m *Mutation) GetInsertAutoId() []*Entity { method GetDelete (line 1255) | func (m *Mutation) GetDelete() []*Key { method GetForce (line 1262) | func (m *Mutation) GetForce() bool { type MutationResult (line 1270) | type MutationResult struct method Reset (line 1279) | func (m *MutationResult) Reset() { *m = MutationResult{} } method String (line 1280) | func (m *MutationResult) String() string { return proto.CompactTextStr... method ProtoMessage (line 1281) | func (*MutationResult) ProtoMessage() {} method GetIndexUpdates (line 1283) | func (m *MutationResult) GetIndexUpdates() int32 { method GetInsertAutoIdKey (line 1290) | func (m *MutationResult) GetInsertAutoIdKey() []*Key { type ReadOptions (line 1298) | type ReadOptions struct method Reset (line 1309) | func (m *ReadOptions) Reset() { *m = ReadOptions{} } method String (line 1310) | func (m *ReadOptions) String() string { return proto.CompactTextString... method ProtoMessage (line 1311) | func (*ReadOptions) ProtoMessage() {} method GetReadConsistency (line 1315) | func (m *ReadOptions) GetReadConsistency() ReadOptions_ReadConsistency { method GetTransaction (line 1322) | func (m *ReadOptions) GetTransaction() []byte { constant Default_ReadOptions_ReadConsistency (line 1313) | Default_ReadOptions_ReadConsistency ReadOptions_ReadConsistency = ReadOp... type LookupRequest (line 1330) | type LookupRequest struct method Reset (line 1338) | func (m *LookupRequest) Reset() { *m = LookupRequest{} } method String (line 1339) | func (m *LookupRequest) String() string { return proto.CompactTextStri... method ProtoMessage (line 1340) | func (*LookupRequest) ProtoMessage() {} method GetReadOptions (line 1342) | func (m *LookupRequest) GetReadOptions() *ReadOptions { method GetKey (line 1349) | func (m *LookupRequest) GetKey() []*Key { type LookupResponse (line 1357) | type LookupResponse struct method Reset (line 1367) | func (m *LookupResponse) Reset() { *m = LookupResponse{} } method String (line 1368) | func (m *LookupResponse) String() string { return proto.CompactTextStr... method ProtoMessage (line 1369) | func (*LookupResponse) ProtoMessage() {} method GetFound (line 1371) | func (m *LookupResponse) GetFound() []*EntityResult { method GetMissing (line 1378) | func (m *LookupResponse) GetMissing() []*EntityResult { method GetDeferred (line 1385) | func (m *LookupResponse) GetDeferred() []*Key { type RunQueryRequest (line 1393) | type RunQueryRequest struct method Reset (line 1412) | func (m *RunQueryRequest) Reset() { *m = RunQueryRequest{} } method String (line 1413) | func (m *RunQueryRequest) String() string { return proto.CompactTextSt... method ProtoMessage (line 1414) | func (*RunQueryRequest) ProtoMessage() {} method GetReadOptions (line 1416) | func (m *RunQueryRequest) GetReadOptions() *ReadOptions { method GetPartitionId (line 1423) | func (m *RunQueryRequest) GetPartitionId() *PartitionId { method GetQuery (line 1430) | func (m *RunQueryRequest) GetQuery() *Query { method GetGqlQuery (line 1437) | func (m *RunQueryRequest) GetGqlQuery() *GqlQuery { type RunQueryResponse (line 1445) | type RunQueryResponse struct method Reset (line 1451) | func (m *RunQueryResponse) Reset() { *m = RunQueryResponse{} } method String (line 1452) | func (m *RunQueryResponse) String() string { return proto.CompactTextS... method ProtoMessage (line 1453) | func (*RunQueryResponse) ProtoMessage() {} method GetBatch (line 1455) | func (m *RunQueryResponse) GetBatch() *QueryResultBatch { type BeginTransactionRequest (line 1463) | type BeginTransactionRequest struct method Reset (line 1469) | func (m *BeginTransactionRequest) Reset() { *m = BeginTransact... method String (line 1470) | func (m *BeginTransactionRequest) String() string { return proto.Compa... method ProtoMessage (line 1471) | func (*BeginTransactionRequest) ProtoMessage() {} method GetIsolationLevel (line 1475) | func (m *BeginTransactionRequest) GetIsolationLevel() BeginTransaction... constant Default_BeginTransactionRequest_IsolationLevel (line 1473) | Default_BeginTransactionRequest_IsolationLevel BeginTransactionRequest_I... type BeginTransactionResponse (line 1483) | type BeginTransactionResponse struct method Reset (line 1489) | func (m *BeginTransactionResponse) Reset() { *m = BeginTransac... method String (line 1490) | func (m *BeginTransactionResponse) String() string { return proto.Comp... method ProtoMessage (line 1491) | func (*BeginTransactionResponse) ProtoMessage() {} method GetTransaction (line 1493) | func (m *BeginTransactionResponse) GetTransaction() []byte { type RollbackRequest (line 1501) | type RollbackRequest struct method Reset (line 1508) | func (m *RollbackRequest) Reset() { *m = RollbackRequest{} } method String (line 1509) | func (m *RollbackRequest) String() string { return proto.CompactTextSt... method ProtoMessage (line 1510) | func (*RollbackRequest) ProtoMessage() {} method GetTransaction (line 1512) | func (m *RollbackRequest) GetTransaction() []byte { type RollbackResponse (line 1520) | type RollbackResponse struct method Reset (line 1524) | func (m *RollbackResponse) Reset() { *m = RollbackResponse{} } method String (line 1525) | func (m *RollbackResponse) String() string { return proto.CompactTextS... method ProtoMessage (line 1526) | func (*RollbackResponse) ProtoMessage() {} type CommitRequest (line 1529) | type CommitRequest struct method Reset (line 1540) | func (m *CommitRequest) Reset() { *m = CommitRequest{} } method String (line 1541) | func (m *CommitRequest) String() string { return proto.CompactTextStri... method ProtoMessage (line 1542) | func (*CommitRequest) ProtoMessage() {} method GetTransaction (line 1546) | func (m *CommitRequest) GetTransaction() []byte { method GetMutation (line 1553) | func (m *CommitRequest) GetMutation() *Mutation { method GetMode (line 1560) | func (m *CommitRequest) GetMode() CommitRequest_Mode { constant Default_CommitRequest_Mode (line 1544) | Default_CommitRequest_Mode CommitRequest_Mode = CommitRequest_TRANSACTIONAL type CommitResponse (line 1568) | type CommitResponse struct method Reset (line 1574) | func (m *CommitResponse) Reset() { *m = CommitResponse{} } method String (line 1575) | func (m *CommitResponse) String() string { return proto.CompactTextStr... method ProtoMessage (line 1576) | func (*CommitResponse) ProtoMessage() {} method GetMutationResult (line 1578) | func (m *CommitResponse) GetMutationResult() *MutationResult { type AllocateIdsRequest (line 1586) | type AllocateIdsRequest struct method Reset (line 1593) | func (m *AllocateIdsRequest) Reset() { *m = AllocateIdsRequest... method String (line 1594) | func (m *AllocateIdsRequest) String() string { return proto.CompactTex... method ProtoMessage (line 1595) | func (*AllocateIdsRequest) ProtoMessage() {} method GetKey (line 1597) | func (m *AllocateIdsRequest) GetKey() []*Key { type AllocateIdsResponse (line 1605) | type AllocateIdsResponse struct method Reset (line 1612) | func (m *AllocateIdsResponse) Reset() { *m = AllocateIdsRespon... method String (line 1613) | func (m *AllocateIdsResponse) String() string { return proto.CompactTe... method ProtoMessage (line 1614) | func (*AllocateIdsResponse) ProtoMessage() {} method GetKey (line 1616) | func (m *AllocateIdsResponse) GetKey() []*Key { function init (line 1623) | func init() { FILE: vendor/google.golang.org/cloud/internal/testutil/context.go constant envProjID (line 31) | envProjID = "GCLOUD_TESTS_GOLANG_PROJECT_ID" constant envPrivateKey (line 32) | envPrivateKey = "GCLOUD_TESTS_GOLANG_KEY" function Context (line 35) | func Context(scopes ...string) context.Context { function NoAuthContext (line 51) | func NoAuthContext() context.Context { FILE: vendor/google.golang.org/cloud/option.go type dialOpt (line 31) | type dialOpt struct type ClientOption (line 42) | type ClientOption interface function WithTokenSource (line 48) | func WithTokenSource(s oauth2.TokenSource) ClientOption { type withTokenSource (line 52) | type withTokenSource struct method resolve (line 54) | func (w withTokenSource) resolve(o *dialOpt) { function WithEndpoint (line 60) | func WithEndpoint(url string) ClientOption { type withEndpoint (line 64) | type withEndpoint method resolve (line 66) | func (w withEndpoint) resolve(o *dialOpt) { function WithScopes (line 72) | func WithScopes(scope ...string) ClientOption { type withScopes (line 76) | type withScopes method resolve (line 78) | func (w withScopes) resolve(o *dialOpt) { function WithBaseHTTP (line 85) | func WithBaseHTTP(client *http.Client) ClientOption { type withBaseHTTP (line 89) | type withBaseHTTP struct method resolve (line 91) | func (w withBaseHTTP) resolve(o *dialOpt) { function WithBaseGRPC (line 98) | func WithBaseGRPC(client *grpc.ClientConn) ClientOption { type withBaseGRPC (line 102) | type withBaseGRPC struct method resolve (line 104) | func (w withBaseGRPC) resolve(o *dialOpt) { function DialHTTP (line 112) | func DialHTTP(ctx context.Context, opt ...ClientOption) (*http.Client, e... function DialGRPC (line 139) | func DialGRPC(ctx context.Context, opt ...ClientOption) (*grpc.ClientCon... FILE: vendor/google.golang.org/cloud/pubsub/pubsub.go constant ScopePubSub (line 40) | ScopePubSub = "https://www.googleapis.com/auth/pubsub" constant ScopeCloudPlatform (line 44) | ScopeCloudPlatform = "https://www.googleapis.com/auth/cloud-platform" constant batchLimit (line 48) | batchLimit = 1000 type Message (line 51) | type Message struct function CreateSub (line 85) | func CreateSub(ctx context.Context, name string, topic string, deadline ... function DeleteSub (line 103) | func DeleteSub(ctx context.Context, name string) error { function ModifyAckDeadline (line 111) | func ModifyAckDeadline(ctx context.Context, sub string, id string, deadl... function ModifyPushEndpoint (line 125) | func ModifyPushEndpoint(ctx context.Context, sub, endpoint string) error { function SubExists (line 135) | func SubExists(ctx context.Context, name string) (bool, error) { function Ack (line 148) | func Ack(ctx context.Context, sub string, id ...string) error { function toMessage (line 160) | func toMessage(resp *raw.ReceivedMessage) (*Message, error) { function Pull (line 178) | func Pull(ctx context.Context, sub string, n int) ([]*Message, error) { function PullWait (line 186) | func PullWait(ctx context.Context, sub string, n int) ([]*Message, error) { function pull (line 190) | func pull(ctx context.Context, sub string, n int, retImmediately bool) (... function CreateTopic (line 214) | func CreateTopic(ctx context.Context, name string) error { function DeleteTopic (line 220) | func DeleteTopic(ctx context.Context, name string) error { function TopicExists (line 226) | func TopicExists(ctx context.Context, name string) (bool, error) { function Publish (line 239) | func Publish(ctx context.Context, topic string, msgs ...*Message) ([]str... function fullSubName (line 265) | func fullSubName(proj, name string) string { function fullTopicName (line 271) | func fullTopicName(proj, name string) string { function isSec (line 275) | func isSec(dur time.Duration) bool { function rawService (line 279) | func rawService(ctx context.Context) *raw.Service { FILE: vendor/google.golang.org/cloud/storage/acl.go type ACLRole (line 25) | type ACLRole constant RoleOwner (line 28) | RoleOwner ACLRole = "OWNER" constant RoleReader (line 29) | RoleReader ACLRole = "READER" type ACLEntity (line 39) | type ACLEntity constant AllUsers (line 42) | AllUsers ACLEntity = "allUsers" constant AllAuthenticatedUsers (line 43) | AllAuthenticatedUsers ACLEntity = "allAuthenticatedUsers" type ACLRule (line 49) | type ACLRule struct function DefaultACL (line 58) | func DefaultACL(ctx context.Context, bucket string) ([]ACLRule, error) { function PutDefaultACLRule (line 77) | func PutDefaultACLRule(ctx context.Context, bucket string, entity ACLEnt... function DeleteDefaultACLRule (line 91) | func DeleteDefaultACLRule(ctx context.Context, bucket string, entity ACL... function BucketACL (line 100) | func BucketACL(ctx context.Context, bucket string) ([]ACLRule, error) { function PutBucketACLRule (line 114) | func PutBucketACLRule(ctx context.Context, bucket string, entity ACLEnti... function DeleteBucketACLRule (line 128) | func DeleteBucketACLRule(ctx context.Context, bucket string, entity ACLE... function ACL (line 137) | func ACL(ctx context.Context, bucket, object string) ([]ACLRule, error) { function PutACLRule (line 156) | func PutACLRule(ctx context.Context, bucket, object string, entity ACLEn... function DeleteACLRule (line 170) | func DeleteACLRule(ctx context.Context, bucket, object string, entity AC... FILE: vendor/google.golang.org/cloud/storage/storage.go constant ScopeFullControl (line 51) | ScopeFullControl = raw.DevstorageFullControlScope constant ScopeReadOnly (line 55) | ScopeReadOnly = raw.DevstorageReadOnlyScope constant ScopeReadWrite (line 59) | ScopeReadWrite = raw.DevstorageReadWriteScope function BucketInfo (line 70) | func BucketInfo(ctx context.Context, name string) (*Bucket, error) { function ListObjects (line 83) | func ListObjects(ctx context.Context, bucket string, q *Query) (*Objects... type SignedURLOptions (line 123) | type SignedURLOptions struct function SignedURL (line 175) | func SignedURL(bucket, name string, opts *SignedURLOptions) (string, err... function StatObject (line 223) | func StatObject(ctx context.Context, bucket, name string) (*Object, erro... function UpdateAttrs (line 236) | func UpdateAttrs(ctx context.Context, bucket, name string, attrs ObjectA... function DeleteObject (line 248) | func DeleteObject(ctx context.Context, bucket, name string) error { function CopyObject (line 254) | func CopyObject(ctx context.Context, srcBucket, srcName string, destBuck... function NewReader (line 279) | func NewReader(ctx context.Context, bucket, name string) (io.ReadCloser,... function NewWriter (line 313) | func NewWriter(ctx context.Context, bucket, name string) *Writer { function rawService (line 322) | func rawService(ctx context.Context) *raw.Service { function parseKey (line 334) | func parseKey(key []byte) (*rsa.PrivateKey, error) { FILE: vendor/google.golang.org/cloud/storage/types.go type Bucket (line 28) | type Bucket struct function newBucket (line 57) | func newBucket(b *raw.Bucket) *Bucket { type ObjectAttrs (line 88) | type ObjectAttrs struct method toRawObject (line 117) | func (o ObjectAttrs) toRawObject(bucket string) *raw.Object { type Object (line 141) | type Object struct function convertTime (line 215) | func convertTime(t string) time.Time { function newObject (line 223) | func newObject(o *raw.Object) *Object { type Query (line 267) | type Query struct type Objects (line 301) | type Objects struct type contentTyper (line 318) | type contentTyper struct method ContentType (line 323) | func (c *contentTyper) ContentType() string { type Writer (line 328) | type Writer struct method open (line 349) | func (w *Writer) open() { method Write (line 375) | func (w *Writer) Write(p []byte) (n int, err error) { method Close (line 388) | func (w *Writer) Close() error { method Object (line 401) | func (w *Writer) Object() *Object { FILE: vendor/google.golang.org/grpc/benchmark/benchmark.go function newPayload (line 50) | func newPayload(t testpb.PayloadType, size int) *testpb.Payload { type testServer (line 68) | type testServer struct method UnaryCall (line 71) | func (s *testServer) UnaryCall(ctx context.Context, in *testpb.SimpleR... method StreamingCall (line 77) | func (s *testServer) StreamingCall(stream testpb.TestService_Streaming... function StartServer (line 97) | func StartServer() (string, func()) { function DoUnaryCall (line 111) | func DoUnaryCall(tc testpb.TestServiceClient, reqSize, respSize int) { function DoStreamingRoundTrip (line 124) | func DoStreamingRoundTrip(tc testpb.TestServiceClient, stream testpb.Tes... function NewClientConn (line 140) | func NewClientConn(addr string) *grpc.ClientConn { FILE: vendor/google.golang.org/grpc/benchmark/client/main.go function unaryCaller (line 30) | func unaryCaller(client testpb.TestServiceClient) { function streamCaller (line 34) | func streamCaller(client testpb.TestServiceClient, stream testpb.TestSer... function buildConnection (line 38) | func buildConnection() (s *stats.Stats, conn *grpc.ClientConn, tc testpb... function closeLoopUnary (line 45) | func closeLoopUnary() { function closeLoopStream (line 93) | func closeLoopStream() { function main (line 141) | func main() { FILE: vendor/google.golang.org/grpc/benchmark/grpc_testing/test.pb.go type PayloadType (line 43) | type PayloadType method String (line 65) | func (x PayloadType) String() string { constant PayloadType_COMPRESSABLE (line 47) | PayloadType_COMPRESSABLE PayloadType = 0 constant PayloadType_UNCOMPRESSABLE (line 49) | PayloadType_UNCOMPRESSABLE PayloadType = 1 constant PayloadType_RANDOM (line 51) | PayloadType_RANDOM PayloadType = 2 type ClientType (line 69) | type ClientType method String (line 85) | func (x ClientType) String() string { constant ClientType_SYNCHRONOUS_CLIENT (line 72) | ClientType_SYNCHRONOUS_CLIENT ClientType = 0 constant ClientType_ASYNC_CLIENT (line 73) | ClientType_ASYNC_CLIENT ClientType = 1 type ServerType (line 89) | type ServerType method String (line 105) | func (x ServerType) String() string { constant ServerType_SYNCHRONOUS_SERVER (line 92) | ServerType_SYNCHRONOUS_SERVER ServerType = 0 constant ServerType_ASYNC_SERVER (line 93) | ServerType_ASYNC_SERVER ServerType = 1 type RpcType (line 109) | type RpcType method String (line 125) | func (x RpcType) String() string { constant RpcType_UNARY (line 112) | RpcType_UNARY RpcType = 0 constant RpcType_STREAMING (line 113) | RpcType_STREAMING RpcType = 1 type StatsRequest (line 129) | type StatsRequest struct method Reset (line 134) | func (m *StatsRequest) Reset() { *m = StatsRequest{} } method String (line 135) | func (m *StatsRequest) String() string { return proto.CompactTextStrin... method ProtoMessage (line 136) | func (*StatsRequest) ProtoMessage() {} type ServerStats (line 138) | type ServerStats struct method Reset (line 147) | func (m *ServerStats) Reset() { *m = ServerStats{} } method String (line 148) | func (m *ServerStats) String() string { return proto.CompactTextString... method ProtoMessage (line 149) | func (*ServerStats) ProtoMessage() {} type Payload (line 151) | type Payload struct method Reset (line 158) | func (m *Payload) Reset() { *m = Payload{} } method String (line 159) | func (m *Payload) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 160) | func (*Payload) ProtoMessage() {} type HistogramData (line 162) | type HistogramData struct method Reset (line 171) | func (m *HistogramData) Reset() { *m = HistogramData{} } method String (line 172) | func (m *HistogramData) String() string { return proto.CompactTextStri... method ProtoMessage (line 173) | func (*HistogramData) ProtoMessage() {} type ClientConfig (line 175) | type ClientConfig struct method Reset (line 187) | func (m *ClientConfig) Reset() { *m = ClientConfig{} } method String (line 188) | func (m *ClientConfig) String() string { return proto.CompactTextStrin... method ProtoMessage (line 189) | func (*ClientConfig) ProtoMessage() {} type Mark (line 192) | type Mark struct method Reset (line 195) | func (m *Mark) Reset() { *m = Mark{} } method String (line 196) | func (m *Mark) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 197) | func (*Mark) ProtoMessage() {} type ClientArgs (line 199) | type ClientArgs struct method Reset (line 204) | func (m *ClientArgs) Reset() { *m = ClientArgs{} } method String (line 205) | func (m *ClientArgs) String() string { return proto.CompactTextString(... method ProtoMessage (line 206) | func (*ClientArgs) ProtoMessage() {} method GetSetup (line 208) | func (m *ClientArgs) GetSetup() *ClientConfig { method GetMark (line 215) | func (m *ClientArgs) GetMark() *Mark { type ClientStats (line 222) | type ClientStats struct method Reset (line 229) | func (m *ClientStats) Reset() { *m = ClientStats{} } method String (line 230) | func (m *ClientStats) String() string { return proto.CompactTextString... method ProtoMessage (line 231) | func (*ClientStats) ProtoMessage() {} method GetLatencies (line 233) | func (m *ClientStats) GetLatencies() *HistogramData { type ClientStatus (line 240) | type ClientStatus struct method Reset (line 244) | func (m *ClientStatus) Reset() { *m = ClientStatus{} } method String (line 245) | func (m *ClientStatus) String() string { return proto.CompactTextStrin... method ProtoMessage (line 246) | func (*ClientStatus) ProtoMessage() {} method GetStats (line 248) | func (m *ClientStatus) GetStats() *ClientStats { type ServerConfig (line 255) | type ServerConfig struct method Reset (line 261) | func (m *ServerConfig) Reset() { *m = ServerConfig{} } method String (line 262) | func (m *ServerConfig) String() string { return proto.CompactTextStrin... method ProtoMessage (line 263) | func (*ServerConfig) ProtoMessage() {} type ServerArgs (line 265) | type ServerArgs struct method Reset (line 270) | func (m *ServerArgs) Reset() { *m = ServerArgs{} } method String (line 271) | func (m *ServerArgs) String() string { return proto.CompactTextString(... method ProtoMessage (line 272) | func (*ServerArgs) ProtoMessage() {} method GetSetup (line 274) | func (m *ServerArgs) GetSetup() *ServerConfig { method GetMark (line 281) | func (m *ServerArgs) GetMark() *Mark { type ServerStatus (line 288) | type ServerStatus struct method Reset (line 293) | func (m *ServerStatus) Reset() { *m = ServerStatus{} } method String (line 294) | func (m *ServerStatus) String() string { return proto.CompactTextStrin... method ProtoMessage (line 295) | func (*ServerStatus) ProtoMessage() {} method GetStats (line 297) | func (m *ServerStatus) GetStats() *ServerStats { type SimpleRequest (line 304) | type SimpleRequest struct method Reset (line 315) | func (m *SimpleRequest) Reset() { *m = SimpleRequest{} } method String (line 316) | func (m *SimpleRequest) String() string { return proto.CompactTextStri... method ProtoMessage (line 317) | func (*SimpleRequest) ProtoMessage() {} method GetPayload (line 319) | func (m *SimpleRequest) GetPayload() *Payload { type SimpleResponse (line 326) | type SimpleResponse struct method Reset (line 330) | func (m *SimpleResponse) Reset() { *m = SimpleResponse{} } method String (line 331) | func (m *SimpleResponse) String() string { return proto.CompactTextStr... method ProtoMessage (line 332) | func (*SimpleResponse) ProtoMessage() {} method GetPayload (line 334) | func (m *SimpleResponse) GetPayload() *Payload { function init (line 341) | func init() { type TestServiceClient (line 350) | type TestServiceClient interface type testServiceClient (line 359) | type testServiceClient struct method UnaryCall (line 367) | func (c *testServiceClient) UnaryCall(ctx context.Context, in *SimpleR... method StreamingCall (line 376) | func (c *testServiceClient) StreamingCall(ctx context.Context, opts ..... function NewTestServiceClient (line 363) | func NewTestServiceClient(cc *grpc.ClientConn) TestServiceClient { type TestService_StreamingCallClient (line 385) | type TestService_StreamingCallClient interface type testServiceStreamingCallClient (line 391) | type testServiceStreamingCallClient struct method Send (line 395) | func (x *testServiceStreamingCallClient) Send(m *SimpleRequest) error { method Recv (line 399) | func (x *testServiceStreamingCallClient) Recv() (*SimpleResponse, erro... type TestServiceServer (line 409) | type TestServiceServer interface function RegisterTestServiceServer (line 418) | func RegisterTestServiceServer(s *grpc.Server, srv TestServiceServer) { function _TestService_UnaryCall_Handler (line 422) | func _TestService_UnaryCall_Handler(srv interface{}, ctx context.Context... function _TestService_StreamingCall_Handler (line 434) | func _TestService_StreamingCall_Handler(srv interface{}, stream grpc.Ser... type TestService_StreamingCallServer (line 438) | type TestService_StreamingCallServer interface type testServiceStreamingCallServer (line 444) | type testServiceStreamingCallServer struct method Send (line 448) | func (x *testServiceStreamingCallServer) Send(m *SimpleResponse) error { method Recv (line 452) | func (x *testServiceStreamingCallServer) Recv() (*SimpleRequest, error) { type WorkerClient (line 481) | type WorkerClient interface type workerClient (line 488) | type workerClient struct method RunTest (line 496) | func (c *workerClient) RunTest(ctx context.Context, opts ...grpc.CallO... method RunServer (line 527) | func (c *workerClient) RunServer(ctx context.Context, opts ...grpc.Cal... function NewWorkerClient (line 492) | func NewWorkerClient(cc *grpc.ClientConn) WorkerClient { type Worker_RunTestClient (line 505) | type Worker_RunTestClient interface type workerRunTestClient (line 511) | type workerRunTestClient struct method Send (line 515) | func (x *workerRunTestClient) Send(m *ClientArgs) error { method Recv (line 519) | func (x *workerRunTestClient) Recv() (*ClientStatus, error) { type Worker_RunServerClient (line 536) | type Worker_RunServerClient interface type workerRunServerClient (line 542) | type workerRunServerClient struct method Send (line 546) | func (x *workerRunServerClient) Send(m *ServerArgs) error { method Recv (line 550) | func (x *workerRunServerClient) Recv() (*ServerStatus, error) { type WorkerServer (line 560) | type WorkerServer interface function RegisterWorkerServer (line 567) | func RegisterWorkerServer(s *grpc.Server, srv WorkerServer) { function _Worker_RunTest_Handler (line 571) | func _Worker_RunTest_Handler(srv interface{}, stream grpc.ServerStream) ... type Worker_RunTestServer (line 575) | type Worker_RunTestServer interface type workerRunTestServer (line 581) | type workerRunTestServer struct method Send (line 585) | func (x *workerRunTestServer) Send(m *ClientStatus) error { method Recv (line 589) | func (x *workerRunTestServer) Recv() (*ClientArgs, error) { function _Worker_RunServer_Handler (line 597) | func _Worker_RunServer_Handler(srv interface{}, stream grpc.ServerStream... type Worker_RunServerServer (line 601) | type Worker_RunServerServer interface type workerRunServerServer (line 607) | type workerRunServerServer struct method Send (line 611) | func (x *workerRunServerServer) Send(m *ServerStatus) error { method Recv (line 615) | func (x *workerRunServerServer) Recv() (*ServerArgs, error) { FILE: vendor/google.golang.org/grpc/benchmark/server/main.go function main (line 19) | func main() { FILE: vendor/google.golang.org/grpc/benchmark/stats/counter.go constant hour (line 14) | hour = 0 constant tenminutes (line 15) | tenminutes = 1 constant minute (line 16) | minute = 2 type Counter (line 21) | type Counter struct method advance (line 37) | func (c *Counter) advance() time.Time { method Value (line 46) | func (c *Counter) Value() int64 { method LastUpdate (line 53) | func (c *Counter) LastUpdate() time.Time { method Set (line 60) | func (c *Counter) Set(value int64) { method Incr (line 70) | func (c *Counter) Incr(delta int64) { method Delta1h (line 80) | func (c *Counter) Delta1h() int64 { method Delta10m (line 88) | func (c *Counter) Delta10m() int64 { method Delta1m (line 96) | func (c *Counter) Delta1m() int64 { method Rate1h (line 104) | func (c *Counter) Rate1h() float64 { method Rate10m (line 112) | func (c *Counter) Rate10m() float64 { method Rate1m (line 120) | func (c *Counter) Rate1m() float64 { method Reset (line 128) | func (c *Counter) Reset() { function newCounter (line 28) | func newCounter() *Counter { FILE: vendor/google.golang.org/grpc/benchmark/stats/histogram.go type HistogramValue (line 13) | type HistogramValue struct method Print (line 35) | func (v HistogramValue) Print(w io.Writer) { method String (line 70) | func (v HistogramValue) String() string { type HistogramBucket (line 27) | type HistogramBucket struct type Histogram (line 80) | type Histogram struct method Opts (line 137) | func (h *Histogram) Opts() HistogramOptions { method Add (line 142) | func (h *Histogram) Add(value int64) error { method LastUpdate (line 155) | func (h *Histogram) LastUpdate() time.Time { method Value (line 160) | func (h *Histogram) Value() HistogramValue { method Delta1h (line 180) | func (h *Histogram) Delta1h() HistogramValue { method Delta10m (line 200) | func (h *Histogram) Delta10m() HistogramValue { method Delta1m (line 220) | func (h *Histogram) Delta1m() HistogramValue { method findBucket (line 240) | func (h *Histogram) findBucket(value int64) (int, error) { type HistogramOptions (line 89) | type HistogramOptions struct type bucketInternal (line 104) | type bucketInternal struct function NewHistogram (line 111) | func NewHistogram(opts HistogramOptions) *Histogram { FILE: vendor/google.golang.org/grpc/benchmark/stats/stats.go type Stats (line 13) | type Stats struct method Add (line 39) | func (stats *Stats) Add(d time.Duration) { method Clear (line 45) | func (stats *Stats) Clear() { method maybeUpdate (line 53) | func (stats *Stats) maybeUpdate() { method Print (line 100) | func (stats *Stats) Print(w io.Writer) { method String (line 112) | func (stats *Stats) String() string { type durationSlice (line 23) | type durationSlice function NewStats (line 27) | func NewStats(numBuckets int) *Stats { FILE: vendor/google.golang.org/grpc/benchmark/stats/timeseries.go type timeseries (line 10) | type timeseries struct method advanceTimeWithFill (line 35) | func (ts *timeseries) advanceTimeWithFill(t time.Time, value int64) { method advanceTime (line 59) | func (ts *timeseries) advanceTime(t time.Time) { method set (line 64) | func (ts *timeseries) set(value int64) { method incr (line 69) | func (ts *timeseries) incr(delta int64) { method headValue (line 74) | func (ts *timeseries) headValue() int64 { method headTime (line 79) | func (ts *timeseries) headTime() time.Time { method tailValue (line 84) | func (ts *timeseries) tailValue() int64 { method tailTime (line 92) | func (ts *timeseries) tailTime() time.Time { method delta (line 102) | func (ts *timeseries) delta() int64 { method rate (line 108) | func (ts *timeseries) rate() float64 { method min (line 117) | func (ts *timeseries) min() int64 { method max (line 133) | func (ts *timeseries) max() int64 { method reset (line 149) | func (ts *timeseries) reset(t time.Time) { function newTimeSeries (line 21) | func newTimeSeries(initialTime time.Time, period, resolution time.Durati... FILE: vendor/google.golang.org/grpc/benchmark/stats/tracker.go type Tracker (line 12) | type Tracker struct method init (line 33) | func (t *Tracker) init() { method advance (line 44) | func (t *Tracker) advance() time.Time { method LastUpdate (line 56) | func (t *Tracker) LastUpdate() time.Time { method Push (line 63) | func (t *Tracker) Push(value int64) { method Min (line 86) | func (t *Tracker) Min() int64 { method Max (line 93) | func (t *Tracker) Max() int64 { method Min1h (line 100) | func (t *Tracker) Min1h() int64 { method Max1h (line 108) | func (t *Tracker) Max1h() int64 { method Min10m (line 116) | func (t *Tracker) Min10m() int64 { method Max10m (line 124) | func (t *Tracker) Max10m() int64 { method Min1m (line 132) | func (t *Tracker) Min1m() int64 { method Max1m (line 140) | func (t *Tracker) Max1m() int64 { method Reset (line 148) | func (t *Tracker) Reset() { function newTracker (line 20) | func newTracker() *Tracker { FILE: vendor/google.golang.org/grpc/benchmark/stats/util.go function AddStats (line 33) | func AddStats(b *testing.B, numBuckets int) *Stats { function AddStatsWithName (line 44) | func AddStatsWithName(b *testing.B, name string, numBuckets int) *Stats { function RunTestMain (line 84) | func RunTestMain(m *testing.M) int { function startStatsInjector (line 91) | func startStatsInjector() { function stopStatsInjector (line 116) | func stopStatsInjector() { function splitLines (line 125) | func splitLines(data []byte, eof bool) (advance int, token []byte, err e... function injectStatsIfFinished (line 148) | func injectStatsIfFinished(line string) { function resetCurBenchStats (line 187) | func resetCurBenchStats() { FILE: vendor/google.golang.org/grpc/call.go function recvResponse (line 49) | func recvResponse(codec Codec, t transport.ClientTransport, c *callInfo,... function sendRequest (line 70) | func sendRequest(ctx context.Context, codec Codec, callHdr *transport.Ca... type callInfo (line 96) | type callInfo struct function Invoke (line 104) | func Invoke(ctx context.Context, method string, args, reply interface{},... FILE: vendor/google.golang.org/grpc/clientconn.go type dialOptions (line 62) | type dialOptions struct type DialOption (line 68) | type DialOption function WithCodec (line 71) | func WithCodec(c Codec) DialOption { function WithTransportCredentials (line 79) | func WithTransportCredentials(creds credentials.TransportAuthenticator) ... function WithPerRPCCredentials (line 87) | func WithPerRPCCredentials(creds credentials.Credentials) DialOption { function WithTimeout (line 94) | func WithTimeout(d time.Duration) DialOption { function WithDialer (line 101) | func WithDialer(f func(addr string, timeout time.Duration) (net.Conn, er... function Dial (line 110) | func Dial(target string, opts ...DialOption) (*ClientConn, error) { type ClientConn (line 139) | type ClientConn struct method resetTransport (line 158) | func (cc *ClientConn) resetTransport(closeTransport bool) error { method transportMonitor (line 222) | func (cc *ClientConn) transportMonitor() { method wait (line 243) | func (cc *ClientConn) wait(ctx context.Context, ts int) (transport.Cli... method Close (line 276) | func (cc *ClientConn) Close() error { FILE: vendor/google.golang.org/grpc/codes/code_string.go constant _Code_name (line 7) | _Code_name = "OKCanceledUnknownInvalidArgumentDeadlineExceededNotFoundAl... method String (line 11) | func (i Code) String() string { FILE: vendor/google.golang.org/grpc/codes/codes.go type Code (line 39) | type Code constant OK (line 45) | OK Code = 0 constant Canceled (line 48) | Canceled Code = 1 constant Unknown (line 55) | Unknown Code = 2 constant InvalidArgument (line 61) | InvalidArgument Code = 3 constant DeadlineExceeded (line 68) | DeadlineExceeded Code = 4 constant NotFound (line 72) | NotFound Code = 5 constant AlreadyExists (line 76) | AlreadyExists Code = 6 constant PermissionDenied (line 84) | PermissionDenied Code = 7 constant Unauthenticated (line 88) | Unauthenticated Code = 16 constant ResourceExhausted (line 92) | ResourceExhausted Code = 8 constant FailedPrecondition (line 113) | FailedPrecondition Code = 9 constant Aborted (line 121) | Aborted Code = 10 constant OutOfRange (line 138) | OutOfRange Code = 11 constant Unimplemented (line 142) | Unimplemented Code = 12 constant Internal (line 147) | Internal Code = 13 constant Unavailable (line 155) | Unavailable Code = 14 constant DataLoss (line 158) | DataLoss Code = 15 FILE: vendor/google.golang.org/grpc/credentials/credentials.go type Credentials (line 62) | type Credentials interface type ProtocolInfo (line 75) | type ProtocolInfo struct type TransportAuthenticator (line 86) | type TransportAuthenticator interface type tlsCreds (line 98) | type tlsCreds struct method Info (line 103) | func (c *tlsCreds) Info() ProtocolInfo { method GetRequestMetadata (line 112) | func (c *tlsCreds) GetRequestMetadata(ctx context.Context) (map[string... method ClientHandshake (line 122) | func (c *tlsCreds) ClientHandshake(addr string, rawConn net.Conn, time... method ServerHandshake (line 154) | func (c *tlsCreds) ServerHandshake(rawConn net.Conn) (net.Conn, error) { type timeoutError (line 116) | type timeoutError struct method Error (line 118) | func (timeoutError) Error() string { return "credentials: Dial timed... method Timeout (line 119) | func (timeoutError) Timeout() bool { return true } method Temporary (line 120) | func (timeoutError) Temporary() bool { return true } function NewTLS (line 164) | func NewTLS(c *tls.Config) TransportAuthenticator { function NewClientTLSFromCert (line 171) | func NewClientTLSFromCert(cp *x509.CertPool, serverName string) Transpor... function NewClientTLSFromFile (line 176) | func NewClientTLSFromFile(certFile, serverName string) (TransportAuthent... function NewServerTLSFromCert (line 189) | func NewServerTLSFromCert(cert *tls.Certificate) TransportAuthenticator { function NewServerTLSFromFile (line 195) | func NewServerTLSFromFile(certFile, keyFile string) (TransportAuthentica... type TokenSource (line 204) | type TokenSource struct method GetRequestMetadata (line 209) | func (ts TokenSource) GetRequestMetadata(ctx context.Context) (map[str... function NewComputeEngine (line 223) | func NewComputeEngine() Credentials { type serviceAccount (line 228) | type serviceAccount struct method GetRequestMetadata (line 232) | func (s serviceAccount) GetRequestMetadata(ctx context.Context) (map[s... function NewServiceAccountFromKey (line 244) | func NewServiceAccountFromKey(jsonKey []byte, scope ...string) (Credenti... function NewServiceAccountFromFile (line 254) | func NewServiceAccountFromFile(keyFile string, scope ...string) (Credent... function NewApplicationDefault (line 264) | func NewApplicationDefault(ctx context.Context, scope ...string) (Creden... FILE: vendor/google.golang.org/grpc/examples/route_guide/client/client.go function printFeature (line 61) | func printFeature(client pb.RouteGuideClient, point *pb.Point) { function printFeatures (line 71) | func printFeatures(client pb.RouteGuideClient, rect *pb.Rectangle) { function runRecordRoute (line 90) | func runRecordRoute(client pb.RouteGuideClient) { function runRouteChat (line 116) | func runRouteChat(client pb.RouteGuideClient) { function randomPoint (line 153) | func randomPoint(r *rand.Rand) *pb.Point { function main (line 159) | func main() { FILE: vendor/google.golang.org/grpc/examples/route_guide/proto/route_guide.pb.go type Point (line 38) | type Point struct method Reset (line 43) | func (m *Point) Reset() { *m = Point{} } method String (line 44) | func (m *Point) String() string { return proto1.CompactTextString(m) } method ProtoMessage (line 45) | func (*Point) ProtoMessage() {} type Rectangle (line 49) | type Rectangle struct method Reset (line 56) | func (m *Rectangle) Reset() { *m = Rectangle{} } method String (line 57) | func (m *Rectangle) String() string { return proto1.CompactTextString(... method ProtoMessage (line 58) | func (*Rectangle) ProtoMessage() {} method GetLo (line 60) | func (m *Rectangle) GetLo() *Point { method GetHi (line 67) | func (m *Rectangle) GetHi() *Point { type Feature (line 77) | type Feature struct method Reset (line 84) | func (m *Feature) Reset() { *m = Feature{} } method String (line 85) | func (m *Feature) String() string { return proto1.CompactTextString(m) } method ProtoMessage (line 86) | func (*Feature) ProtoMessage() {} method GetLocation (line 88) | func (m *Feature) GetLocation() *Point { type RouteNote (line 96) | type RouteNote struct method Reset (line 103) | func (m *RouteNote) Reset() { *m = RouteNote{} } method String (line 104) | func (m *RouteNote) String() string { return proto1.CompactTextString(... method ProtoMessage (line 105) | func (*RouteNote) ProtoMessage() {} method GetLocation (line 107) | func (m *RouteNote) GetLocation() *Point { type RouteSummary (line 119) | type RouteSummary struct method Reset (line 130) | func (m *RouteSummary) Reset() { *m = RouteSummary{} } method String (line 131) | func (m *RouteSummary) String() string { return proto1.CompactTextStri... method ProtoMessage (line 132) | func (*RouteSummary) ProtoMessage() {} function init (line 134) | func init() { type RouteGuideClient (line 139) | type RouteGuideClient interface type routeGuideClient (line 166) | type routeGuideClient struct method GetFeature (line 174) | func (c *routeGuideClient) GetFeature(ctx context.Context, in *Point, ... method ListFeatures (line 183) | func (c *routeGuideClient) ListFeatures(ctx context.Context, in *Recta... method RecordRoute (line 215) | func (c *routeGuideClient) RecordRoute(ctx context.Context, opts ...gr... method RouteChat (line 249) | func (c *routeGuideClient) RouteChat(ctx context.Context, opts ...grpc... function NewRouteGuideClient (line 170) | func NewRouteGuideClient(cc *grpc.ClientConn) RouteGuideClient { type RouteGuide_ListFeaturesClient (line 198) | type RouteGuide_ListFeaturesClient interface type routeGuideListFeaturesClient (line 203) | type routeGuideListFeaturesClient struct method Recv (line 207) | func (x *routeGuideListFeaturesClient) Recv() (*Feature, error) { type RouteGuide_RecordRouteClient (line 224) | type RouteGuide_RecordRouteClient interface type routeGuideRecordRouteClient (line 230) | type routeGuideRecordRouteClient struct method Send (line 234) | func (x *routeGuideRecordRouteClient) Send(m *Point) error { method CloseAndRecv (line 238) | func (x *routeGuideRecordRouteClient) CloseAndRecv() (*RouteSummary, e... type RouteGuide_RouteChatClient (line 258) | type RouteGuide_RouteChatClient interface type routeGuideRouteChatClient (line 264) | type routeGuideRouteChatClient struct method Send (line 268) | func (x *routeGuideRouteChatClient) Send(m *RouteNote) error { method Recv (line 272) | func (x *routeGuideRouteChatClient) Recv() (*RouteNote, error) { type RouteGuideServer (line 282) | type RouteGuideServer interface function RegisterRouteGuideServer (line 309) | func RegisterRouteGuideServer(s *grpc.Server, srv RouteGuideServer) { function _RouteGuide_GetFeature_Handler (line 313) | func _RouteGuide_GetFeature_Handler(srv interface{}, ctx context.Context... function _RouteGuide_ListFeatures_Handler (line 325) | func _RouteGuide_ListFeatures_Handler(srv interface{}, stream grpc.Serve... type RouteGuide_ListFeaturesServer (line 333) | type RouteGuide_ListFeaturesServer interface type routeGuideListFeaturesServer (line 338) | type routeGuideListFeaturesServer struct method Send (line 342) | func (x *routeGuideListFeaturesServer) Send(m *Feature) error { function _RouteGuide_RecordRoute_Handler (line 346) | func _RouteGuide_RecordRoute_Handler(srv interface{}, stream grpc.Server... type RouteGuide_RecordRouteServer (line 350) | type RouteGuide_RecordRouteServer interface type routeGuideRecordRouteServer (line 356) | type routeGuideRecordRouteServer struct method SendAndClose (line 360) | func (x *routeGuideRecordRouteServer) SendAndClose(m *RouteSummary) er... method Recv (line 364) | func (x *routeGuideRecordRouteServer) Recv() (*Point, error) { function _RouteGuide_RouteChat_Handler (line 372) | func _RouteGuide_RouteChat_Handler(srv interface{}, stream grpc.ServerSt... type RouteGuide_RouteChatServer (line 376) | type RouteGuide_RouteChatServer interface type routeGuideRouteChatServer (line 382) | type routeGuideRouteChatServer struct method Send (line 386) | func (x *routeGuideRouteChatServer) Send(m *RouteNote) error { method Recv (line 390) | func (x *routeGuideRouteChatServer) Recv() (*RouteNote, error) { FILE: vendor/google.golang.org/grpc/examples/route_guide/server/server.go type routeGuideServer (line 69) | type routeGuideServer struct method GetFeature (line 75) | func (s *routeGuideServer) GetFeature(ctx context.Context, point *pb.P... method ListFeatures (line 86) | func (s *routeGuideServer) ListFeatures(rect *pb.Rectangle, stream pb.... method RecordRoute (line 102) | func (s *routeGuideServer) RecordRoute(stream pb.RouteGuide_RecordRout... method RouteChat (line 135) | func (s *routeGuideServer) RouteChat(stream pb.RouteGuide_RouteChatSer... method loadFeatures (line 159) | func (s *routeGuideServer) loadFeatures(filePath string) { function toRadians (line 169) | func toRadians(num float64) float64 { function calcDistance (line 175) | func calcDistance(p1 *pb.Point, p2 *pb.Point) int32 { function inRange (line 196) | func inRange(point *pb.Point, rect *pb.Rectangle) bool { function serialize (line 211) | func serialize(point *pb.Point) string { function newServer (line 215) | func newServer() *routeGuideServer { function main (line 222) | func main() { FILE: vendor/google.golang.org/grpc/grpclog/logger.go type Logger (line 57) | type Logger interface function SetLogger (line 67) | func SetLogger(l Logger) { function Fatal (line 72) | func Fatal(args ...interface{}) { function Fatalf (line 77) | func Fatalf(format string, args ...interface{}) { function Fatalln (line 82) | func Fatalln(args ...interface{}) { function Print (line 87) | func Print(args ...interface{}) { function Printf (line 92) | func Printf(format string, args ...interface{}) { function Println (line 97) | func Println(args ...interface{}) { type glogger (line 101) | type glogger struct method Fatal (line 103) | func (g *glogger) Fatal(args ...interface{}) { method Fatalf (line 107) | func (g *glogger) Fatalf(format string, args ...interface{}) { method Fatalln (line 111) | func (g *glogger) Fatalln(args ...interface{}) { method Print (line 115) | func (g *glogger) Print(args ...interface{}) { method Printf (line 119) | func (g *glogger) Printf(format string, args ...interface{}) { method Println (line 123) | func (g *glogger) Println(args ...interface{}) { FILE: vendor/google.golang.org/grpc/interop/client/client.go function newPayload (line 83) | func newPayload(t testpb.PayloadType, size int) *testpb.Payload { function doEmptyUnaryCall (line 101) | func doEmptyUnaryCall(tc testpb.TestServiceClient) { function doLargeUnaryCall (line 112) | func doLargeUnaryCall(tc testpb.TestServiceClient) { function doClientStreaming (line 131) | func doClientStreaming(tc testpb.TestServiceClient) { function doServerStreaming (line 159) | func doServerStreaming(tc testpb.TestServiceClient) { function doPingPong (line 203) | func doPingPong(tc testpb.TestServiceClient) { function doComputeEngineCreds (line 247) | func doComputeEngineCreds(tc testpb.TestServiceClient) { function getServiceAccountJSONKey (line 271) | func getServiceAccountJSONKey() []byte { function doServiceAccountCreds (line 279) | func doServiceAccountCreds(tc testpb.TestServiceClient) { function doCancelAfterBegin (line 311) | func doCancelAfterBegin(tc testpb.TestServiceClient) { function doCancelAfterFirstResponse (line 325) | func doCancelAfterFirstResponse(tc testpb.TestServiceClient) { function main (line 355) | func main() { FILE: vendor/google.golang.org/grpc/interop/grpc_testing/test.pb.go type PayloadType (line 41) | type PayloadType method Enum (line 63) | func (x PayloadType) Enum() *PayloadType { method String (line 68) | func (x PayloadType) String() string { method UnmarshalJSON (line 71) | func (x *PayloadType) UnmarshalJSON(data []byte) error { constant PayloadType_COMPRESSABLE (line 45) | PayloadType_COMPRESSABLE PayloadType = 0 constant PayloadType_UNCOMPRESSABLE (line 47) | PayloadType_UNCOMPRESSABLE PayloadType = 1 constant PayloadType_RANDOM (line 49) | PayloadType_RANDOM PayloadType = 2 type Empty (line 80) | type Empty struct method Reset (line 84) | func (m *Empty) Reset() { *m = Empty{} } method String (line 85) | func (m *Empty) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 86) | func (*Empty) ProtoMessage() {} type Payload (line 89) | type Payload struct method Reset (line 97) | func (m *Payload) Reset() { *m = Payload{} } method String (line 98) | func (m *Payload) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 99) | func (*Payload) ProtoMessage() {} method GetType (line 101) | func (m *Payload) GetType() PayloadType { method GetBody (line 108) | func (m *Payload) GetBody() []byte { type SimpleRequest (line 116) | type SimpleRequest struct method Reset (line 132) | func (m *SimpleRequest) Reset() { *m = SimpleRequest{} } method String (line 133) | func (m *SimpleRequest) String() string { return proto.CompactTextStri... method ProtoMessage (line 134) | func (*SimpleRequest) ProtoMessage() {} method GetResponseType (line 136) | func (m *SimpleRequest) GetResponseType() PayloadType { method GetResponseSize (line 143) | func (m *SimpleRequest) GetResponseSize() int32 { method GetPayload (line 150) | func (m *SimpleRequest) GetPayload() *Payload { method GetFillUsername (line 157) | func (m *SimpleRequest) GetFillUsername() bool { method GetFillOauthScope (line 164) | func (m *SimpleRequest) GetFillOauthScope() bool { type SimpleResponse (line 172) | type SimpleResponse struct method Reset (line 183) | func (m *SimpleResponse) Reset() { *m = SimpleResponse{} } method String (line 184) | func (m *SimpleResponse) String() string { return proto.CompactTextStr... method ProtoMessage (line 185) | func (*SimpleResponse) ProtoMessage() {} method GetPayload (line 187) | func (m *SimpleResponse) GetPayload() *Payload { method GetUsername (line 194) | func (m *SimpleResponse) GetUsername() string { method GetOauthScope (line 201) | func (m *SimpleResponse) GetOauthScope() string { type StreamingInputCallRequest (line 209) | type StreamingInputCallRequest struct method Reset (line 215) | func (m *StreamingInputCallRequest) Reset() { *m = StreamingIn... method String (line 216) | func (m *StreamingInputCallRequest) String() string { return proto.Com... method ProtoMessage (line 217) | func (*StreamingInputCallRequest) ProtoMessage() {} method GetPayload (line 219) | func (m *StreamingInputCallRequest) GetPayload() *Payload { type StreamingInputCallResponse (line 227) | type StreamingInputCallResponse struct method Reset (line 233) | func (m *StreamingInputCallResponse) Reset() { *m = StreamingI... method String (line 234) | func (m *StreamingInputCallResponse) String() string { return proto.Co... method ProtoMessage (line 235) | func (*StreamingInputCallResponse) ProtoMessage() {} method GetAggregatedPayloadSize (line 237) | func (m *StreamingInputCallResponse) GetAggregatedPayloadSize() int32 { type ResponseParameters (line 245) | type ResponseParameters struct method Reset (line 255) | func (m *ResponseParameters) Reset() { *m = ResponseParameters... method String (line 256) | func (m *ResponseParameters) String() string { return proto.CompactTex... method ProtoMessage (line 257) | func (*ResponseParameters) ProtoMessage() {} method GetSize (line 259) | func (m *ResponseParameters) GetSize() int32 { method GetIntervalUs (line 266) | func (m *ResponseParameters) GetIntervalUs() int32 { type StreamingOutputCallRequest (line 274) | type StreamingOutputCallRequest struct method Reset (line 287) | func (m *StreamingOutputCallRequest) Reset() { *m = StreamingO... method String (line 288) | func (m *StreamingOutputCallRequest) String() string { return proto.Co... method ProtoMessage (line 289) | func (*StreamingOutputCallRequest) ProtoMessage() {} method GetResponseType (line 291) | func (m *StreamingOutputCallRequest) GetResponseType() PayloadType { method GetResponseParameters (line 298) | func (m *StreamingOutputCallRequest) GetResponseParameters() []*Respon... method GetPayload (line 305) | func (m *StreamingOutputCallRequest) GetPayload() *Payload { type StreamingOutputCallResponse (line 313) | type StreamingOutputCallResponse struct method Reset (line 319) | func (m *StreamingOutputCallResponse) Reset() { *m = Streaming... method String (line 320) | func (m *StreamingOutputCallResponse) String() string { return proto.C... method ProtoMessage (line 321) | func (*StreamingOutputCallResponse) ProtoMessage() {} method GetPayload (line 323) | func (m *StreamingOutputCallResponse) GetPayload() *Payload { function init (line 330) | func init() { type TestServiceClient (line 336) | type TestServiceClient interface type testServiceClient (line 359) | type testServiceClient struct method EmptyCall (line 367) | func (c *testServiceClient) EmptyCall(ctx context.Context, in *Empty, ... method UnaryCall (line 376) | func (c *testServiceClient) UnaryCall(ctx context.Context, in *SimpleR... method StreamingOutputCall (line 385) | func (c *testServiceClient) StreamingOutputCall(ctx context.Context, i... method StreamingInputCall (line 417) | func (c *testServiceClient) StreamingInputCall(ctx context.Context, op... method FullDuplexCall (line 451) | func (c *testServiceClient) FullDuplexCall(ctx context.Context, opts .... method HalfDuplexCall (line 482) | func (c *testServiceClient) HalfDuplexCall(ctx context.Context, opts .... function NewTestServiceClient (line 363) | func NewTestServiceClient(cc *grpc.ClientConn) TestServiceClient { type TestService_StreamingOutputCallClient (line 400) | type TestService_StreamingOutputCallClient interface type testServiceStreamingOutputCallClient (line 405) | type testServiceStreamingOutputCallClient struct method Recv (line 409) | func (x *testServiceStreamingOutputCallClient) Recv() (*StreamingOutpu... type TestService_StreamingInputCallClient (line 426) | type TestService_StreamingInputCallClient interface type testServiceStreamingInputCallClient (line 432) | type testServiceStreamingInputCallClient struct method Send (line 436) | func (x *testServiceStreamingInputCallClient) Send(m *StreamingInputCa... method CloseAndRecv (line 440) | func (x *testServiceStreamingInputCallClient) CloseAndRecv() (*Streami... type TestService_FullDuplexCallClient (line 460) | type TestService_FullDuplexCallClient interface type testServiceFullDuplexCallClient (line 466) | type testServiceFullDuplexCallClient struct method Send (line 470) | func (x *testServiceFullDuplexCallClient) Send(m *StreamingOutputCallR... method Recv (line 474) | func (x *testServiceFullDuplexCallClient) Recv() (*StreamingOutputCall... type TestService_HalfDuplexCallClient (line 491) | type TestService_HalfDuplexCallClient interface type testServiceHalfDuplexCallClient (line 497) | type testServiceHalfDuplexCallClient struct method Send (line 501) | func (x *testServiceHalfDuplexCallClient) Send(m *StreamingOutputCallR... method Recv (line 505) | func (x *testServiceHalfDuplexCallClient) Recv() (*StreamingOutputCall... type TestServiceServer (line 515) | type TestServiceServer interface function RegisterTestServiceServer (line 538) | func RegisterTestServiceServer(s *grpc.Server, srv TestServiceServer) { function _TestService_EmptyCall_Handler (line 542) | func _TestService_EmptyCall_Handler(srv interface{}, ctx context.Context... function _TestService_UnaryCall_Handler (line 554) | func _TestService_UnaryCall_Handler(srv interface{}, ctx context.Context... function _TestService_StreamingOutputCall_Handler (line 566) | func _TestService_StreamingOutputCall_Handler(srv interface{}, stream gr... type TestService_StreamingOutputCallServer (line 574) | type TestService_StreamingOutputCallServer interface type testServiceStreamingOutputCallServer (line 579) | type testServiceStreamingOutputCallServer struct method Send (line 583) | func (x *testServiceStreamingOutputCallServer) Send(m *StreamingOutput... function _TestService_StreamingInputCall_Handler (line 587) | func _TestService_StreamingInputCall_Handler(srv interface{}, stream grp... type TestService_StreamingInputCallServer (line 591) | type TestService_StreamingInputCallServer interface type testServiceStreamingInputCallServer (line 597) | type testServiceStreamingInputCallServer struct method SendAndClose (line 601) | func (x *testServiceStreamingInputCallServer) SendAndClose(m *Streamin... method Recv (line 605) | func (x *testServiceStreamingInputCallServer) Recv() (*StreamingInputC... function _TestService_FullDuplexCall_Handler (line 613) | func _TestService_FullDuplexCall_Handler(srv interface{}, stream grpc.Se... type TestService_FullDuplexCallServer (line 617) | type TestService_FullDuplexCallServer interface type testServiceFullDuplexCallServer (line 623) | type testServiceFullDuplexCallServer struct method Send (line 627) | func (x *testServiceFullDuplexCallServer) Send(m *StreamingOutputCallR... method Recv (line 631) | func (x *testServiceFullDuplexCallServer) Recv() (*StreamingOutputCall... function _TestService_HalfDuplexCall_Handler (line 639) | func _TestService_HalfDuplexCall_Handler(srv interface{}, stream grpc.Se... type TestService_HalfDuplexCallServer (line 643) | type TestService_HalfDuplexCallServer interface type testServiceHalfDuplexCallServer (line 649) | type testServiceHalfDuplexCallServer struct method Send (line 653) | func (x *testServiceHalfDuplexCallServer) Send(m *StreamingOutputCallR... method Recv (line 657) | func (x *testServiceHalfDuplexCallServer) Recv() (*StreamingOutputCall... FILE: vendor/google.golang.org/grpc/interop/server/server.go type testServer (line 59) | type testServer struct method EmptyCall (line 62) | func (s *testServer) EmptyCall(ctx context.Context, in *testpb.Empty) ... method UnaryCall (line 84) | func (s *testServer) UnaryCall(ctx context.Context, in *testpb.SimpleR... method StreamingOutputCall (line 94) | func (s *testServer) StreamingOutputCall(args *testpb.StreamingOutputC... method StreamingInputCall (line 113) | func (s *testServer) StreamingInputCall(stream testpb.TestService_Stre... method FullDuplexCall (line 130) | func (s *testServer) FullDuplexCall(stream testpb.TestService_FullDupl... method HalfDuplexCall (line 158) | func (s *testServer) HalfDuplexCall(stream testpb.TestService_HalfDupl... function newPayload (line 66) | func newPayload(t testpb.PayloadType, size int32) (*testpb.Payload, erro... function main (line 191) | func main() { FILE: vendor/google.golang.org/grpc/metadata/metadata.go constant binHdrSuffix (line 46) | binHdrSuffix = "-bin" function isASCII (line 51) | func isASCII(s string) bool { function encodeKeyValue (line 63) | func encodeKeyValue(k, v string) (string, string) { function DecodeKeyValue (line 74) | func DecodeKeyValue(k, v string) (string, string, error) { type MD (line 88) | type MD method Len (line 120) | func (md MD) Len() int { method Copy (line 125) | func (md MD) Copy() MD { function New (line 91) | func New(m map[string]string) MD { function Pairs (line 102) | func Pairs(kv ...string) MD { type mdKey (line 133) | type mdKey struct function NewContext (line 136) | func NewContext(ctx context.Context, md MD) context.Context { function FromContext (line 141) | func FromContext(ctx context.Context) (md MD, ok bool) { FILE: vendor/google.golang.org/grpc/rpc_util.go type Codec (line 53) | type Codec interface type protoCodec (line 64) | type protoCodec struct method Marshal (line 66) | func (protoCodec) Marshal(v interface{}) ([]byte, error) { method Unmarshal (line 70) | func (protoCodec) Unmarshal(data []byte, v interface{}) error { method String (line 74) | func (protoCodec) String() string { type CallOption (line 80) | type CallOption interface type beforeCall (line 90) | type beforeCall method before (line 92) | func (o beforeCall) before(c *callInfo) error { return o(c) } method after (line 93) | func (o beforeCall) after(c *callInfo) {} type afterCall (line 95) | type afterCall method before (line 97) | func (o afterCall) before(c *callInfo) error { return nil } method after (line 98) | func (o afterCall) after(c *callInfo) { o(c) } function Header (line 102) | func Header(md *metadata.MD) CallOption { function Trailer (line 110) | func Trailer(md *metadata.MD) CallOption { type payloadFormat (line 117) | type payloadFormat constant compressionNone (line 120) | compressionNone payloadFormat = iota constant compressionFlate (line 121) | compressionFlate type parser (line 126) | type parser struct method recvMsg (line 140) | func (p *parser) recvMsg() (pf payloadFormat, msg []byte, err error) { type msgFixedHeader (line 131) | type msgFixedHeader struct function encode (line 160) | func encode(c Codec, msg interface{}, pf payloadFormat) ([]byte, error) { function recv (line 182) | func recv(p *parser, c Codec, m interface{}) error { type rpcError (line 199) | type rpcError struct method Error (line 204) | func (e rpcError) Error() string { function Code (line 210) | func Code(err error) codes.Code { function Errorf (line 222) | func Errorf(c codes.Code, format string, a ...interface{}) error { function toRPCErr (line 233) | func toRPCErr(err error) error { function convertCode (line 251) | func convertCode(err error) codes.Code { constant baseDelay (line 279) | baseDelay = 1.0 * time.Second constant maxDelay (line 281) | maxDelay = 120 * time.Second constant backoffFactor (line 282) | backoffFactor = 2.0 constant backoffRange (line 283) | backoffRange = 0.4 function backoff (line 288) | func backoff(retries int) time.Duration { FILE: vendor/google.golang.org/grpc/server.go type methodHandler (line 53) | type methodHandler type MethodDesc (line 56) | type MethodDesc struct type ServiceDesc (line 62) | type ServiceDesc struct type service (line 73) | type service struct type Server (line 80) | type Server struct method RegisterService (line 141) | func (s *Server) RegisterService(sd *ServiceDesc, ss interface{}) { method Serve (line 179) | func (s *Server) Serve(lis net.Listener) error { method sendResponse (line 232) | func (s *Server) sendResponse(t transport.ServerTransport, stream *tra... method processUnaryRPC (line 247) | func (s *Server) processUnaryRPC(t transport.ServerTransport, stream *... method processStreamingRPC (line 309) | func (s *Server) processStreamingRPC(t transport.ServerTransport, stre... method handleStream (line 328) | func (s *Server) handleStream(t transport.ServerTransport, stream *tra... method Stop (line 365) | func (s *Server) Stop() { method TestingCloseConns (line 382) | func (s *Server) TestingCloseConns() { type options (line 88) | type options struct type ServerOption (line 95) | type ServerOption function CustomCodec (line 98) | func CustomCodec(codec Codec) ServerOption { function MaxConcurrentStreams (line 106) | func MaxConcurrentStreams(n uint32) ServerOption { function Creds (line 113) | func Creds(c credentials.Credentials) ServerOption { function NewServer (line 121) | func NewServer(opt ...ServerOption) *Server { function SendHeader (line 393) | func SendHeader(ctx context.Context, md metadata.MD) error { function SetTrailer (line 411) | func SetTrailer(ctx context.Context, md metadata.MD) error { FILE: vendor/google.golang.org/grpc/stream.go type streamHandler (line 46) | type streamHandler type StreamDesc (line 49) | type StreamDesc struct type Stream (line 59) | type Stream interface type ClientStream (line 76) | type ClientStream interface function NewClientStream (line 95) | func NewClientStream(ctx context.Context, desc *StreamDesc, cc *ClientCo... type clientStream (line 119) | type clientStream struct method Context (line 127) | func (cs *clientStream) Context() context.Context { method Header (line 131) | func (cs *clientStream) Header() (metadata.MD, error) { method Trailer (line 141) | func (cs *clientStream) Trailer() metadata.MD { method SendMsg (line 145) | func (cs *clientStream) SendMsg(m interface{}) (err error) { method RecvMsg (line 162) | func (cs *clientStream) RecvMsg(m interface{}) (err error) { method CloseSend (line 195) | func (cs *clientStream) CloseSend() (err error) { type ServerStream (line 208) | type ServerStream interface type serverStream (line 220) | type serverStream struct method Context (line 229) | func (ss *serverStream) Context() context.Context { method SendHeader (line 233) | func (ss *serverStream) SendHeader(md metadata.MD) error { method SetTrailer (line 237) | func (ss *serverStream) SetTrailer(md metadata.MD) { method SendMsg (line 245) | func (ss *serverStream) SendMsg(m interface{}) error { method RecvMsg (line 254) | func (ss *serverStream) RecvMsg(m interface{}) error { FILE: vendor/google.golang.org/grpc/test/codec_perf/perf.pb.go type Buffer (line 25) | type Buffer struct method Reset (line 30) | func (m *Buffer) Reset() { *m = Buffer{} } method String (line 31) | func (m *Buffer) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 32) | func (*Buffer) ProtoMessage() {} method GetBody (line 34) | func (m *Buffer) GetBody() []byte { function init (line 41) | func init() { FILE: vendor/google.golang.org/grpc/test/grpc_testing/test.pb.go type PayloadType (line 41) | type PayloadType method Enum (line 63) | func (x PayloadType) Enum() *PayloadType { method String (line 68) | func (x PayloadType) String() string { method UnmarshalJSON (line 71) | func (x *PayloadType) UnmarshalJSON(data []byte) error { constant PayloadType_COMPRESSABLE (line 45) | PayloadType_COMPRESSABLE PayloadType = 0 constant PayloadType_UNCOMPRESSABLE (line 47) | PayloadType_UNCOMPRESSABLE PayloadType = 1 constant PayloadType_RANDOM (line 49) | PayloadType_RANDOM PayloadType = 2 type Empty (line 80) | type Empty struct method Reset (line 84) | func (m *Empty) Reset() { *m = Empty{} } method String (line 85) | func (m *Empty) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 86) | func (*Empty) ProtoMessage() {} type Payload (line 89) | type Payload struct method Reset (line 97) | func (m *Payload) Reset() { *m = Payload{} } method String (line 98) | func (m *Payload) String() string { return proto.CompactTextString(m) } method ProtoMessage (line 99) | func (*Payload) ProtoMessage() {} method GetType (line 101) | func (m *Payload) GetType() PayloadType { method GetBody (line 108) | func (m *Payload) GetBody() []byte { type SimpleRequest (line 116) | type SimpleRequest struct method Reset (line 132) | func (m *SimpleRequest) Reset() { *m = SimpleRequest{} } method String (line 133) | func (m *SimpleRequest) String() string { return proto.CompactTextStri... method ProtoMessage (line 134) | func (*SimpleRequest) ProtoMessage() {} method GetResponseType (line 136) | func (m *SimpleRequest) GetResponseType() PayloadType { method GetResponseSize (line 143) | func (m *SimpleRequest) GetResponseSize() int32 { method GetPayload (line 150) | func (m *SimpleRequest) GetPayload() *Payload { method GetFillUsername (line 157) | func (m *SimpleRequest) GetFillUsername() bool { method GetFillOauthScope (line 164) | func (m *SimpleRequest) GetFillOauthScope() bool { type SimpleResponse (line 172) | type SimpleResponse struct method Reset (line 183) | func (m *SimpleResponse) Reset() { *m = SimpleResponse{} } method String (line 184) | func (m *SimpleResponse) String() string { return proto.CompactTextStr... method ProtoMessage (line 185) | func (*SimpleResponse) ProtoMessage() {} method GetPayload (line 187) | func (m *SimpleResponse) GetPayload() *Payload { method GetUsername (line 194) | func (m *SimpleResponse) GetUsername() string { method GetOauthScope (line 201) | func (m *SimpleResponse) GetOauthScope() string { type StreamingInputCallRequest (line 209) | type StreamingInputCallRequest struct method Reset (line 215) | func (m *StreamingInputCallRequest) Reset() { *m = StreamingIn... method String (line 216) | func (m *StreamingInputCallRequest) String() string { return proto.Com... method ProtoMessage (line 217) | func (*StreamingInputCallRequest) ProtoMessage() {} method GetPayload (line 219) | func (m *StreamingInputCallRequest) GetPayload() *Payload { type StreamingInputCallResponse (line 227) | type StreamingInputCallResponse struct method Reset (line 233) | func (m *StreamingInputCallResponse) Reset() { *m = StreamingI... method String (line 234) | func (m *StreamingInputCallResponse) String() string { return proto.Co... method ProtoMessage (line 235) | func (*StreamingInputCallResponse) ProtoMessage() {} method GetAggregatedPayloadSize (line 237) | func (m *StreamingInputCallResponse) GetAggregatedPayloadSize() int32 { type ResponseParameters (line 245) | type ResponseParameters struct method Reset (line 255) | func (m *ResponseParameters) Reset() { *m = ResponseParameters... method String (line 256) | func (m *ResponseParameters) String() string { return proto.CompactTex... method ProtoMessage (line 257) | func (*ResponseParameters) ProtoMessage() {} method GetSize (line 259) | func (m *ResponseParameters) GetSize() int32 { method GetIntervalUs (line 266) | func (m *ResponseParameters) GetIntervalUs() int32 { type StreamingOutputCallRequest (line 274) | type StreamingOutputCallRequest struct method Reset (line 287) | func (m *StreamingOutputCallRequest) Reset() { *m = StreamingO... method String (line 288) | func (m *StreamingOutputCallRequest) String() string { return proto.Co... method ProtoMessage (line 289) | func (*StreamingOutputCallRequest) ProtoMessage() {} method GetResponseType (line 291) | func (m *StreamingOutputCallRequest) GetResponseType() PayloadType { method GetResponseParameters (line 298) | func (m *StreamingOutputCallRequest) GetResponseParameters() []*Respon... method GetPayload (line 305) | func (m *StreamingOutputCallRequest) GetPayload() *Payload { type StreamingOutputCallResponse (line 313) | type StreamingOutputCallResponse struct method Reset (line 319) | func (m *StreamingOutputCallResponse) Reset() { *m = Streaming... method String (line 320) | func (m *StreamingOutputCallResponse) String() string { return proto.C... method ProtoMessage (line 321) | func (*StreamingOutputCallResponse) ProtoMessage() {} method GetPayload (line 323) | func (m *StreamingOutputCallResponse) GetPayload() *Payload { function init (line 330) | func init() { type TestServiceClient (line 336) | type TestServiceClient interface type testServiceClient (line 359) | type testServiceClient struct method EmptyCall (line 367) | func (c *testServiceClient) EmptyCall(ctx context.Context, in *Empty, ... method UnaryCall (line 376) | func (c *testServiceClient) UnaryCall(ctx context.Context, in *SimpleR... method StreamingOutputCall (line 385) | func (c *testServiceClient) StreamingOutputCall(ctx context.Context, i... method StreamingInputCall (line 417) | func (c *testServiceClient) StreamingInputCall(ctx context.Context, op... method FullDuplexCall (line 451) | func (c *testServiceClient) FullDuplexCall(ctx context.Context, opts .... method HalfDuplexCall (line 482) | func (c *testServiceClient) HalfDuplexCall(ctx context.Context, opts .... function NewTestServiceClient (line 363) | func NewTestServiceClient(cc *grpc.ClientConn) TestServiceClient { type TestService_StreamingOutputCallClient (line 400) | type TestService_StreamingOutputCallClient interface type testServiceStreamingOutputCallClient (line 405) | type testServiceStreamingOutputCallClient struct method Recv (line 409) | func (x *testServiceStreamingOutputCallClient) Recv() (*StreamingOutpu... type TestService_StreamingInputCallClient (line 426) | type TestService_StreamingInputCallClient interface type testServiceStreamingInputCallClient (line 432) | type testServiceStreamingInputCallClient struct method Send (line 436) | func (x *testServiceStreamingInputCallClient) Send(m *StreamingInputCa... method CloseAndRecv (line 440) | func (x *testServiceStreamingInputCallClient) CloseAndRecv() (*Streami... type TestService_FullDuplexCallClient (line 460) | type TestService_FullDuplexCallClient interface type testServiceFullDuplexCallClient (line 466) | type testServiceFullDuplexCallClient struct method Send (line 470) | func (x *testServiceFullDuplexCallClient) Send(m *StreamingOutputCallR... method Recv (line 474) | func (x *testServiceFullDuplexCallClient) Recv() (*StreamingOutputCall... type TestService_HalfDuplexCallClient (line 491) | type TestService_HalfDuplexCallClient interface type testServiceHalfDuplexCallClient (line 497) | type testServiceHalfDuplexCallClient struct method Send (line 501) | func (x *testServiceHalfDuplexCallClient) Send(m *StreamingOutputCallR... method Recv (line 505) | func (x *testServiceHalfDuplexCallClient) Recv() (*StreamingOutputCall... type TestServiceServer (line 515) | type TestServiceServer interface function RegisterTestServiceServer (line 538) | func RegisterTestServiceServer(s *grpc.Server, srv TestServiceServer) { function _TestService_EmptyCall_Handler (line 542) | func _TestService_EmptyCall_Handler(srv interface{}, ctx context.Context... function _TestService_UnaryCall_Handler (line 554) | func _TestService_UnaryCall_Handler(srv interface{}, ctx context.Context... function _TestService_StreamingOutputCall_Handler (line 566) | func _TestService_StreamingOutputCall_Handler(srv interface{}, stream gr... type TestService_StreamingOutputCallServer (line 574) | type TestService_StreamingOutputCallServer interface type testServiceStreamingOutputCallServer (line 579) | type testServiceStreamingOutputCallServer struct method Send (line 583) | func (x *testServiceStreamingOutputCallServer) Send(m *StreamingOutput... function _TestService_StreamingInputCall_Handler (line 587) | func _TestService_StreamingInputCall_Handler(srv interface{}, stream grp... type TestService_StreamingInputCallServer (line 591) | type TestService_StreamingInputCallServer interface type testServiceStreamingInputCallServer (line 597) | type testServiceStreamingInputCallServer struct method SendAndClose (line 601) | func (x *testServiceStreamingInputCallServer) SendAndClose(m *Streamin... method Recv (line 605) | func (x *testServiceStreamingInputCallServer) Recv() (*StreamingInputC... function _TestService_FullDuplexCall_Handler (line 613) | func _TestService_FullDuplexCall_Handler(srv interface{}, stream grpc.Se... type TestService_FullDuplexCallServer (line 617) | type TestService_FullDuplexCallServer interface type testServiceFullDuplexCallServer (line 623) | type testServiceFullDuplexCallServer struct method Send (line 627) | func (x *testServiceFullDuplexCallServer) Send(m *StreamingOutputCallR... method Recv (line 631) | func (x *testServiceFullDuplexCallServer) Recv() (*StreamingOutputCall... function _TestService_HalfDuplexCall_Handler (line 639) | func _TestService_HalfDuplexCall_Handler(srv interface{}, stream grpc.Se... type TestService_HalfDuplexCallServer (line 643) | type TestService_HalfDuplexCallServer interface type testServiceHalfDuplexCallServer (line 649) | type testServiceHalfDuplexCallServer struct method Send (line 653) | func (x *testServiceHalfDuplexCallServer) Send(m *StreamingOutputCallR... method Recv (line 657) | func (x *testServiceHalfDuplexCallServer) Recv() (*StreamingOutputCall... FILE: vendor/google.golang.org/grpc/transport/control.go constant defaultWindowSize (line 45) | defaultWindowSize = 65535 constant initialWindowSize (line 47) | initialWindowSize = defaultWindowSize constant initialConnWindowSize (line 48) | initialConnWindowSize = defaultWindowSize * 16 type windowUpdate (line 54) | type windowUpdate struct method isItem (line 59) | func (windowUpdate) isItem() bool { type settings (line 63) | type settings struct method isItem (line 68) | func (settings) isItem() bool { type resetStream (line 72) | type resetStream struct method isItem (line 77) | func (resetStream) isItem() bool { type flushIO (line 81) | type flushIO struct method isItem (line 84) | func (flushIO) isItem() bool { type ping (line 88) | type ping struct method isItem (line 92) | func (ping) isItem() bool { type quotaPool (line 98) | type quotaPool struct method add (line 113) | func (qb *quotaPool) add(n int) { method cancel (line 128) | func (qb *quotaPool) cancel() { method reset (line 140) | func (qb *quotaPool) reset(v int) { method acquire (line 160) | func (qb *quotaPool) acquire() <-chan int { function newQuotaPool (line 106) | func newQuotaPool(q int) *quotaPool { type inFlow (line 165) | type inFlow struct method onData (line 184) | func (f *inFlow) onData(n uint32) error { method connOnRead (line 203) | func (f *inFlow) connOnRead(n uint32) uint32 { method onRead (line 221) | func (f *inFlow) onRead(n uint32) (swu, cwu uint32) { method restoreConn (line 243) | func (f *inFlow) restoreConn() uint32 { FILE: vendor/google.golang.org/grpc/transport/http2_client.go type http2Client (line 55) | type http2Client struct method newStream (line 193) | func (t *http2Client) newStream(ctx context.Context, callHdr *CallHdr,... method NewStream (line 223) | func (t *http2Client) NewStream(ctx context.Context, callHdr *CallHdr)... method CloseStream (line 330) | func (t *http2Client) CloseStream(s *Stream, err error) { method Close (line 364) | func (t *http2Client) Close() (err error) { method Write (line 395) | func (t *http2Client) Write(s *Stream, data []byte, opts *Options) err... method getStream (line 488) | func (t *http2Client) getStream(f http2.Frame) (*Stream, bool) { method updateWindow (line 504) | func (t *http2Client) updateWindow(s *Stream, n uint32) { method handleData (line 514) | func (t *http2Client) handleData(f *http2.DataFrame) { method handleRSTStream (line 547) | func (t *http2Client) handleRSTStream(f *http2.RSTStreamFrame) { method handleSettings (line 566) | func (t *http2Client) handleSettings(f *http2.SettingsFrame) { method handlePing (line 606) | func (t *http2Client) handlePing(f *http2.PingFrame) { method handleGoAway (line 610) | func (t *http2Client) handleGoAway(f *http2.GoAwayFrame) { method handleWindowUpdate (line 614) | func (t *http2Client) handleWindowUpdate(f *http2.WindowUpdateFrame) { method operateHeaders (line 629) | func (t *http2Client) operateHeaders(hDec *hpackDecoder, s *Stream, fr... method reader (line 680) | func (t *http2Client) reader() { method controller (line 733) | func (t *http2Client) controller() { method Error (line 771) | func (t *http2Client) Error() <-chan struct{} { method notifyError (line 775) | func (t *http2Client) notifyError(err error) { function newHTTP2Client (line 102) | func newHTTP2Client(addr string, opts *ConnectOptions) (_ ClientTranspor... FILE: vendor/google.golang.org/grpc/transport/http2_server.go type http2Server (line 58) | type http2Server struct method operateHeaders (line 140) | func (t *http2Server) operateHeaders(hDec *hpackDecoder, s *Stream, fr... method HandleStreams (line 211) | func (t *http2Server) HandleStreams(handle func(*Stream)) { method getStream (line 292) | func (t *http2Server) getStream(f http2.Frame) (*Stream, bool) { method updateWindow (line 310) | func (t *http2Server) updateWindow(s *Stream, n uint32) { method handleData (line 320) | func (t *http2Server) handleData(f *http2.DataFrame) { method handleRSTStream (line 358) | func (t *http2Server) handleRSTStream(f *http2.RSTStreamFrame) { method handleSettings (line 366) | func (t *http2Server) handleSettings(f *http2.SettingsFrame) { method handlePing (line 384) | func (t *http2Server) handlePing(f *http2.PingFrame) { method handleWindowUpdate (line 388) | func (t *http2Server) handleWindowUpdate(f *http2.WindowUpdateFrame) { method writeHeaders (line 400) | func (t *http2Server) writeHeaders(s *Stream, b *bytes.Buffer, endStre... method WriteHeader (line 433) | func (t *http2Server) WriteHeader(s *Stream, md metadata.MD) error { method WriteStatus (line 461) | func (t *http2Server) WriteStatus(s *Stream, statusCode codes.Code, st... method Write (line 494) | func (t *http2Server) Write(s *Stream, data []byte, opts *Options) err... method controller (line 589) | func (t *http2Server) controller() { method Close (line 630) | func (t *http2Server) Close() (err error) { method closeStream (line 651) | func (t *http2Server) closeStream(s *Stream) { function newHTTP2Server (line 91) | func newHTTP2Server(conn net.Conn, maxStreams uint32) (_ ServerTransport... FILE: vendor/google.golang.org/grpc/transport/http_util.go constant http2MaxFrameLen (line 54) | http2MaxFrameLen = 16384 constant http2InitHeaderTableSize (line 56) | http2InitHeaderTableSize = 4096 constant http2IOBufSize (line 58) | http2IOBufSize = 32 * 1024 type decodeState (line 90) | type decodeState struct type hpackDecoder (line 104) | type hpackDecoder struct method decodeClientHTTP2Headers (line 179) | func (d *hpackDecoder) decodeClientHTTP2Headers(frame headerFrame) (en... method decodeServerHTTP2Headers (line 199) | func (d *hpackDecoder) decodeServerHTTP2Headers(frame headerFrame) (en... type headerFrame (line 111) | type headerFrame interface function isReservedHeader (line 120) | func isReservedHeader(hdr string) bool { function newHPACKDecoder (line 139) | func newHPACKDecoder() *hpackDecoder { type timeoutUnit (line 219) | type timeoutUnit constant hour (line 222) | hour timeoutUnit = 'H' constant minute (line 223) | minute timeoutUnit = 'M' constant second (line 224) | second timeoutUnit = 'S' constant millisecond (line 225) | millisecond timeoutUnit = 'm' constant microsecond (line 226) | microsecond timeoutUnit = 'u' constant nanosecond (line 227) | nanosecond timeoutUnit = 'n' function timeoutUnitToDuration (line 230) | func timeoutUnitToDuration(u timeoutUnit) (d time.Duration, ok bool) { constant maxTimeoutValue (line 249) | maxTimeoutValue int64 = 100000000 - 1 function div (line 253) | func div(d, r time.Duration) int64 { function timeoutEncode (line 261) | func timeoutEncode(t time.Duration) string { function timeoutDecode (line 281) | func timeoutDecode(s string) (time.Duration, error) { type framer (line 298) | type framer struct method adjustNumWriters (line 314) | func (f *framer) adjustNumWriters(i int32) int32 { method writeContinuation (line 321) | func (f *framer) writeContinuation(forceFlush bool, streamID uint32, e... method writeData (line 331) | func (f *framer) writeData(forceFlush bool, streamID uint32, endStream... method writeGoAway (line 341) | func (f *framer) writeGoAway(forceFlush bool, maxStreamID uint32, code... method writeHeaders (line 351) | func (f *framer) writeHeaders(forceFlush bool, p http2.HeadersFramePar... method writePing (line 361) | func (f *framer) writePing(forceFlush, ack bool, data [8]byte) error { method writePriority (line 371) | func (f *framer) writePriority(forceFlush bool, streamID uint32, p htt... method writePushPromise (line 381) | func (f *framer) writePushPromise(forceFlush bool, p http2.PushPromise... method writeRSTStream (line 391) | func (f *framer) writeRSTStream(forceFlush bool, streamID uint32, code... method writeSettings (line 401) | func (f *framer) writeSettings(forceFlush bool, settings ...http2.Sett... method writeSettingsAck (line 411) | func (f *framer) writeSettingsAck(forceFlush bool) error { method writeWindowUpdate (line 421) | func (f *framer) writeWindowUpdate(forceFlush bool, streamID, incr uin... method flushWrite (line 431) | func (f *framer) flushWrite() error { method readFrame (line 435) | func (f *framer) readFrame() (http2.Frame, error) { function newFramer (line 305) | func newFramer(conn net.Conn) *framer { FILE: vendor/google.golang.org/grpc/transport/transport.go type recvMsg (line 57) | type recvMsg struct method isItem (line 65) | func (recvMsg) isItem() bool { type item (line 70) | type item interface type recvBuffer (line 75) | type recvBuffer struct method put (line 88) | func (b *recvBuffer) put(r item) { method load (line 99) | func (b *recvBuffer) load() { method get (line 115) | func (b *recvBuffer) get() <-chan item { function newRecvBuffer (line 81) | func newRecvBuffer() *recvBuffer { type recvBufferReader (line 121) | type recvBufferReader struct method Read (line 131) | func (r *recvBufferReader) Read(p []byte) (n int, err error) { type streamState (line 154) | type streamState constant streamActive (line 157) | streamActive streamState = iota constant streamWriteDone (line 158) | streamWriteDone constant streamReadDone (line 159) | streamReadDone constant streamDone (line 160) | streamDone type Stream (line 164) | type Stream struct method Header (line 212) | func (s *Stream) Header() (metadata.MD, error) { method Trailer (line 224) | func (s *Stream) Trailer() metadata.MD { method ServerTransport (line 232) | func (s *Stream) ServerTransport() ServerTransport { method Context (line 237) | func (s *Stream) Context() context.Context { method Method (line 242) | func (s *Stream) Method() string { method StatusCode (line 247) | func (s *Stream) StatusCode() codes.Code { method StatusDesc (line 252) | func (s *Stream) StatusDesc() string { method SetTrailer (line 262) | func (s *Stream) SetTrailer(md metadata.MD) error { method write (line 272) | func (s *Stream) write(m recvMsg) { method Read (line 280) | func (s *Stream) Read(p []byte) (n int, err error) { type key (line 289) | type key constant streamKey (line 292) | streamKey = key(0) function newContextWithStream (line 296) | func newContextWithStream(ctx context.Context, stream *Stream) context.C... function StreamFromContext (line 301) | func StreamFromContext(ctx context.Context) (s *Stream, ok bool) { type transportState (line 307) | type transportState constant reachable (line 310) | reachable transportState = iota constant unreachable (line 311) | unreachable constant closing (line 312) | closing function NewServerTransport (line 317) | func NewServerTransport(protocol string, conn net.Conn, maxStreams uint3... type ConnectOptions (line 322) | type ConnectOptions struct function NewClientTransport (line 330) | func NewClientTransport(target string, opts *ConnectOptions) (ClientTran... type Options (line 336) | type Options struct type CallHdr (line 345) | type CallHdr struct type ClientTransport (line 352) | type ClientTransport interface type ServerTransport (line 381) | type ServerTransport interface function StreamErrorf (line 397) | func StreamErrorf(c codes.Code, format string, a ...interface{}) StreamE... function ConnectionErrorf (line 405) | func ConnectionErrorf(format string, a ...interface{}) ConnectionError { type ConnectionError (line 413) | type ConnectionError struct method Error (line 417) | func (e ConnectionError) Error() string { type StreamError (line 425) | type StreamError struct method Error (line 430) | func (e StreamError) Error() string { function ContextErr (line 435) | func ContextErr(err error) StreamError { function wait (line 449) | func wait(ctx context.Context, closing <-chan struct{}, proceed <-chan i...