Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 614 for updates (0.04 sec)

  1. src/test/java/org/codelibs/fess/dict/protwords/ProtwordsItemTest.java

        }
    
        public void test_toLineString() {
            // Test toLineString method with non-updated item
            ProtwordsItem item = new ProtwordsItem(1, "word");
            assertEquals("word", item.toLineString());
    
            // Test with updated item
            item.setNewInput("updatedword");
            assertEquals("updatedword", item.toLineString());
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/api/admin/badword/ApiAdminBadwordAction.java

        }
    
        // PUT /api/admin/user/setting
        /**
         * Updates an existing bad word setting.
         *
         * @param body the request body containing updated bad word information
         * @return JSON response with result status
         */
        @Execute
        public JsonResponse<ApiResult> put$setting(final EditBody body) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb/PreauthIntegrityTest.java

            // Create test data
            byte[] testData = new byte[64];
            for (int i = 0; i < testData.length; i++) {
                testData[i] = (byte) i;
            }
    
            // Run concurrent updates
            for (int i = 0; i < threadCount; i++) {
                executor.submit(() -> {
                    try {
                        startLatch.await();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  4. src/test/java/jcifs/smb1/smb1/Trans2FindNext2Test.java

            }
            assertEquals((byte) 0x00, dst[12 + nameBytes.length], "Filename must be null-terminated");
        }
    
        /**
         * Verifies reset() clears flags2 and updates resumeKey and filename used for parameters.
         */
        @Test
        void testResetUpdatesStateAndParameters() {
            // Given
            Trans2FindNext2 next = new Trans2FindNext2(0x0001, 0x0AAA0BBB, "old");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/smb2/lease/DirectoryLeasingIntegrationTest.java

            assertEquals(DirectoryCacheScope.RECURSIVE_TREE, entry2.getScope());
    
            // Update first directory cache
            List<SmbFile> files1 = Arrays.asList(mockFile1);
            directoryLeaseManager.updateDirectoryCache(dir1, files1);
    
            // Update second directory cache
            List<SmbFile> files2 = Arrays.asList(mockFile2);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 01:47:47 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/api/admin/dict/stemmeroverride/ApiAdminDictStemmeroverrideAction.java

        }
    
        /**
         * Updates an existing stemmer override dictionary item.
         *
         * @param dictId the dictionary ID
         * @param body the request body containing updated stemmer override item information
         * @return JSON response with result status
         */
        // PUT /api/admin/dict/stemmerOverride/setting/{dictId}
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

        }
    
        /**
         * Updates a document asynchronously.
         *
         * @param request the update request
         * @return a future for the update response
         */
        @Override
        public ActionFuture<UpdateResponse> update(final UpdateRequest request) {
            return client.update(request);
        }
    
        /**
         * Updates a document asynchronously with a callback.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java

                return filePathMap.get(value);
            }
            return value;
        }
    
        /**
         * Updates the thumbnail field in the search index.
         * @param thumbnailId The thumbnail ID.
         * @param value The thumbnail value to update.
         */
        protected void updateThumbnailField(final String thumbnailId, final String value) {
            // TODO bulk
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 13.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/JobHelper.java

            /**
             * Called when the timeout expires. Updates the job log if the job is still running.
             */
            @Override
            public void expired() {
                if (jobLog.getEndTime() == null) {
                    jobLog.setLastUpdated(ComponentUtil.getSystemHelper().getCurrentTimeAsLong());
                    if (logger.isDebugEnabled()) {
                        logger.debug("Update {}", jobLog);
                    }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/pathmap/AdminPathmapAction.java

            return redirect(getClass());
        }
    
        /**
         * Updates an existing path mapping with the provided form data.
         *
         * @param form the edit form containing the updated path mapping data
         * @return HTML response redirecting to the path mapping list page
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse update(final EditForm form) {
            verifyCrudMode(form.crudMode, CrudMode.EDIT);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 16K bytes
    - Viewed (0)
Back to top