Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 398 for gelede (0.08 sec)

  1. src/main/resources/fess_message.properties

    errors.blank_password = Password is required.
    errors.invalid_confirm_password = Does not match a confirmation password.
    errors.cannot_delete_doc_because_of_running = A crawler is running. You cannot delete documents.
    errors.failed_to_delete_doc_in_admin = Failed to delete a document.
    errors.failed_to_send_testmail=Failed to send a test mail.
    errors.invalid_query_unknown = The specified query has an unknown condition.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  2. src/main/resources/fess_message_en.properties

    errors.blank_password = Password is required.
    errors.invalid_confirm_password = Does not match a confirmation password.
    errors.cannot_delete_doc_because_of_running = A crawler is running. You cannot delete documents.
    errors.failed_to_delete_doc_in_admin = Failed to delete a document.
    errors.failed_to_send_testmail=Failed to send a test mail.
    errors.invalid_query_unknown = The specified query has an unknown condition.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/it/ITBase.java

        public static void deleteTestToken() {
            final String testToken = System.getProperty(TEST_TOKEN);
            if (testToken != null) {
                return;
            }
            given().contentType("application/json").delete(getEsUrl() + "/fess_config.access_token/_doc/" + DEFAULT_TEST_TOKEN_ID);
        }
    
        public static void refresh() {
            given().contentType("application/json").post(getEsUrl() + "/_refresh");
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/scheduler/admin_scheduler_details.jsp

                                        </button>
                                        <c:if test="${!running and !systemJobId}">
                                            <button type="button" class="btn btn-danger" name="delete"
                                                    data-toggle="modal" data-target="#confirmToDelete"
                                                    value="<la:message key="labels.crud_button_delete" />">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Wed Feb 12 20:25:27 UTC 2020
    - 12K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/auth/chain/AuthenticationChainTest.java

        }
    
        // Test basic delete operation
        public void test_delete_normalUser() {
            TestAuthenticationChain chain = new TestAuthenticationChain();
            User user = createTestUser("testuser", "Test User");
    
            chain.delete(user);
    
            assertEquals(1, chain.deleteCalls.size());
            assertEquals(user, chain.deleteCalls.get(0));
        }
    
        // Test delete with null user
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 14.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/opensearch/log/bsbhv/BsSearchLogBhv.java

            entity.asDocMeta().indexOption(opLambda);
            doInsertOrUpdate(entity, null, null);
        }
    
        public void delete(SearchLog entity) {
            doDelete(entity, null);
        }
    
        public void delete(SearchLog entity, RequestOptionCall<DeleteRequestBuilder> opLambda) {
            entity.asDocMeta().deleteOption(opLambda);
            doDelete(entity, null);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsFileConfigBhv.java

            entity.asDocMeta().indexOption(opLambda);
            doInsertOrUpdate(entity, null, null);
        }
    
        public void delete(FileConfig entity) {
            doDelete(entity, null);
        }
    
        public void delete(FileConfig entity, RequestOptionCall<DeleteRequestBuilder> opLambda) {
            entity.asDocMeta().deleteOption(opLambda);
            doDelete(entity, null);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  8. deploy_website.sh

    #!/bin/bash
    
    # The website is built using MkDocs with the Material theme.
    # https://squidfunk.github.io/mkdocs-material/
    # It requires python3 to run.
    
    set -ex
    
    REPO="******@****.***:square/okhttp.git"
    DIR=temp-clone
    
    # Delete any existing temporary website clone
    rm -rf $DIR
    
    # Clone the current repo into temp folder
    git clone $REPO $DIR
    # Replace `git clone` with these lines to hack on the website locally
    # cp -a . "../okhttp-website"
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Nov 20 15:26:12 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/service/DataConfigService.java

         *
         * @param dataConfig the data configuration to delete
         * @throws IllegalArgumentException if dataConfig is null
         * @throws org.dbflute.exception.EntityAlreadyDeletedException if the entity has already been deleted
         */
        public void delete(final DataConfig dataConfig) {
            dataConfigBhv.delete(dataConfig, op -> {
                op.setRefreshPolicy(Constants.TRUE);
            });
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/crawlinginfo/AdminCrawlinginfoAction.java

        //                                         Actually Crud
        //                                         -------------
        /**
         * Delete a crawling info.
         * @param form The edit form.
         * @return The HTML response.
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse delete(final EditForm form) {
            verifyCrudMode(form.crudMode, CrudMode.DETAILS);
            validate(form, messages -> {}, this::asDetailsHtml);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 11.4K bytes
    - Viewed (0)
Back to top