- Sort Score
- Num 10 results
- Language All
Results 211 - 220 of 667 for value_a (0.06 seconds)
-
src/main/java/org/codelibs/fess/app/web/admin/joblog/EditForm.java
* The timestamp when the job completed execution. * This field indicates when the job finished, if it has completed. */ public String endTime; /** * Initializes the form with default null values. * This method resets all fields to their default state for creating a new entry. */ public void initialize() { id = null; jobName = null; jobStatus = null;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 3.3K bytes - Click Count (0) -
.teamcity/src/main/kotlin/util/RerunFlakyTest.kt
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Feb 19 08:02:04 GMT 2025 - 5.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/LabelTypeHelper.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 14.8K bytes - Click Count (0) -
src/packaging/rpm/init.d/fess
if [ -f /etc/rc.status ]; then . /etc/rc.status rc_reset fi # # Source function library. # if [ -f /etc/rc.d/init.d/functions ]; then . /etc/rc.d/init.d/functions fi # Sets the default values for fess variables used in this script PROC_NAME=org.codelibs.fess.FessBoot FESS_USER="${packaging.fess.user}" FESS_GROUP="${packaging.fess.group}" FESS_HOME="${packaging.fess.home.dir}" PID_DIR="${packaging.fess.pid.dir}"Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 15 06:32:15 GMT 2023 - 3.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/DictionaryItemTest.java
public void test_getId_minValue() { // Test with minimum Long value dictionaryItem.id = Long.MIN_VALUE; assertEquals(Long.MIN_VALUE, dictionaryItem.getId()); } @Test public void test_multipleInstances() { // Test that different instances have independent ID values TestDictionaryItem item1 = new TestDictionaryItem(); TestDictionaryItem item2 = new TestDictionaryItem();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 4.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/llm/RelevanceEvaluationResultTest.java
assertEquals(1, result.getRelevantDocIds().size()); assertEquals("doc1", result.getRelevantDocIds().get(0)); assertEquals(1, result.getRelevantIndexes().size()); assertEquals(Integer.valueOf(1), result.getRelevantIndexes().get(0)); } @Test public void test_withRelevantDocs_emptyLists() { List<String> docIds = Collections.emptyList();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 01 08:11:18 GMT 2026 - 7.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/kuromoji/ApiAdminDictKuromojiAction.java
throwValidationErrorApi(messages -> messages.addErrorsCrudFailedToUpdateCrudTable(GLOBAL, String.valueOf(body.id))); return null; }).orElseGet(() -> { throwValidationErrorApi(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, String.valueOf(body.id))); return null; }); kuromojiService.store(body.dictId, entity); return asJson(
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 9.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/ApiAdminDictProtwordsAction.java
throwValidationErrorApi(messages -> messages.addErrorsCrudFailedToUpdateCrudTable(GLOBAL, String.valueOf(body.id))); return null; }).orElseGet(() -> { throwValidationErrorApi(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, String.valueOf(body.id))); return null; }); protwordsService.store(body.dictId, entity); return asJson(
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 9.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackTest.java
Map<String, String> innerMap = new HashMap<>(); innerMap.put("inner", "value"); nestedData.put("nested", innerMap); callback.store(params, nestedData); assertEquals(4L, callback.getDocumentSize()); } // Helper method to create mock callbacks with preset values private IndexUpdateCallback createMockCallback(final long docSize, final long execTime) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 12.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
/** * Get the value for the key 'app.cipher.algorithm'. <br> * The value is, e.g. aes <br> * comment: Cipher algorithm used for encryption. * @return The value of found property. (NotNull: if not found, exception but basically no way) */ String getAppCipherAlgorithm(); /** * Get the value for the key 'app.cipher.key'. <br> * The value is, e.g. ___change__me___ <br>Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 576.9K bytes - Click Count (2)