Search Options

Results per page
Sort
Preferred Languages
Advance

Results 511 - 520 of 1,205 for Exceptions (0.1 sec)

  1. AdminElevatewordAction.java

    L42:import org.codelibs.fess.app.service.LabelTypeService; L43:import org.codelibs.fess.app.web.CrudMode; L44:import org.codelibs.fess.app.web.base.FessAdminAction; L45:import org.codelibs.fess.es.config.exentity.ElevateWord; L46:import org.codelibs.fess.exception.FessSystemException; L47:import org.codelibs.fess.helper.PermissionHelper; L48:import org.codelibs.fess.helper.SuggestHelper; L49:import org.codelibs.fess.helper.SystemHelper; L50:import org.codelibs.fess.util.ComponentUtil; L51:import org.codel...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      18.7K bytes
  2. FessFunctions.java

    L85: public Long load(final String key) throws Exception { L86: try { L87: final Path path = Paths.get(LaServletContextUtil.getServletContext().getRealPath(key)); L88: if (Files.isRegularFile(path)) { L89: return Files.getLastModifiedTime(path).toMillis(); L90: } L91: } catch (final Exception e) { L92: logger.debug("Failed to access...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      16.9K bytes
  3. ImplementedInvokerAssistant.java

    javax.sql.DataSource; L19: L20:import org.dbflute.bhv.core.InvokerAssistant; L21:import org.dbflute.bhv.core.context.ResourceParameter; L22:import org.dbflute.bhv.core.supplement.SequenceCacheHandler; L23:import org.dbflute.bhv.exception.BehaviorExceptionThrower; L24:import org.dbflute.bhv.exception.SQLExceptionHandlerFactory; L25:import org.dbflute.cbean.cipher.GearedCipherManager; L26:import org.dbflute.cbean.sqlclause.SqlClauseCreator; L27:import org.dbflute.dbmeta.DBMetaProvider; L28:import org.dbflute.dbway.DBDef;...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      5.2K bytes
  4. CertificatePinning.java

    .certificatePinner( L28: new CertificatePinner.Builder() L29: .add("publicobject.com", "sha256/Vjs8r4z+80wjNcr1YKepWQboSIRi63WsWXhIMN+eWys=") L30: .build()) L31: .build(); L32: L33: public void run() throws Exception { L34: Request request = new Request.Builder() L35: .url("https://publicobject.com/robots.txt") L36: .build(); L37: L38: try (Response response = client.newCall(request).execute()) { L39: if (!response.isSuccessful()) throw...
    github.com/square/okhttp/samples/guide/src/main...
    Sun Dec 08 21:30:01 UTC 2019
      1.7K bytes
  5. AdminBackupAction.java

    java.util.function.Consumer; L44:import java.util.stream.Collectors; L45: L46:import org.apache.commons.text.StringEscapeUtils; L47:import org.apache.logging.log4j.LogManager; L48:import org.apache.logging.log4j.Logger; L49:import org.codelibs.core.exception.IORuntimeException; L50:import org.codelibs.core.io.CopyUtil; L51:import org.codelibs.core.lang.StringUtil; L52:import org.codelibs.core.misc.Pair; L53:import org.codelibs.curl.CurlResponse; L54:import org.codelibs.fess.Constants; L55:import org...
    github.com/codelibs/fess/src/main/java/org/code...
    Sat Oct 12 01:54:46 UTC 2024
      28.5K bytes
  6. CLMessages.properties

    map. L8:ECL0014=argument[{0}] which is null the index of array is negative integer. L9:ECL0015=argument[{0}] which is null the index of array exceed the size of array[{1}]. L10:ECL0016=key[{0}] is not included in this BeanMap : {1}. L11:ECL0017=Exception occurred, because {0} L12:ECL0041={0}''s creation failure, because {1} L13:ECL0040=IOException occurred, because {0} L14:ECL0042=An illegal access was generated by {0}, because {1} L15:ECL0043=The target which {0} invoked is illegal, because {1}...
    github.com/codelibs/corelib/src/main/resources/...
    Thu Mar 07 01:58:02 UTC 2024
      3.1K bytes
  7. CheckHandshake.java

    return chain.proceed(chain.request()); L42: } L43: }; L44: L45: private final OkHttpClient client = new OkHttpClient.Builder() L46: .addNetworkInterceptor(CHECK_HANDSHAKE_INTERCEPTOR) L47: .build(); L48: L49: public void run() throws Exception { L50: Request request = new Request.Builder() L51: .url("https://publicobject.com/helloworld.txt") L52: .build(); L53: L54: try (Response response = client.newCall(request).execute()) { L55: if (!response.isSuccessful())...
    github.com/square/okhttp/samples/guide/src/main...
    Mon Apr 15 14:55:09 UTC 2024
      2.1K bytes
  8. ApiAdminBoostdocAction.java

    L84: body.crudMode = CrudMode.CREATE; L85: final BoostDocumentRule boostDoc = getBoostDocumentRule(body).map(entity -> { L86: try { L87: boostDocumentRuleService.store(entity); L88: } catch (final Exception e) { L89: logger.warn("Failed to process a request.", e); L90: throwValidationErrorApi(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, buildThrowableMessage(e))); L91: } L92: return...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      6.4K bytes
  9. ApiAdminGroupAction.java

    AL); L75: }); L76: return null; L77: }); L78: try { L79: groupService.store(entity); L80: saveInfo(messages -> messages.addSuccessCrudCreateCrudTable(GLOBAL)); L81: } catch (final Exception e) { L82: logger.warn("Failed to process a request.", e); L83: throwValidationErrorApi(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, buildThrowableMessage(e))); L84: } L85: return asJson(new...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      5.8K bytes
  10. FileListIndexUpdateCallbackImpl.java

    ry; L40:import org.codelibs.fess.crawler.entity.RequestData; L41:import org.codelibs.fess.crawler.entity.ResponseData; L42:import org.codelibs.fess.crawler.entity.ResultData; L43:import org.codelibs.fess.crawler.exception.ChildUrlsException; L44:import org.codelibs.fess.crawler.exception.CrawlerSystemException; L45:import org.codelibs.fess.crawler.processor.ResponseProcessor; L46:import org.codelibs.fess.crawler.processor.impl.DefaultResponseProcessor; L47:import org.codelibs.fess.crawler.rule.Rule;...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      16.8K bytes
Back to top