- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 190 for Relation (0.05 sec)
-
src/test/java/jcifs/smb/SmbFileIntegrationTest.java
throw e; } } } // Verify deletion with fresh reference CIFSContext checkContext = createFreshContext(); SmbFile checkFile = new SmbFile(baseUrl + "shared/" + filename, checkContext); assertFalse(checkFile.exists(), "File should not exist after deletion"); } @Test void testFileRename() throws Exception {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 56K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/PurgeLogJobTest.java
CrawlingInfoService crawlingInfoService = new CrawlingInfoService() { @Override public void deleteBefore(long time) { throw new RuntimeException("Crawling info deletion failed"); } }; SearchLogService searchLogService = new SearchLogService() { @Override public void deleteBefore(int days) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 32.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/synonym/SynonymItem.java
*/ public boolean isUpdated() { return newInputs != null && newOutputs != null; } /** * Checks if the item has been marked for deletion. * * @return true if the item is marked for deletion, false otherwise. */ public boolean isDeleted() { return isUpdated() && newInputs.length == 0; } @Override public int hashCode() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/plugin/DeleteBody.java
/** * Request body class for plugin deletion API endpoint. * Extends the standard plugin DeleteForm to provide JSON request body functionality * for REST API operations. */ public class DeleteBody extends DeleteForm { /** * Creates a new instance of DeleteBody. * This constructor initializes the request body for plugin deletion API operations,
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java
* For recursive operations, performs immediate deletion. For single documents, * adds to the delete cache for batch processing. * * @param paramMap the data store parameters * @param dataMap the data map containing the URL to delete * @return true if the deletion was processed successfully, false otherwise */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 28.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingItem.java
return newInputs != null && newOutput != null; } /** * Checks whether this mapping item is marked for deletion. * An item is considered deleted if it has updates pending and the new inputs array is empty. * * @return true if the item is marked for deletion */ public boolean isDeleted() { return isUpdated() && newInputs.length == 0; } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/stopwords/StopwordsItemTest.java
StopwordsItem item = new StopwordsItem(1, "word"); assertFalse(item.isDeleted()); item.setNewInput("new"); assertFalse(item.isDeleted()); // Mark for deletion with empty string item.setNewInput(""); assertTrue(item.isDeleted()); item.setNewInput(null); assertFalse(item.isDeleted()); } public void test_hashCode() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.9K bytes - Viewed (0) -
errors.go
// ErrMissingWhereClause missing where clause ErrMissingWhereClause = errors.New("WHERE conditions required") // ErrUnsupportedRelation unsupported relations ErrUnsupportedRelation = errors.New("unsupported relations") // ErrPrimaryKeyRequired primary keys required ErrPrimaryKeyRequired = errors.New("primary key required") // ErrModelValueRequired model value required
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Fri Apr 26 02:53:17 UTC 2024 - 2.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/NotifyResponse.java
/** * Interface for SMB change notification response messages. * Handles responses from directory change notification requests, providing information * about file system changes such as file creation, deletion, or modification events. * * @author mbechler */ public interface NotifyResponse extends CommonServerMessageBlockResponse { /** * Gets the file notification information from the response.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/crawlinginfo/ApiAdminCrawlinginfoAction.java
} /** * Deletes a specific crawling info log by ID. * * @param id the ID of the crawling info log to delete * @return JSON response indicating the deletion status */ // DELETE /api/admin/crawlinginfo/log/{id} @Execute public JsonResponse<ApiResult> delete$log(final String id) { crawlingInfoService.getCrawlingInfo(id).ifPresent(entity -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 6.1K bytes - Viewed (0)