Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 110 for facet (0.09 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. label */
        String QUERY_FACET_FIELDS = "query.facet.fields";
    
        /** The key of the configuration. e.g. 100 */
        String QUERY_FACET_FIELDS_SIZE = "query.facet.fields.size";
    
        /** The key of the configuration. e.g. 1 */
        String QUERY_FACET_FIELDS_min_doc_count = "query.facet.fields.min_doc_count";
    
        /** The key of the configuration. e.g. count.desc */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
  2. src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java

         */
        public CrawlingInfoHelper() {
            // Default constructor
        }
    
        private static final Logger logger = LogManager.getLogger(CrawlingInfoHelper.class);
    
        /**
         * Key used for facet count aggregations.
         */
        public static final String FACET_COUNT_KEY = "count";
    
        /**
         * Map containing crawling information parameters.
         */
        protected Map<String, String> infoMap;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 15.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                        }
                        buf.append('}');
                    }
                }
                buf.append(']');
                if (facetResponse != null && facetResponse.hasFacetResponse()) {
                    // facet field
                    buf.append(',');
                    buf.append("\"facet_field\":[");
                    if (facetResponse.getFieldList() != null) {
                        boolean first1 = true;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.6K bytes
    - Viewed (0)
  4. src/main/resources/fess_label_en.properties

    labels.urlExpr=Condition
    labels.boostExpr=Boost Expression
    labels.confirmPassword=Confirm
    labels.crawler=Crawler
    labels.crudMode=Mode
    labels.errorCountMax=Max Error Count
    labels.errorCountMin=Min Error Count
    labels.facet=Facet
    labels.geo=Geo
    labels.groups=Groups
    labels.hash=Hash
    labels.kuromojiFile=Kuromoji File
    labels.maxSize=Max Size
    labels.order=Order
    labels.purgeSuggestSearchLogDay=Delete old suggest info
    labels.q=Query
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

                    this.similarDocHash = similarDocHash;
                }
                return this;
            }
    
            /**
             * Sets the facet information for aggregations.
             *
             * @param facetInfo the facet configuration
             * @return this builder for method chaining
             */
            public SearchConditionBuilder facetInfo(final FacetInfo facetInfo) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/rank/fusion/SearchResultTest.java

            assertEquals(2L, result.getAllRecordCount());
            assertEquals(25L, result.getQueryTime());
        }
    
        public void test_builder_withFacetResponse() {
            // Test builder with facet response
            Aggregations aggregations = InternalAggregations.EMPTY;
            FacetResponse facetResponse = new FacetResponse(aggregations);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java

                            }
                        }
                    }
                    form.sort = sortValueSb.toString();
                }
            }
        }
    
        /**
         * Builds initial parameters for facet and geo search functionality
         * by calling buildInitParamMap for both parameter types.
         */
        protected void buildInitParams() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  8. src/main/resources/fess_label_nl.properties

    labels.boostExpr=Boost-expressie
    labels.confirmPassword=Bevestigen
    labels.crawler=Crawler
    labels.crudMode=Modus
    labels.errorCountMax=Maximaal aantal fouten
    labels.errorCountMin=Minimaal aantal fouten
    labels.facet=Facet
    labels.geo=Geo
    labels.groups=Groepen
    labels.hash=Hash
    labels.kuromojiFile=Kuromoji-bestand
    labels.maxSize=Maximale grootte
    labels.order=Volgorde
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 42.8K bytes
    - Viewed (1)
  9. src/main/resources/fess_label.properties

    labels.urlExpr=Condition
    labels.boostExpr=Boost Expression
    labels.confirmPassword=Confirm
    labels.crawler=Crawler
    labels.crudMode=Mode
    labels.errorCountMax=Max Error Count
    labels.errorCountMin=Min Error Count
    labels.facet=Facet
    labels.geo=Geo
    labels.groups=Groups
    labels.hash=Hash
    labels.kuromojiFile=Kuromoji File
    labels.maxSize=Max Size
    labels.order=Order
    labels.purgeSuggestSearchLogDay=Delete old suggest info
    labels.q=Query
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 28 08:40:50 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

         * @param queryTime the time taken to execute the search query
         * @param partialResults whether the results are partial due to timeout or other constraints
         * @param facetResponse the facet information for the search results
         * @param start the starting position for pagination
         * @param pageSize the size of the current page
         * @param offset the offset applied to the results
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.8K bytes
    - Viewed (0)
Back to top