本站源代码
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

21 líneas
465B

  1. // Copyright 2013 Google Inc. All rights reserved.
  2. // Use of this source code is governed by the Apache 2.0
  3. // license that can be found in the LICENSE file.
  4. package appengine
  5. import "golang.org/x/net/context"
  6. // IsTimeoutError reports whether err is a timeout error.
  7. func IsTimeoutError(err error) bool {
  8. if err == context.DeadlineExceeded {
  9. return true
  10. }
  11. if t, ok := err.(interface {
  12. IsTimeout() bool
  13. }); ok {
  14. return t.IsTimeout()
  15. }
  16. return false
  17. }
上海开阖软件有限公司 沪ICP备12045867号-1