- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 4,612 for storing (0.08 sec)
-
src/main/java/org/codelibs/fess/app/service/FileAuthenticationService.java
import org.dbflute.optional.OptionalEntity; import jakarta.annotation.Resource; /** * Service class for managing file authentication configurations. * This service provides operations for retrieving, storing, and deleting * file authentication settings used by the Fess search engine. */ public class FileAuthenticationService { /** * Default constructor for file authentication service.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/WebConfigService.java
import jakarta.annotation.Resource; /** * Service class for managing web crawling configurations. * Provides CRUD operations for web configuration settings including * listing, retrieving, storing, and deleting web crawling configurations. */ public class WebConfigService extends FessAppService { /** * Default constructor. */ public WebConfigService() { super(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0) -
src/test/java/jcifs/smb1/dcerpc/ndr/NdrShortTest.java
NdrShort ns = new NdrShort(input); // NdrShort masks to 0xFF (8 bits) in its constructor int expected = input & 0xFF; assertEquals(expected, ns.value, "value should be masked to 0xFF before storing"); } /** * Round-trip encode/decode for a selection of representative values. */ @ParameterizedTest @ValueSource(ints = { 0, 42, 255, -1, 128 })
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ds/DataStoreTest.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackTest.java
callback.store(params, numericData); // Test with boolean data Map<String, Object> booleanData = new HashMap<>(); booleanData.put("flag", true); callback.store(params, booleanData); // Test with nested map Map<String, Object> nestedData = new HashMap<>(); Map<String, String> innerMap = new HashMap<>(); innerMap.put("inner", "value");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/Constants.java
/** Request attribute key for storing highlight queries. */ public static final String HIGHLIGHT_QUERIES = "fess.HighlightQueries"; /** Request attribute key for storing field logs. */ public static final String FIELD_LOGS = "fess.FieldLogs"; // ============================================================ // Date/Time Format 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) -
compat/maven-compat/src/main/mdo/profiles.mdo
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jan 22 11:03:29 UTC 2025 - 13.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/DataConfigService.java
} return OptionalEntity.of(list.get(0)); } /** * Stores (inserts or updates) a data configuration. * * <p>This method encrypts sensitive handler parameters before storing * and immediately refreshes the index to ensure the change is visible. * If the configuration already exists (based on ID), it will be updated; * otherwise, a new configuration will be created.</p> *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/protwords/ProtwordsFile.java
private static final String PROTWORDS = "protwords"; List<ProtwordsItem> protwordsItemList; /** * Constructor for ProtwordsFile. * @param id the file identifier * @param path the file path * @param timestamp the file timestamp */ public ProtwordsFile(final String id, final String path, final Date timestamp) { super(id, path, timestamp); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.5K bytes - Viewed (0) -
cmd/bitrot-streaming.go
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Jan 17 19:19:30 UTC 2025 - 6.2K bytes - Viewed (0)