• Home
  • Raw
  • Download

Lines Matching refs:appengine

3 [![Build Status](https://travis-ci.org/golang/appengine.svg)](https://travis-ci.org/golang/appengin…
7 Its canonical import path is `google.golang.org/appengine`.
9 See https://cloud.google.com/appengine/docs/go/
13 tracker](https://github.com/golang/appengine/issues).
22 See the [documentation on upgrading to the flexible environment](https://cloud.google.com/appengine
26 The top level directory of this repository is the `appengine` package. It
28 basic APIs (e.g. `appengine.NewContext`) that apply across APIs. Specific API
35 ## Updating from legacy (`import "appengine"`) packages
37 If you're currently using the bare `appengine` packages
38 (that is, not these ones, imported via `google.golang.org/appengine`),
41 Run `go get google.golang.org/appengine/cmd/aefix` to install it.
45 …port paths for App Engine packages are now fully qualified, based at `google.golang.org/appengine`.
47 code importing `appengine/datastore` will now need to import `google.golang.org/appengine/datastore…
54 * `appengine.Context` has been replaced with the `Context` type from `golang.org/x/net/context`.
55 * Logging methods that were on `appengine.Context` are now functions in `google.golang.org/appengin…
56 * `appengine.Timeout` has been removed. Use `context.WithTimeout` instead.
57 * `appengine.Datacenter` now takes a `context.Context` argument.
66 * `appengine.BackendHostname` and `appengine.BackendInstance` were for the deprecated backends feat…
67 Use `appengine.ModuleHostname`and `appengine.ModuleName` instead.
68 * Most of `appengine/file` and parts of `appengine/blobstore` are deprecated.
71 [blobstore package](https://google.golang.org/appengine/blobstore).
72 * `appengine/socket` is not required on App Engine flexible environment / Managed VMs.