Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 152 for Updated (0.18 sec)

  1. src/main/java/org/codelibs/fess/app/service/SynonymService.java

                final int pageSize = synonymPager.getPageSize();
                final PagingList<SynonymItem> synonymList = file.selectList((synonymPager.getCurrentPageNumber() - 1) * pageSize, pageSize);
    
                // update pager
                BeanUtil.copyBeanToBean(synonymList, synonymPager, option -> option.include(Constants.PAGER_CONVERSION_RULE));
                synonymList.setPageRangeSize(fessConfig.getPagingPageRangeSizeAsInteger());
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/log/bsbhv/BsFavoriteLogBhv.java

            entity.asDocMeta().indexOption(opLambda);
            doInsert(entity, null);
        }
    
        public void update(FavoriteLog entity) {
            doUpdate(entity, null);
        }
    
        public void update(FavoriteLog entity, RequestOptionCall<IndexRequestBuilder> opLambda) {
            entity.asDocMeta().indexOption(opLambda);
            doUpdate(entity, null);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/bsbhv/BsScheduledJobBhv.java

            entity.asDocMeta().indexOption(opLambda);
            doInsert(entity, null);
        }
    
        public void update(ScheduledJob entity) {
            doUpdate(entity, null);
        }
    
        public void update(ScheduledJob entity, RequestOptionCall<IndexRequestBuilder> opLambda) {
            entity.asDocMeta().indexOption(opLambda);
            doUpdate(entity, null);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/bsbhv/BsThumbnailQueueBhv.java

            entity.asDocMeta().indexOption(opLambda);
            doInsert(entity, null);
        }
    
        public void update(ThumbnailQueue entity) {
            doUpdate(entity, null);
        }
    
        public void update(ThumbnailQueue entity, RequestOptionCall<IndexRequestBuilder> opLambda) {
            entity.asDocMeta().indexOption(opLambda);
            doUpdate(entity, null);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/bsbhv/BsWebAuthenticationBhv.java

            entity.asDocMeta().indexOption(opLambda);
            doInsert(entity, null);
        }
    
        public void update(WebAuthentication entity) {
            doUpdate(entity, null);
        }
    
        public void update(WebAuthentication entity, RequestOptionCall<IndexRequestBuilder> opLambda) {
            entity.asDocMeta().indexOption(opLambda);
            doUpdate(entity, null);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/bsbhv/BsPathMappingBhv.java

            entity.asDocMeta().indexOption(opLambda);
            doInsert(entity, null);
        }
    
        public void update(PathMapping entity) {
            doUpdate(entity, null);
        }
    
        public void update(PathMapping entity, RequestOptionCall<IndexRequestBuilder> opLambda) {
            entity.asDocMeta().indexOption(opLambda);
            doUpdate(entity, null);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/bsbhv/BsAccessTokenBhv.java

            entity.asDocMeta().indexOption(opLambda);
            doInsert(entity, null);
        }
    
        public void update(AccessToken entity) {
            doUpdate(entity, null);
        }
    
        public void update(AccessToken entity, RequestOptionCall<IndexRequestBuilder> opLambda) {
            entity.asDocMeta().indexOption(opLambda);
            doUpdate(entity, null);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/bsbhv/BsWebConfigBhv.java

            entity.asDocMeta().indexOption(opLambda);
            doInsert(entity, null);
        }
    
        public void update(WebConfig entity) {
            doUpdate(entity, null);
        }
    
        public void update(WebConfig entity, RequestOptionCall<IndexRequestBuilder> opLambda) {
            entity.asDocMeta().indexOption(opLambda);
            doUpdate(entity, null);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.8K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/dict/synonym/SynonymFileTest.java

             assertEquals("z2", itemList3.get(6).getInputs()[1]);
             assertEquals("z1", itemList3.get(6).getOutputs()[0]);
             assertEquals("z2", itemList3.get(6).getOutputs()[1]);
         }
    
         public void test_update() {
             final SynonymFile synonymFile = new SynonymFile(file1);
             final PagingList<SynonymItem> itemList1 = synonymFile.selectList(0, 20);
             assertEquals(5, itemList1.size());
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/service/BadWordService.java

                cb.paging(badWordPager.getPageSize(), badWordPager.getCurrentPageNumber());
                setupListCondition(cb, badWordPager);
            });
    
            // update pager
            BeanUtil.copyBeanToBean(badWordList, badWordPager, option -> option.include(Constants.PAGER_CONVERSION_RULE));
            badWordPager.setPageNumberList(
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.3K bytes
    - Viewed (0)
Back to top