- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for num_of_threads (0.06 sec)
-
src/main/java/org/codelibs/fess/Constants.java
/** Indexing target identifier key. */ public static final String INDEXING_TARGET = "indexingTarget"; /** Number of threads configuration key. */ public static final String NUM_OF_THREADS = "numOfThreads"; // ============================================================ // Authentication Type Constants // ============================================================
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 34.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exec/ThumbnailGeneratorTest.java
options.name = "test-name"; options.propertiesPath = "/path/to/props"; options.numOfThreads = 5; String expected = "Options [sessionId=test-session, name=test-name, propertiesPath=/path/to/props, numOfThreads=5]"; assertEquals(expected, options.toString()); } public void test_initializeProbes() { // Test that initializeProbes doesn't throw exception
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/GenerateThumbnailJob.java
} /** * Sets the number of threads to use for thumbnail generation. * * @param numOfThreads the number of threads * @return this job instance for method chaining */ public GenerateThumbnailJob numOfThreads(final int numOfThreads) { this.numOfThreads = numOfThreads; return this; } /** * Enables cleanup operations for this job. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/GenerateThumbnailJobTest.java
} // Test numOfThreads setter public void test_numOfThreads() { assertEquals(1, thumbnailJob.numOfThreads); GenerateThumbnailJob result = thumbnailJob.numOfThreads(4); assertSame(thumbnailJob, result); assertEquals(4, thumbnailJob.numOfThreads); } // Test cleanup setter public void test_cleanup() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/search/SearchApiTests.java
requestBody.put("paths", paths); requestBody.put("excluded_paths", ".*\\.git.*"); requestBody.put("max_access_count", 100); requestBody.put("num_of_thread", 1); requestBody.put("interval_time", 100); requestBody.put("boost", 100); requestBody.put("permissions", "{role}guest"); requestBody.put("available", true);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.9K bytes - Viewed (0)