Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 111 for facet2 (0.04 sec)

  1. src/test/java/org/codelibs/fess/util/FacetResponseTest.java

            String decoded = new String(BaseEncoding.base64().decode(encoded), StandardCharsets.UTF_8);
    
            assertEquals(emptyString, decoded);
        }
    
        public void test_facet_prefix_usage() {
            // Test that facet prefixes can be used correctly
            String fieldName = "category";
            String encodedFieldName = BaseEncoding.base64().encode(fieldName.getBytes(StandardCharsets.UTF_8));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  2. 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)
  3. src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java

                                }
                            }
                        }
                    }
    
                    builder.addDocument(docMap);
                }
    
                // facet
                final Aggregations aggregations = searchResponse.getAggregations();
                if (aggregations != null) {
                    builder.facetResponse(new FacetResponse(aggregations));
                }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  4. 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)
  5. src/main/resources/fess_label_de.properties

    labels.boostExpr=Boost-Ausdruck
    labels.confirmPassword=Bestätigen
    labels.crawler=Crawler
    labels.crudMode=Modus
    labels.errorCountMax=Maximale Fehleranzahl
    labels.errorCountMin=Minimale Fehleranzahl
    labels.facet=Facette
    labels.geo=Geo
    labels.groups=Gruppen
    labels.hash=Hash
    labels.kuromojiFile=Kuromoji-Datei
    labels.maxSize=Maximale Größe
    labels.order=Reihenfolge
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 43.5K bytes
    - Viewed (1)
  6. src/main/resources/fess_indices/fess/gl/stopwords.txt

    dos
    dun
    duns
    dunha
    dunhas
    e
    el
    ela
    elas
    eles
    en
    era
    eran
    esa
    esas
    ese
    eses
    esta
    estar
    estaba
    está
    están
    este
    estes
    estiven
    estou
    eu
    é
    facer
    foi
    foron
    fun
    había
    hai
    iso
    isto
    la
    las
    lle
    lles
    lo
    los
    mais
    me
    meu
    meus
    min
    miña
    miñas
    moi
    na
    nas
    neste
    nin
    no
    non
    nos
    nosa
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 932 bytes
    - Viewed (0)
  7. src/main/resources/fess_label_es.properties

    labels.boostExpr=Expresión de impulso
    labels.confirmPassword=Confirmar
    labels.crawler=Rastreador
    labels.crudMode=Modo
    labels.errorCountMax=Número máximo de errores
    labels.errorCountMin=Número mínimo de errores
    labels.facet=Faceta
    labels.geo=Geo
    labels.groups=Grupos
    labels.hash=Hash
    labels.kuromojiFile=Archivo Kuromoji
    labels.maxSize=Tamaño máximo
    labels.order=Orden
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.4K bytes
    - Viewed (0)
  8. src/main/resources/fess_label_pl.properties

    labels.boostExpr=Wyrażenie wzmocnienia
    labels.confirmPassword=Potwierdź
    labels.crawler=Crawler
    labels.crudMode=Tryb
    labels.errorCountMax=Maksymalna liczba błędów
    labels.errorCountMin=Minimalna liczba błędów
    labels.facet=Faseta
    labels.geo=Geo
    labels.groups=Grupy
    labels.hash=Hash
    labels.kuromojiFile=Plik kuromoji
    labels.maxSize=Maksymalny rozmiar
    labels.order=Kolejność
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 44.6K bytes
    - Viewed (0)
  9. 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)
  10. android/guava/src/com/google/common/collect/SneakyThrows.java

       * rather than just the {@link RuntimeException} or {@link Error} that should be possible. (And in
       * fact the static type of {@link Throwable} is occasionally justified even for a method with no
       * {@code throws} clause: Some such methods can in fact throw a checked exception (e.g., by
       * calling code written in Kotlin).) Typically, we want to let a {@link Throwable} from such a
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Dec 30 18:44:22 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top