Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 118 for Wagner (0.38 sec)

  1. src/main/webapp/WEB-INF/view/admin/dict/kuromoji/admin_dict_kuromoji.jsp

                                                        arg2="${f:h(pager.allRecordCount)}"/>
                                        </div>
                                        <div class="col-sm-10">
                                            <ul class="pagination pagination-sm m-0 float-right">
                                                <c:if test="${pager.existPrePage}">
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Mar 27 06:24:23 GMT 2020
    - 10.1K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/admin/dict/stemmeroverride/admin_dict_stemmeroverride.jsp

                                                        arg2="${f:h(pager.allRecordCount)}"/>
                                        </div>
                                        <div class="col-sm-10">
                                            <ul class="pagination pagination-sm m-0 float-right">
                                                <c:if test="${pager.existPrePage}">
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 10.2K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/admin/dict/stopwords/admin_dict_stopwords.jsp

                                                        arg2="${f:h(pager.allRecordCount)}"/>
                                        </div>
                                        <div class="col-sm-10">
                                            <ul class="pagination pagination-sm m-0 float-right">
                                                <c:if test="${pager.existPrePage}">
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 9.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/user/bsentity/BsUser.java

            this.name = value;
        }
    
        public String getPager() {
            checkSpecifiedProperty("pager");
            return convertEmptyToNull(pager);
        }
    
        public void setPager(String value) {
            registerModifiedProperty("pager");
            this.pager = value;
        }
    
        public String getPassword() {
            checkSpecifiedProperty("password");
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 22.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/api/admin/crawlinginfo/ApiAdminCrawlinginfoAction.java

            validateApi(body, messages -> {});
            final CrawlingInfoPager pager = copyBeanToNewBean(body, CrawlingInfoPager.class);
            final List<CrawlingInfo> list = crawlingInfoService.getCrawlingInfoList(pager);
            return asJson(new ApiResult.ApiLogsResponse<EditBody>().logs(list.stream().map(this::createEditBody).collect(Collectors.toList()))
                    .total(pager.getAllRecordCount()).status(ApiResult.Status.OK).result());
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/api/admin/failureurl/ApiAdminFailureurlAction.java

            validateApi(body, messages -> {});
            final FailureUrlPager pager = copyBeanToNewBean(body, FailureUrlPager.class);
            final List<FailureUrl> list = failureUrlService.getFailureUrlList(pager);
            return asJson(new ApiResult.ApiLogsResponse<EditBody>().logs(list.stream().map(this::createEditBody).collect(Collectors.toList()))
                    .total(pager.getAllRecordCount()).status(ApiResult.Status.OK).result());
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/service/CharMappingService.java

                        file.selectList((charMappingPager.getCurrentPageNumber() - 1) * pageSize, pageSize);
    
                // update pager
                BeanUtil.copyBeanToBean(charMappingList, charMappingPager, option -> option.include(Constants.PAGER_CONVERSION_RULE));
                charMappingList.setPageRangeSize(fessConfig.getPagingPageRangeSizeAsInteger());
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/StemmerOverrideService.java

                        file.selectList((stemmerOvberridePager.getCurrentPageNumber() - 1) * pageSize, pageSize);
    
                // update pager
                BeanUtil.copyBeanToBean(stemmerOvberrideList, stemmerOvberridePager, option -> option.include(Constants.PAGER_CONVERSION_RULE));
                stemmerOvberrideList.setPageRangeSize(fessConfig.getPagingPageRangeSizeAsInteger());
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/service/RelatedContentService.java

                setupListCondition(cb, relatedContentPager);
            });
    
            // update pager
            BeanUtil.copyBeanToBean(relatedContentList, relatedContentPager, option -> option.include(Constants.PAGER_CONVERSION_RULE));
            relatedContentPager.setPageNumberList(
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/fileauth/ApiAdminFileauthAction.java

            final FileAuthPager pager = copyBeanToNewBean(body, FileAuthPager.class);
            final List<FileAuthentication> list = fileAuthService.getFileAuthenticationList(pager);
            return asJson(
                    new ApiResult.ApiConfigsResponse<EditBody>().settings(list.stream().map(this::createEditBody).collect(Collectors.toList()))
                            .total(pager.getAllRecordCount()).status(ApiResult.Status.OK).result());
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.8K bytes
    - Viewed (0)
Back to top