- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 13 for 005 (0.01 sec)
-
src/test/java/org/codelibs/fess/query/QueryTestBase.java
} @Override public String getQueryBoostContent() { return "0.05"; } @Override public BigDecimal getQueryBoostContentAsDecimal() { return new BigDecimal("0.05"); } @Override public String getQueryBoostFuzzyTitle() { return "0.01";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 14.6K bytes - Viewed (0) -
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) -
src/test/java/org/codelibs/fess/query/TermQueryCommandTest.java
"{\"bool\":{\"should\":[{\"match_phrase\":{\"title\":{\"query\":\"aaa\",\"slop\":0,\"zero_terms_query\":\"NONE\",\"boost\":0.5}}},{\"match_phrase\":{\"content\":{\"query\":\"aaa\",\"slop\":0,\"zero_terms_query\":\"NONE\",\"boost\":0.05}}}],\"adjust_pure_negative\":true,\"boost\":1.0}}", "aaa"); assertQueryBuilder(MatchPhraseQueryBuilder.class,
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 20.4K bytes - Viewed (0) -
docs/features/caching.md
server behaviour when ambiguous. # Basic Usage ```kotlin private val client: OkHttpClient = OkHttpClient.Builder() .cache(Cache( directory = File(application.cacheDir, "http_cache"), // $0.05 worth of phone storage in 2020 maxSize = 50L * 1024L * 1024L // 50 MiB )) .build() ``` ## EventListener events
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 3.1K bytes - Viewed (1) -
src/test/java/org/codelibs/fess/query/PrefixQueryCommandTest.java
return new BigDecimal("0.5"); } @Override public BigDecimal getQueryBoostContentAsDecimal() { return new BigDecimal("0.05"); } @Override public BigDecimal getQueryBoostImportantContentAsDecimal() { return new BigDecimal("-1.0"); // Negative boost }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13.1K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/filter/UrlFilterTest.java
} /** * Test adding a single exclude pattern */ public void test_addExclude_singlePattern() { String sessionId = "test-session-005"; urlFilter.init(sessionId); urlFilter.addExclude(".*\\.(jpg|png|gif)$"); assertTrue(urlFilter.match("https://example.com/page.html"));
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Wed Sep 03 14:42:53 UTC 2025 - 19K bytes - Viewed (0) -
cmd/erasure-server-pool-rebalance.go
} pfi := float64(poolStats.InitFreeSpace+poolStats.Bytes) / float64(poolStats.InitCapacity) // Mark pool rebalance as done if within 5% from PercentFreeGoal. if diff := math.Abs(pfi - r.PercentFreeGoal); diff <= 0.05 { r.PoolStats[poolIdx].Info.Status = rebalCompleted r.PoolStats[poolIdx].Info.EndTime = time.Now() return true } return false }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Sep 04 20:47:24 UTC 2025 - 28.9K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.2.md
* Bootstrap reworked to be more similar to GCE; better supports reboots/restarts * Use an elastic IP for the master by default * Experimental support for node spot instances (set NODE\_SPOT\_PRICE=0.05) #### GCE * Ubuntu Trusty support added
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Fri Dec 04 06:36:19 UTC 2020 - 41.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
* The value is, e.g. 0.05 <br> * comment: Boost value for content field in queries. * @return The value of found property. (NotNull: if not found, exception but basically no way) */ String getQueryBoostContent(); /** * Get the value for the key 'query.boost.content' as {@link java.math.BigDecimal}. <br> * The value is, e.g. 0.05 <br>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 525.6K bytes - Viewed (2) -
src/main/resources/fess_config.properties
# Boost value for title field in queries. query.boost.title=0.5 # Boost value for title field with language in queries. query.boost.title.lang=1.0 # Boost value for content field in queries. query.boost.content=0.05 # Boost value for content field with language in queries. query.boost.content.lang=0.1 # Boost value for important content field in queries. query.boost.important_content=-1.0
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 14:45:37 UTC 2025 - 54.7K bytes - Viewed (0)