Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 350 for Exceptions (0.05 sec)

  1. StorageException.java

    "AS IS" BASIS, L12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, L13: * either express or implied. See the License for the specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.exception; L17: L18:public class StorageException extends FessSystemException { L19: private static final long serialVersionUID = 1L; L20: L21: public StorageException(final String message, final Throwable cause) { L22: super(message, cause);...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      970 bytes
  2. RoleQueryHelperTest.java

    L24:import jakarta.servlet.http.Cookie; L25:import jakarta.servlet.http.HttpServletRequest; L26: L27:public class RoleQueryHelperTest extends UnitFessTestCase { L28: public CachedCipher cipher; L29: L30: @Override L31: public void setUp() throws Exception { L32: super.setUp(); L33: cipher = new CachedCipher(); L34: cipher.setKey("1234567890123456"); L35: } L36: L37: private Set<String> buildByParameter(final RoleQueryHelper roleQueryHelperImpl, final HttpServletRequest request)...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      14.2K bytes
  3. AdminDictMappingAction.java

    org.lastaflute.web.response.HtmlResponse; L44:import org.lastaflute.web.response.render.RenderData; L45:import org.lastaflute.web.ruts.process.ActionRuntime; L46:import org.lastaflute.web.validation.VaErrorHook; L47:import org.lastaflute.web.validation.exception.ValidationErrorException; L48: L49:import jakarta.annotation.Resource; L50: L51:/** L52: * @author nullpos L53: * @author ma2tani L54: */ L55:public class AdminDictMappingAction extends FessAdminAction { L56: L57: public static final String ROLE...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      19.5K bytes
  4. AdminFileauthAction.java

    getFileAuthentication(form).ifPresent(entity -> { L203: try { L204: fileAuthenticationService.store(entity); L205: saveInfo(messages -> messages.addSuccessCrudCreateCrudTable(GLOBAL)); L206: } catch (final Exception e) { L207: logger.warn("Failed to process a request.", e); L208: throwValidationError(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, buildThrowableMessage(e)), L209: this::asEditHtml);...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      15.5K bytes
  5. AdminReqheaderAction.java

    getRequestHeader(form).ifPresent(entity -> { L201: try { L202: requestHeaderService.store(entity); L203: saveInfo(messages -> messages.addSuccessCrudCreateCrudTable(GLOBAL)); L204: } catch (final Exception e) { L205: logger.warn("Failed to process a request.", e); L206: throwValidationError(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, buildThrowableMessage(e)), L207: this::asEditHtml);...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      14.6K bytes
  6. FessPropTest.java

    FullstopCharsAsArray(); L143: assertEquals(2, chars.length); L144: assertEquals(32, chars[0]); L145: assertEquals(12288, chars[1]); L146: } L147: L148: public void test_getCrawlerDocumentHtmlPrunedTagsAsArray() throws Exception { L149: FessProp.propMap.clear(); L150: FessConfig fessConfig = new FessConfig.SimpleImpl() { L151: @Override L152: public String getCrawlerDocumentHtmlPrunedTags() { L153: return "script,div#ma...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      12.7K bytes
  7. DictionaryException.java

    OR CONDITIONS OF ANY KIND, L13: * either express or implied. See the License for the specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.dict; L17: L18:import org.codelibs.fess.exception.FessSystemException; L19: L20:public class DictionaryException extends FessSystemException { L21: L22: private static final long serialVersionUID = 1L; L23: L24: public DictionaryException(final String message, final Throwable cause) { L25:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      1K bytes
  8. DataStoreException.java

    "AS IS" BASIS, L12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, L13: * either express or implied. See the License for the specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.exception; L17: L18:public class DataStoreException extends FessSystemException { L19: private static final long serialVersionUID = 1L; L20: L21: public DataStoreException(final String message, final Throwable cause) { L22: super(message, cause);...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      1K bytes
  9. JobProcessingException.java

    "AS IS" BASIS, L12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, L13: * either express or implied. See the License for the specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.exception; L17: L18:public class JobProcessingException extends FessSystemException { L19: L20: private static final long serialVersionUID = 1L; L21: L22: public JobProcessingException(final Throwable e) { L23: super(e); L24: } L25: L26: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      1K bytes
  10. CrawlingInfoHelperTest.java

    gUtils; L27:import org.codelibs.fess.unit.UnitFessTestCase; L28: L29:public class CrawlingInfoHelperTest extends UnitFessTestCase { L30: private CrawlingInfoHelper crawlingInfoHelper; L31: L32: @Override L33: public void setUp() throws Exception { L34: super.setUp(); L35: crawlingInfoHelper = new CrawlingInfoHelper(); L36: } L37: L38: public void test_generateId() { L39: final Map<String, Object> dataMap = new HashMap<String, Object>(); L40: dataMap.put("url",...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      8.5K bytes
Back to top