Search Options

Results per page
Sort
Preferred Languages
Advance

Results 801 - 810 of 2,174 for Exception (0.05 sec)

  1. src/test/java/org/codelibs/fess/thumbnail/ThumbnailGeneratorTest.java

    public class ThumbnailGeneratorTest extends UnitFessTestCase {
    
        private ThumbnailGenerator thumbnailGenerator;
        private File tempOutputFile;
        private Path tempDir;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
            tempDir = Files.createTempDirectory("thumbnail-test");
            tempOutputFile = Files.createTempFile(tempDir, "thumbnail", ".png").toFile();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/AbstractCrawlerClient.java

    import org.codelibs.fess.crawler.container.CrawlerContainer;
    import org.codelibs.fess.crawler.entity.RequestData;
    import org.codelibs.fess.crawler.entity.ResponseData;
    import org.codelibs.fess.crawler.exception.CrawlerSystemException;
    import org.codelibs.fess.crawler.exception.MaxLengthExceededException;
    
    import jakarta.annotation.Resource;
    
    /**
     * Abstract base class for CrawlerClient implementations.
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Sep 06 04:15:37 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/crawler/transformer/FessFileTransformerTest.java

    import org.codelibs.fess.crawler.util.FieldConfigs;
    import org.codelibs.fess.exception.FessSystemException;
    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.codelibs.fess.util.ComponentUtil;
    
    public class FessFileTransformerTest extends UnitFessTestCase {
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
            ComponentUtil.register(new DataSerializer(), "dataSerializer");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 11K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/smb1/trans/SmbComTransactionResponseTest.java

                }
                return parametersWireFormatReturn;
            }
    
            @Override
            protected int readDataWireFormat(byte[] buffer, int bufferIndex, int len) throws SMBProtocolDecodingException {
                if (throwExceptionOnReadData) {
                    throw new SMBProtocolDecodingException("Test exception in readDataWireFormat");
                }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.4K bytes
    - Viewed (0)
  5. guava/src/com/google/common/eventbus/SubscriberRegistry.java

          }
          /*
           * If some other exception happened, we just propagate the wrapper
           * UncheckedExecutionException, which has the stack trace from this thread and which has its
           * cause set to the underlying exception (which may be from another thread). If we someday
           * learn that some other exception besides IllegalArgumentException is common, then we could
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java

    import org.codelibs.fess.crawler.entity.RequestData;
    import org.codelibs.fess.crawler.entity.ResponseData;
    import org.codelibs.fess.crawler.entity.ResultData;
    import org.codelibs.fess.crawler.exception.CrawlerSystemException;
    import org.codelibs.fess.crawler.exception.CrawlingAccessException;
    import org.codelibs.fess.crawler.helper.EncodingHelper;
    import org.codelibs.fess.crawler.helper.UrlConvertHelper;
    import org.codelibs.fess.crawler.util.CharUtil;
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 28.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java

    import org.codelibs.core.convert.ShortConversionUtil;
    import org.codelibs.core.exception.BeanFieldSetAccessibleFailureException;
    import org.codelibs.core.exception.ConstructorNotFoundRuntimeException;
    import org.codelibs.core.exception.FieldNotFoundRuntimeException;
    import org.codelibs.core.exception.MethodNotFoundRuntimeException;
    import org.codelibs.core.exception.PropertyNotFoundRuntimeException;
    import org.codelibs.core.lang.ClassUtil;
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 25.8K bytes
    - Viewed (1)
  8. fess-crawler/src/test/java/org/codelibs/fess/crawler/rule/RuleManagerTest.java

            public ResponseProcessor getResponseProcessor() {
                return responseProcessor;
            }
        }
    
        private TestRuleManager ruleManager;
    
        @Override
        protected void setUp() throws Exception {
            super.setUp();
            ruleManager = new TestRuleManager();
        }
    
        /**
         * Test adding a single rule
         */
        public void test_addRule_single() {
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Sep 06 04:15:37 UTC 2025
    - 23.8K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/NotifyResponseTest.java

                // Mock implementation - do nothing
            }
    
            @Override
            public void exception(Exception e) {
                this.exception = e;
            }
    
            @Override
            public Exception getException() {
                return this.exception;
            }
    
            @Override
            public void setExpiration(Long expiration) {
                this.expiration = expiration;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 21.2K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/smb1/net/NetServerEnum2Test.java

                field.setAccessible(true);
                return field.get(obj);
            } catch (Exception e) {
                throw new RuntimeException("Failed to get field value: " + fieldName, e);
            }
        }
    
        private void setFieldValue(Object obj, String fieldName, Object value) throws Exception {
            Field field = getField(obj.getClass(), fieldName);
            field.setAccessible(true);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 19.7K bytes
    - Viewed (0)
Back to top