- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 28 for fussions (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/resources/fess_indices/fess/fr/stopwords.txt
serais serait serions seriez seraient étais était étions étiez étaient fus fut fûmes fûtes furent sois soit soyons soyez soient fusse fusses fût fussions fussiez fussent ayant eu eue eues eus ai as avons avez ont aurai auras aura aurons aurez auront aurais aurait aurions auriez
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Nov 27 12:59:36 GMT 2023 - 977 bytes - Click Count (0) -
src/main/java/org/codelibs/fess/chat/ChatSessionManager.java
import jakarta.annotation.PreDestroy; /** * Manager class for chat sessions. * Sessions are stored in memory with automatic expiration. * * <p><b>Note:</b> Sessions are stored in a local in-memory ConcurrentHashMap. * In multi-instance deployments (e.g., behind a load balancer), sessions are * not shared between instances. Use sticky sessions or an external session * store if session affinity across instances is required.</p> *
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 07 13:27:59 GMT 2026 - 13.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/PurgeLogJob.java
final StringBuilder resultBuf = new StringBuilder(); // purge crawling sessions try { crawlingInfoService.deleteBefore(systemHelper.getCurrentTimeAsLong()); } catch (final Exception e) { logger.error("Failed to purge crawling sessions.", e); resultBuf.append(e.getMessage()).append("\n"); } // purge search logs try {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 4.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java
} /** * Loads the available searcher names from system properties. * Parses the "rank.fusion.searchers" system property to determine which searchers * are available for use in rank fusion processing. */ protected void load() { final String value = System.getProperty("rank.fusion.searchers"); if (StringUtil.isBlank(value)) { availableSearcherNameSet = Collections.emptySet();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Dec 25 02:13:14 GMT 2025 - 28K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/rank/fusion/RankFusionSearcher.java
*/ package org.codelibs.fess.rank.fusion; import java.util.Locale; import org.codelibs.core.lang.StringUtil; import org.codelibs.fess.entity.SearchRequestParams; import org.codelibs.fess.mylasta.action.FessUserBean; import org.dbflute.optional.OptionalThing; /** * Abstract base class for rank fusion searchers in the Fess search system. * Rank fusion searchers are responsible for executing search queries and
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java
} /** * Deletes crawling sessions that expired before the specified date. * Excludes the active session and optionally filters by name. * This method performs batch deletion of both parameters and session records. * * @param activeSessionId the session ID to exclude from deletion (can be null) * @param name optional name filter for sessions to delete (can be null or blank)Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 19.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/admin/CrawlerLogTests.java
logger.info("Number of crawling info logs before deletion: {}", sizeBeforeDeletion); // Delete all old crawling sessions deleteMethod("/api/admin/crawlinginfo/all").then().body("response.status", equalTo(0)); refresh(); // Verify all old sessions are deleted (size should be 0 after deletion) final List<Map<String, Object>> logListAfter = readCrawlingInfo(webConfigId);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Mar 30 14:01:34 GMT 2026 - 13.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.rank.fusion; import java.util.HashMap; import java.util.Map; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.codelibs.core.collection.ArrayUtil;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 09:24:04 GMT 2025 - 12.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.rank.fusion; import java.util.ArrayList; import java.util.List; import java.util.Map; import org.apache.lucene.search.TotalHits.Relation; import org.codelibs.fess.util.FacetResponse; /** * Represents the result of a search operation in the rank fusion system. * * This class encapsulates all the information returned from a search query,
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 8.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorConcurrencyTest.java
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.rank.fusion; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Locale; import java.util.Map; import java.util.concurrent.CountDownLatch;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 13.5K bytes - Click Count (0)