Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 59 for faceva (0.04 sec)

  1. src/main/config/openapi/openapi-user.yaml

                example: ["timestamp:[now/d-1d TO *]"]
            - name: facet.size
              in: query
              description: Item size in facets returned by facet.field
              required: false
              schema:
                type: integer
                minimum: 0
                exclusiveMinimum: false
                default: 10
                example: 10
            - name: facet.minDocCount
              in: query
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu May 09 06:31:27 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  2. src/main/resources/fess_config.properties

    query.fuzzy.transpositions=true
    
    # facet
    
    # Fields for facet queries.
    query.facet.fields=label
    # Size of facet fields.
    query.facet.fields.size=100
    # Minimum document count for facet fields.
    query.facet.fields.min_doc_count=1
    # Sort order for facet fields.
    query.facet.fields.sort=count.desc
    # Value for missing facet fields.
    query.facet.fields.missing=
    # Facet queries definition.
    query.facet.queries=\
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  3. 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)
  4. src/main/java/org/codelibs/fess/Constants.java

        // ============================================================
        // Facet and Query Constants
        // ============================================================
    
        /** Prefix for facet field identifiers. */
        public static final String FACET_FIELD_PREFIX = "field:";
    
        /** Prefix for facet query identifiers. */
        public static final String FACET_QUERY_PREFIX = "query:";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
  5. 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)
  6. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    1F62C         ; valid                  ;      ; NV8    # 6.1  GRIMACING FACE
    1F62D         ; valid                  ;      ; NV8    # 6.0  LOUDLY CRYING FACE
    1F62E..1F62F  ; valid                  ;      ; NV8    # 6.1  FACE WITH OPEN MOUTH..HUSHED FACE
    1F630..1F633  ; valid                  ;      ; NV8    # 6.0  FACE WITH OPEN MOUTH AND COLD SWEAT..FLUSHED FACE
    1F634         ; valid                  ;      ; NV8    # 6.1  SLEEPING FACE
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. android/guava/src/com/google/common/graph/MapIteratorCache.java

     * this structure is never mutated, it provides a thread-safe view of the backing map.
     *
     * <p>The {@link MapIteratorCache} assumes ownership of the backing map, and cannot guarantee
     * correctness in the face of external mutations to the backing map. As such, it is <b>strongly</b>
     * recommended that the caller does not persist a reference to the backing map (unless the backing
     * map is immutable).
     *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top