Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 276 for Hoolehan (0.42 sec)

  1. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractConditionBean.java

            private Boolean explain;
    
            private Float minScore;
    
            private String preference;
    
            private String routing;
    
            private String searchType;
    
            private long timeoutInMillis = -1;
    
            private Boolean version;
    
            private Boolean seqNoAndPrimaryTerm = Boolean.TRUE;
    
            private int terminateAfter = 0;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/entity/SearchRenderData.java

        protected String allRecordCountRelation;
    
        protected int allPageCount;
    
        protected boolean existNextPage;
    
        protected boolean existPrevPage;
    
        protected long currentStartRecordNumber;
    
        protected long currentEndRecordNumber;
    
        protected List<String> pageNumberList;
    
        protected boolean partialResults;
    
        protected String searchQuery;
    
        protected long queryTime;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/pager/KeyMatchPager.java

        }
    
        public boolean isExistPrePage() {
            return existPrePage;
        }
    
        public void setExistPrePage(final boolean existPrePage) {
            this.existPrePage = existPrePage;
        }
    
        public boolean isExistNextPage() {
            return existNextPage;
        }
    
        public void setExistNextPage(final boolean existNextPage) {
            this.existNextPage = existNextPage;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/pager/ReqHeaderPager.java

            this.allPageCount = allPageCount;
        }
    
        public boolean isExistPrePage() {
            return existPrePage;
        }
    
        public void setExistPrePage(final boolean existPrePage) {
            this.existPrePage = existPrePage;
        }
    
        public boolean isExistNextPage() {
            return existNextPage;
        }
    
        public void setExistNextPage(final boolean existNextPage) {
            this.existNextPage = existNextPage;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

            }
        }
    
        default boolean getSystemPropertyAsBoolean(final String key, final boolean defaultValue) {
            return Constants.TRUE.equalsIgnoreCase(getSystemProperty(key, defaultValue ? Constants.TRUE : Constants.FALSE));
        }
    
        default void setSystemPropertyAsBoolean(final String key, final boolean value) {
            setSystemProperty(key, value ? Constants.TRUE : Constants.FALSE);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/pager/WebConfigPager.java

        }
    
        public boolean isExistPrePage() {
            return existPrePage;
        }
    
        public void setExistPrePage(final boolean existPrePage) {
            this.existPrePage = existPrePage;
        }
    
        public boolean isExistNextPage() {
            return existNextPage;
        }
    
        public void setExistNextPage(final boolean existNextPage) {
            this.existNextPage = existNextPage;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java

        protected final String allRecordCountRelation;
        protected final long queryTime;
        protected final boolean partialResults;
        protected final FacetResponse facetResponse;
    
        SearchResult(final List<Map<String, Object>> documentList, final long allRecordCount, final String allRecordCountRelation,
                final long queryTime, final boolean partialResults, final FacetResponse facetResponse) {
            this.documentList = documentList;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractEntity.java

        @Override
        public String toStringWithRelation() { // #pending
            return toString();
        }
    
        @Override
        public String buildDisplayString(String name, boolean column, boolean relation) { // #pending
            return toString();
        }
    
        // ===================================================================================
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/ScheduledJobDbm.java

        protected final ColumnInfo _columnAvailable = cci("available", "available", null, null, Boolean.class, "available", null, false, false,
                false, "Boolean", 0, 0, null, null, false, null, null, null, null, null, false);
        protected final ColumnInfo _columnCrawler = cci("crawler", "crawler", null, null, Boolean.class, "crawler", null, false, false, false,
                "Boolean", 0, 0, null, null, false, null, null, null, null, null, false);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

        }
    
        public boolean deleteAllWords() {
            final SuggestDeleteResponse response = suggester.indexer().deleteAll();
            if (response.hasError()) {
                logger.warn("Failed to delete all words.", response.getErrors().get(0));
                return false;
            }
            refresh();
            return true;
        }
    
        public boolean deleteDocumentWords() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18K bytes
    - Viewed (0)
Back to top