Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 74 for updatedAt (0.04 sec)

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

            assertTrue("Should find test3", foundTest3);
        }
    
        public void test_update_fromInputStream() throws IOException {
            // Create test input stream
            String content = "updated1\n" + "updated2\n";
            InputStream is = new ByteArrayInputStream(content.getBytes(StandardCharsets.UTF_8));
    
            // Update from input stream
            protwordsFile.update(is);
    
            // Verify update
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 20.8K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/dict/stopwords/StopwordsFileTest.java

            StopwordsItem item = stopwordsFile.get(1).get();
            item.setNewInput("updated");
            stopwordsFile.update(item);
    
            // Verify the item was updated
            OptionalEntity<StopwordsItem> result = stopwordsFile.get(1);
            assertTrue(result.isPresent());
            assertEquals("updated", result.get().getInput());
        }
    
        // Test delete method
        public void test_delete() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.6K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/dict/stopwords/StopwordsItemTest.java

            // Test toLineString method
            StopwordsItem item = new StopwordsItem(1, "original");
            assertEquals("original", item.toLineString());
    
            // When updated, should return newInput
            item.setNewInput("updated");
            assertEquals("updated", item.toLineString());
    
            // When marked for deletion
            item.setNewInput("");
            assertEquals("", item.toLineString());
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/job/PurgeDocJobTest.java

        }
    
        public void test_execute_withCustomFieldName() {
            // Configure custom expires field name
            expiresFieldName = "custom_expires_field";
    
            // Re-register FessConfig with updated field name
            fessConfig = new TestFessConfig() {
                @Override
                public String getIndexFieldExpires() {
                    return expiresFieldName;
                }
    
                @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 16.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/opensearch/config/exentity/DuplicateHost.java

            return "DuplicateHost [createdBy=" + createdBy + ", createdTime=" + createdTime + ", duplicateHostName=" + duplicateHostName
                    + ", regularName=" + regularName + ", sortOrder=" + sortOrder + ", updatedBy=" + updatedBy + ", updatedTime=" + updatedTime
                    + ", docMeta=" + docMeta + "]";
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/opensearch/config/exentity/WebAuthentication.java

                    + createdTime + ", hostname=" + hostname + ", parameters=" + parameters + ", port=" + port + ", protocolScheme="
                    + protocolScheme + ", updatedBy=" + updatedBy + ", updatedTime=" + updatedTime + ", username=" + username + ", webConfigId="
                    + webConfigId + ", docMeta=" + docMeta + "]";
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/dict/mapping/CharMappingItemTest.java

            // Initially not updated
            assertFalse(item.isUpdated());
    
            // Set only newInputs - still not updated
            item.setNewInputs(new String[] { "new" });
            assertFalse(item.isUpdated());
    
            // Set both newInputs and newOutput - now updated
            item.setNewOutput("newOutput");
            assertTrue(item.isUpdated());
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.2K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/it/ITBase.java

            given().contentType("application/json")
                    .body("{\"index\":{\"_index\":\"fess_config.access_token\",\"_id\":\"" + DEFAULT_TEST_TOKEN_ID
                            + "\"}}\n{\"updatedTime\":1490250145200,\"updatedBy\":\"admin\",\"createdBy\":\"admin\",\"permissions\":[\"Radmin-api\",\"Rguest\"],\"name\":\"Admin API\",\"createdTime\":1490250145200,\"token\":\""
                            + DEFAULT_TEST_TOKEN + "\"}\n")
                    .when()
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

        /**
         * Represents an API response for an update operation.
         */
        public static class ApiUpdateResponse extends ApiResponse {
            /** The ID of the updated item. */
            protected String id;
            /** Whether the item was created (true) or updated (false). */
            protected boolean created;
    
            /**
             * Default constructor for ApiUpdateResponse.
             */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/accesstoken/ApiAdminAccesstokenAction.java

        }
    
        // PUT /api/admin/accesstoken/setting
        /**
         * Updates an existing access token setting.
         *
         * @param body the edit body containing updated access token data
         * @return JSON response with the updated access token ID
         */
        @Execute
        public JsonResponse<ApiResult> put$setting(final EditBody body) {
            validateApi(body, messages -> {});
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 8.3K bytes
    - Viewed (0)
Back to top