Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for getClassName (0.24 sec)

  1. maven-compat/src/test/java/org/apache/maven/artifact/testutils/TestFileManager.java

            Runtime.getRuntime().addShutdownHook(cleanupWarning);
        }
    
        private void maybeWarnAboutCleanUp() {
            if (warnAboutCleanup) {
                System.out.println("[WARNING] TestFileManager from: " + callerInfo.getClassName() + " not cleaned up!");
            }
        }
    
        public void markForDeletion(File toDelete) {
            filesToDelete.add(toDelete);
            warnAboutCleanup = true;
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 4.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/exception/ClassNotFoundRuntimeException.java

            super("ECL0044", asArray(cause), cause);
            this.className = className;
        }
    
        /**
         * クラス名を返します。
         *
         * @return クラス名
         */
        public String getClassName() {
            return className;
        }
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  3. build-logic/binary-compatibility/src/test/groovy/gradlebuild/binarycompatibility/PublicAPIRulesTest.groovy

        }
    
        AbstractContextAwareViolationRule withContext(AbstractContextAwareViolationRule rule) {
            rule.context = new ViolationCheckContext() {
    
                @Override
                String getClassName() { TEST_INTERFACE_NAME }
    
                @Override
                Map<String, ?> getUserData() {
                    [
                        currentVersion: '11.38',
    Groovy
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Dec 01 20:12:19 GMT 2023
    - 16K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

            if (WithExplicitOrdering.class.getName().equals(origStackTrace[i].getClassName())) {
              // For pre-populated disallowedPriorLocks edges, omit the stack trace.
              setStackTrace(EMPTY_STACK_TRACE);
              break;
            }
            if (!EXCLUDED_CLASS_NAMES.contains(origStackTrace[i].getClassName())) {
              setStackTrace(Arrays.copyOfRange(origStackTrace, i, n));
              break;
            }
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Dec 15 19:31:54 GMT 2023
    - 35.9K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/reflect/ClassPathTest.java

        assertThat(ClassPath.getClassPathFromManifest(jarFile, manifest))
            .containsExactly(fullpath("base/relative.jar"));
      }
    
      public void testGetClassName() {
        assertEquals("abc.d.Abc", ClassPath.getClassName("abc/d/Abc.class"));
      }
    
      public void testResourceInfo_of() {
        assertEquals(ClassInfo.class, resourceInfo(ClassPathTest.class).getClass());
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Apr 26 14:02:27 GMT 2024
    - 24.9K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

        StackTraceElement[] elements = e.getStackTrace();
        for (int i = 0; i < elements.length; i++) {
          StackTraceElement element = elements[i];
          if (element.getClassName().equals(clazz) && element.getMethodName().equals(method)) {
            return i;
          }
        }
        AssertionFailedError failure =
            new AssertionFailedError(
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Feb 13 14:28:25 GMT 2024
    - 46.8K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

        StackTraceElement[] elements = e.getStackTrace();
        for (int i = 0; i < elements.length; i++) {
          StackTraceElement element = elements[i];
          if (element.getClassName().equals(clazz) && element.getMethodName().equals(method)) {
            return i;
          }
        }
        AssertionFailedError failure =
            new AssertionFailedError(
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Tue Feb 13 14:28:25 GMT 2024
    - 46.8K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    equals(Object); public String toString(); public boolean isEmpty(); public Description childlessCopy(); public annotation.Annotation getAnnotation(Class); public java.util.Collection getAnnotations(); public Class getTestClass(); public String getClassName(); public String getMethodName(); private String methodAndClassNamePa(int, String); static void <clinit>(); } org/junit/runner/Describable.class package org.junit.runner; public abstract interface Describable { public abstract Description getDescription();...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 373.7K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        return new Predicate<StackTraceElement>() {
          @Override
          public boolean apply(StackTraceElement element) {
            return element.getClassName().equals(clazz.getName());
          }
        };
      }
    
      private static final class CallerClass1 {
        static ListenableFuture<String> makeImmediateCancelledFuture() {
          return immediateCancelledFuture();
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        return new Predicate<StackTraceElement>() {
          @Override
          public boolean apply(StackTraceElement element) {
            return element.getClassName().equals(clazz.getName());
          }
        };
      }
    
      private static final class CallerClass1 {
        static ListenableFuture<String> makeImmediateCancelledFuture() {
          return immediateCancelledFuture();
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
Back to top