Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 218 for requests (0.41 sec)

  1. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                if (logger.isDebugEnabled()) {
                    final List<DocWriteRequest<?>> requests = bulkRequestBuilder.request().requests();
                    final BulkItemResponse[] items = response.getItems();
                    if (requests.size() == items.length) {
                        for (int i = 0; i < requests.size(); i++) {
                            final BulkItemResponse resp = items[i];
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 84.1K bytes
    - Viewed (0)
  2. README.md

    We welcome pull requests for your language.
    
    ## Powered By
    
    * [Lasta Di](https://github.com/lastaflute/lasta-di "Lasta Di"): DI Container
    * [LastaFlute](https://github.com/lastaflute/lastaflute "LastaFlute"): Web Framework
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sun Feb 25 00:40:07 GMT 2024
    - 7.6K bytes
    - Viewed (0)
  3. src/main/webapp/js/admin/plugins/form-validator/security.js

    =d.strong),e.css(g).text(h)})}});var f=function(b,c,d,e,f){var g=c.valAttr("req-params")||c.data("validation-req-params")||{},h=c.valAttr("param-name")||c.attr("name"),i=function(a,b){b(a)};if(!h)throw new Error("Missing input name used for http requests made by server validator");g||(g={}),"string"==typeof g&&(g=a.parseJSON(g)),g[h]=d,a.ajax({url:b,type:"POST",cache:!1,data:g,dataType:"json",error:function(a){return i({valid:!1,message:"Connection failed with status: "+a.statusText},f),!1},succ...
    JavaScript
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Mon Jan 01 05:12:47 GMT 2018
    - 10.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        String INDEXER_WEBFS_MAX_DOCUMENT_REQUEST_SIZE = "indexer.webfs.max.document.request.size";
    
        /** The key of the configuration. e.g. 10000 */
        String INDEXER_DATA_MAX_DOCUMENT_CACHE_SIZE = "indexer.data.max.document.cache.size";
    
        /** The key of the configuration. e.g. 1048576 */
        String INDEXER_DATA_MAX_DOCUMENT_REQUEST_SIZE = "indexer.data.max.document.request.size";
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (4)
  5. src/main/resources/fess_indices/fess_config.request_header/request_header.json

    Shinsuke Sugaya <******@****.***> 1638450896 +0900
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 412 bytes
    - Viewed (0)
  6. src/main/resources/fess_indices/fess_config.request_header.json

    Shinsuke Sugaya <******@****.***> 1638450896 +0900
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 173 bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/helper/UserInfoHelperTest.java

            buf.append("12345ABCDE");
            request.setParameter("userCode", buf.toString());
            assertEquals("12345abcde12345ABCDE", userInfoHelper.getUserCodeFromRequest(request));
            request.setParameter("userCode", buf.toString() + "_");
            assertEquals("12345abcde12345ABCDE_", userInfoHelper.getUserCodeFromRequest(request));
            request.setParameter("userCode", buf.toString() + " ");
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/RoleQueryHelper.java

                if (list != null) {
                    return list;
                }
    
                // request parameter
                if (StringUtil.isNotBlank(parameterKey)) {
                    processParameter(request, roleSet);
                }
    
                // request header
                if (StringUtil.isNotBlank(headerKey)) {
                    processHeader(request, roleSet);
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 11.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java

                if (logger.isDebugEnabled()) {
                    logger.debug("Logging in with Azure AD Authenticator");
                }
                final HttpSession session = request.getSession(false);
                if (session != null && containsAuthenticationData(request)) {
                    try {
                        return processAuthenticationData(request);
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 28.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessApiFailureHook.java

            return asJson(createFailureBean(Status.BAD_REQUEST, createMessage(resource, null))).httpStatus(HTTP_BAD_REQUEST);
        }
    
        @Override
        public ApiResponse handleApplicationException(final ApiFailureResource resource, final RuntimeException cause) {
            if (cause instanceof LoginUnauthorizedException) {
                return asJson(createFailureBean(Status.UNAUTHORIZED, "Unauthorized request.")).httpStatus(HTTP_UNAUTHORIZED);
            }
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.8K bytes
    - Viewed (0)
Back to top