Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 209 for slop (0.07 sec)

  1. src/test/java/org/codelibs/fess/query/TermQueryCommandTest.java

                    "aaa");
            assertQueryBuilder(MatchPhraseQueryBuilder.class,
                    "{\"match_phrase\":{\"title\":{\"query\":\"aaa\",\"slop\":0,\"zero_terms_query\":\"NONE\",\"boost\":1.0}}}", //
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 20.4K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/QueryHelperTest.java

    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 52.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/query/PrefixQueryCommand.java

                                .boost(b * boost)
                                .maxExpansions(fessConfig.getQueryPrefixExpansionsAsInteger())
                                .slop(fessConfig.getQueryPrefixSlopAsInteger()));
            }
    
            if (!isSearchField(field)) {
                final String query = prefixQuery.getPrefix().toString();
                final String origQuery = toLowercaseWildcard(query);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  4. src/main/resources/fess_config.properties

    query.dismax.tie_breaker=0.1
    # Minimum should match value for boolean queries.
    query.bool.minimum_should_match=
    
    # Number of expansions for prefix queries.
    query.prefix.expansions=50
    # Slop value for prefix queries.
    query.prefix.slop=0
    # Prefix length for fuzzy queries.
    query.fuzzy.prefix_length=0
    # Number of expansions for fuzzy queries.
    query.fuzzy.expansions=50
    # Whether to allow transpositions in fuzzy 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)
  5. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /**
         * Get the value for the key 'query.prefix.slop'. <br>
         * The value is, e.g. 0 <br>
         * comment: Slop value for prefix queries.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getQueryPrefixSlop();
    
        /**
         * Get the value for the key 'query.prefix.slop' as {@link Integer}. <br>
         * The value is, e.g. 0 <br>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
  6. src/main/resources/fess_message_pl.properties

    errors.failed_to_download_stopwords_file = Nie można pobrać pliku stop-słów.
    errors.failed_to_upload_stopwords_file = Nie można przesłać pliku stop-słów.
    errors.failed_to_download_elevate_file = Nie można pobrać pliku słów podniesionych.
    errors.failed_to_upload_elevate_file = Nie można przesłać pliku słów podniesionych.
    errors.failed_to_download_badword_file = Nie można pobrać pliku słów zakazanych.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  7. src/main/resources/fess_label_pl.properties

    labels.target=Cel
    labels.token=Token
    labels.synonymFile=Plik synonimów
    labels.stopwordsFile=Plik stop-słów
    labels.stemmerOverrideFile=Plik nadpisujący stemmer
    labels.mappingFile=Plik mapowania
    labels.protwordsFile=Plik protwords
    labels.kuromojiFile=Plik kuromoji
    labels.elevateWordFile=Plik słów podniesionych
    labels.badWordFile=Plik słów zakazanych
    labels.urlExpr=Warunek
    labels.boostExpr=Wyrażenie wzmocnienia
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 44.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/cache/Striped64.java

       * the capacity, it is doubled in size unless some other thread
       * holds the lock. If a hashed slot is empty, and lock is
       * available, a new Cell is created. Otherwise, if the slot
       * exists, a CAS is tried.  Retries proceed by "double hashing",
       * using a secondary hash (Marsaglia XorShift) to try to find a
       * free slot.
       *
       * The table size is capped because, when there are more threads
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jan 15 22:17:15 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/AbstractScheduledService.java

     * {@link #runOneIteration} that will be executed periodically as specified by its {@link
     * Scheduler}. When this service is asked to stop via {@link #stopAsync} it will cancel the periodic
     * task (but not interrupt it) and wait for it to stop before running the {@link #shutDown} method.
     *
     * <p>Subclasses are guaranteed that the life cycle methods ({@link #runOneIteration}, {@link
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 27.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/AbstractScheduledService.java

     * {@link #runOneIteration} that will be executed periodically as specified by its {@link
     * Scheduler}. When this service is asked to stop via {@link #stopAsync} it will cancel the periodic
     * task (but not interrupt it) and wait for it to stop before running the {@link #shutDown} method.
     *
     * <p>Subclasses are guaranteed that the life cycle methods ({@link #runOneIteration}, {@link
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 27.8K bytes
    - Viewed (0)
Back to top