Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getStackTraceDepth (0.16 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) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Jul 19 16:02:36 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  2. proguard/base.pro

    -dontnote sun.misc.SharedSecrets
    -keep class sun.misc.SharedSecrets {
      *** getJavaLangAccess(...);
    }
    -dontnote sun.misc.JavaLangAccess
    -keep class sun.misc.JavaLangAccess {
      *** getStackTraceElement(...);
      *** getStackTraceDepth(...);
    }
    
    # FinalizableReferenceQueue calls this reflectively
    # Proguard is intelligent enough to spot the use of reflection onto this, so we
    # only need to keep the names, and allow it to be stripped out if
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue May 09 00:29:01 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top