Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 129 for parentEl (0.24 sec)

  1. src/test/java/org/codelibs/fess/exception/ResultOffsetExceededExceptionTest.java

            } catch (Exception e) {
                fail("Should have caught ResultOffsetExceededException");
            }
        }
    
        public void test_throwAndCatchAsFessSystemException() {
            // Test catching as parent class FessSystemException
            String expectedMessage = "Caught as FessSystemException";
    
            try {
                throw new ResultOffsetExceededException(expectedMessage);
            } catch (FessSystemException e) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.6K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/base/FinalizableReferenceQueueTest.java

        }
    
        @Override
        protected synchronized Class<?> loadClass(String name, boolean resolve)
            throws ClassNotFoundException {
          // Force Finalizer to load from this class loader, not its parent.
          if (name.equals(Finalizer.class.getName())) {
            Class<?> clazz = findClass(name);
            if (resolve) {
              resolveClass(clazz);
            }
            return clazz;
          }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 8.7K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/base/FinalizableReferenceQueueTest.java

        }
    
        @Override
        protected synchronized Class<?> loadClass(String name, boolean resolve)
            throws ClassNotFoundException {
          // Force Finalizer to load from this class loader, not its parent.
          if (name.equals(Finalizer.class.getName())) {
            Class<?> clazz = findClass(name);
            if (resolve) {
              resolveClass(clazz);
            }
            return clazz;
          }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 8.7K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/exception/FessUserNotFoundExceptionTest.java

            } catch (Exception e) {
                fail("Should have caught FessUserNotFoundException");
            }
        }
    
        public void test_throwAndCatchAsFessSystemException() {
            // Test catching as parent exception type
            String username = "testuser";
    
            try {
                throw new FessUserNotFoundException(username);
            } catch (FessSystemException e) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/query/BoostQueryCommandTest.java

        private BoostQueryCommand boostQueryCommand;
        private QueryProcessor queryProcessor;
    
        @Override
        protected void setUpChild() throws Exception {
            // Get the queryProcessor that was registered in parent class
            queryProcessor = ComponentUtil.getComponent("queryProcessor");
    
            // Register all query commands needed for testing
            new TermQueryCommand().register();
            new MatchAllQueryCommand().register();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/util/QueryResponseListTest.java

            FacetResponse facetResponse = null;
    
            QueryResponseList qrList = new QueryResponseList(documentList, 100L, "gte", 500L, true, facetResponse, 0, 10, 0);
    
            assertEquals(documentList, qrList.parent);
            assertEquals(100L, qrList.getAllRecordCount());
            assertEquals("gte", qrList.getAllRecordCountRelation());
            assertEquals(500L, qrList.getQueryTime());
            assertTrue(qrList.isPartialResults());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 39.7K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/annotation/SecuredTest.java

            assertEquals("ROLE_PARENT", childSecured.value()[0]);
        }
    
        // Test method annotation inheritance
        public void test_methodAnnotationInheritance() throws NoSuchMethodException {
            // Parent method has annotation
            Method parentMethod = ParentClass.class.getMethod("parentMethod");
            Secured parentSecured = parentMethod.getAnnotation(Secured.class);
            assertNotNull(parentSecured);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 15.2K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/helper/CrawlerStatsHelperTest.java

            public void setLastModified(Long lastModified) {
            }
    
            @Override
            public void setDepth(Integer depth) {
            }
    
            @Override
            public void setParentUrl(String parentUrl) {
            }
    
            @Override
            public void setUrl(String url) {
            }
    
            @Override
            public void setEncoding(String encoding) {
            }
    
            @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 15K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/FuturesGetCheckedTest.java

        assertThat(exception.getAntecedent()).isEqualTo(CHECKED_EXCEPTION);
      }
    
      // Class unloading test:
    
      public static final class WillBeUnloadedException extends Exception {}
    
      @AndroidIncompatible // "Parent ClassLoader may not be null"; maybe avoidable if we try?
      public void testGetChecked_classUnloading() throws Exception {
        WeakReference<?> classUsedByGetChecked = doTestClassUnloading();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  10. build.gradle.kts

        apply(plugin = "biz.aQute.bnd.builder")
        if (project.name != "okhttp-testing-support") {
          apply(plugin = "io.github.usefulness.maven-sympathy")
        }
      }
    
      // Skip samples parent
      if (project.buildFile.exists() && project.name != "okhttp") {
        apply(plugin = "com.android.lint")
    
        dependencies {
          "lintChecks"(rootProject.libs.androidx.lint.gradle)
        }
      }
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Aug 01 08:06:31 UTC 2025
    - 11.3K bytes
    - Viewed (0)
Back to top