Search Options

Results per page
Sort
Preferred Languages
Advance

Results 511 - 520 of 1,205 for Exceptions (0.05 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. 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
  3. 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
  4. 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
  5. 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
  6. 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
  7. 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
  8. 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
  9. AccessHeaders.java

    java.io.IOException; L19:import okhttp3.OkHttpClient; L20:import okhttp3.Request; L21:import okhttp3.Response; L22: L23:public final class AccessHeaders { L24: private final OkHttpClient client = new OkHttpClient(); L25: L26: public void run() throws Exception { L27: Request request = new Request.Builder() L28: .url("https://api.github.com/repos/square/okhttp/issues") L29: .header("User-Agent", "OkHttp Headers.java") L30: .addHeader("Accept", "application/json; q=0.5") L31: ...
    github.com/square/okhttp/samples/guide/src/main...
    Sun May 22 01:29:42 UTC 2016
      1.6K bytes
  10. SearchEngineClient.java

    L61:import org.codelibs.fess.entity.QueryContext; L62:import org.codelibs.fess.entity.SearchRequestParams.SearchRequestType; L63:import org.codelibs.fess.exception.FessSystemException; L64:import org.codelibs.fess.exception.InvalidQueryException; L65:import org.codelibs.fess.exception.ResultOffsetExceededException; L66:import org.codelibs.fess.exception.SearchQueryException; L67:import org.codelibs.fess.helper.DocumentHelper; L68:import org.codelibs.fess.helper.QueryHelper; L69:import org.codelibs.fe...
    github.com/codelibs/fess/src/main/java/org/code...
    Sun Oct 20 02:08:03 UTC 2024
      86.1K bytes
Back to top