Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getStackTraceDepth (0.21 sec)

  1. guava/src/com/google/common/base/Throwables.java

      @CheckForNull
      private static Method getSizeMethod(Object jla) {
        try {
          Method getStackTraceDepth = getJlaMethod("getStackTraceDepth", Throwable.class);
          if (getStackTraceDepth == null) {
            return null;
          }
          getStackTraceDepth.invoke(jla, new Throwable());
          return getStackTraceDepth;
        } catch (UnsupportedOperationException | IllegalAccessException | InvocationTargetException e) {
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Wed Mar 06 15:38:58 GMT 2024
    - 20.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/Throwables.java

      @CheckForNull
      private static Method getSizeMethod(Object jla) {
        try {
          Method getStackTraceDepth = getJlaMethod("getStackTraceDepth", Throwable.class);
          if (getStackTraceDepth == null) {
            return null;
          }
          getStackTraceDepth.invoke(jla, new Throwable());
          return getStackTraceDepth;
        } catch (UnsupportedOperationException | IllegalAccessException | InvocationTargetException e) {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Mar 06 15:38:58 GMT 2024
    - 20.6K bytes
    - Viewed (0)
Back to top