Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getCurrentEnvironment (0.18 sec)

  1. android/guava/src/com/google/common/util/concurrent/MoreExecutors.java

          return false;
        }
        try {
          // If the current environment is null, we're not inside AppEngine.
          return Class.forName("com.google.apphosting.api.ApiProxy")
                  .getMethod("getCurrentEnvironment")
                  .invoke(null)
              != null;
        } catch (ClassNotFoundException e) {
          // If ApiProxy doesn't exist, we're not on AppEngine at all.
          return false;
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 17 16:33:44 GMT 2024
    - 41.8K bytes
    - Viewed (0)
Back to top