Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for propagated (0.5 sec)

  1. src/main/java/org/codelibs/fess/script/groovy/GroovyEngine.java

         * @throws JobProcessingException if the script explicitly throws this exception
         *         (allows scripts to signal job-specific errors that should propagate)
         */
        @Override
        public Object evaluate(final String template, final Map<String, Object> paramMap) {
            // Null-safety: return null for blank templates
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/pool/CrawlerPooledObjectFactoryTest.java

            try {
                failingFactory.destroyObject(pooledObject);
                fail("Should throw exception from close()");
            } catch (Exception e) {
                // Expected - exception should propagate from close()
                assertTrue(e.getMessage().contains("Intentional close failure"));
            }
    
            // Verify close was attempted
            assertTrue(component.isCloseCalled());
        }
    
        /**
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 20 13:07:01 UTC 2025
    - 36.7K bytes
    - Viewed (0)
Back to top