- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 693 for store1 (0.03 sec)
-
src/main/java/org/codelibs/fess/dict/DictionaryManager.java
} return OptionalEntity.empty(); } /** * Stores or updates a dictionary file in the ConfigSync storage. * This method checks for concurrent modifications by comparing timestamps * and uploads the file content to the ConfigSync API. * * @param dictFile the dictionary file metadata to store * @param file the actual file containing the dictionary content
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/JobLogService.java
return jobLogBhv.selectByPK(id); } /** * Stores a job log entry in the database. * Performs an insert or update operation based on whether the job log already exists. * * @param jobLog the job log to store */ public void store(final JobLog jobLog) { jobLogBhv.insertOrUpdate(jobLog, op -> {
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/dcerpc/msrpc/netdfsTest.java
assertEquals(info3.num_stores, decodedInfo3.num_stores); assertEquals(info3.stores[0].state, decodedInfo3.stores[0].state); assertEquals(info3.stores[0].server_name, decodedInfo3.stores[0].server_name); assertEquals(info3.stores[0].share_name, decodedInfo3.stores[0].share_name); } @Test void testDfsInfo3_EncodeDecode_NullStringsAndEmptyStores() throws NdrException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 30.9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainManager.java
throws ToolchainManagerException; /** * Stores a toolchain in the build context for later retrieval. * * @param session The Maven session context * @param toolchain The toolchain to store * @throws ToolchainManagerException if storing the toolchain fails */
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Tue Feb 11 12:33:57 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/Crawler.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 31K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ObjectCountLinkedHashMap.java
/** * {@code ObjectCountLinkedHashMap} is a subclass of {@code ObjectCountHashMap} with insertion * iteration order, and uses arrays to store key objects and count values. Comparing to using a * traditional {@code LinkedHashMap} implementation which stores keys and count values as map * entries, {@code ObjectCountLinkedHashMap} minimizes object allocation and reduces memory * footprint. */ @GwtCompatible @NullMarked
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 5.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/UserService.java
}); } /** * Stores (inserts or updates) a user in the system. * Handles user authentication setup and database persistence. * If the surname is blank, it will be set to the user's name. * * @param user the user entity to store */ public void store(final User user) { if (StringUtil.isBlank(user.getSurname())) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.7K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/SortedSetMultimap.java
* {@link Multimap} interface. */ @CanIgnoreReturnValue @Override SortedSet<V> removeAll(@Nullable Object key); /** * Stores a collection of values with the same key, replacing any existing values for that key. * * <p>Because a {@code SortedSetMultimap} has unique sorted values for a given key, this method
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 5.2K bytes - Viewed (0) -
src/test/java/jcifs/util/SecureKeyManagerTest.java
String sessionId = "test-session-1"; keyManager.storeSessionKey(sessionId, testKey, "AES"); SecretKey retrieved = keyManager.getSessionKey(sessionId); assertNotNull(retrieved, "Should retrieve stored key"); assertArrayEquals(testKey, retrieved.getEncoded(), "Retrieved key should match"); } @Test public void testGetRawKey() { String sessionId = "test-session-2";
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 14.2K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache/CacheStrategy.kt
if (request.isHttps && cacheResponse.handshake == null) { return CacheStrategy(request, null) } // If this response shouldn't have been stored, it should never be used as a response source. // This check should be redundant as long as the persistence store is well-behaved and the // rules are constant. if (!isCacheable(cacheResponse, request)) { return CacheStrategy(request, null) }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 12K bytes - Viewed (0)