Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 33 for delete$all (1.9 sec)

  1. src/main/java/org/codelibs/fess/app/service/FailureUrlService.java

        }
    
        /**
         * Deletes all failure URLs that match the criteria specified in the pager.
         *
         * @param failureUrlPager the pager containing deletion criteria
         */
        public void deleteAll(final FailureUrlPager failureUrlPager) {
            failureUrlBhv.queryDelete(cb -> {
                buildSearchCondition(failureUrlPager, cb);
            });
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/admin/joblog/admin_joblog.jsp

                                                                <button type="submit" class="btn btn-outline-light"
                                                                        name="deleteall"
                                                                        value="<la:message key="labels.joblog_delete_all_link" />">
                                                                    <em class="fa fa-trash">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 11.4K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.14.md

    - Printed `SizeLimit` of `EmptyDir` in `kubectl describe pod` outputs. ([#69279](https://github.com/kubernetes/kubernetes/pull/69279), [@dtaniwaki](https://github.com/dtaniwaki))
    - `kubectl delete --all-namespaces` is now a recognized flag. ([#73716](https://github.com/kubernetes/kubernetes/pull/73716), [@deads2k](https://github.com/deads2k))
    
    ### Cloud Provider
    
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Mon Jun 14 22:06:39 UTC 2021
    - 271.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/searchlog/AdminSearchlogAction.java

        /**
         * Deletes all search log entries.
         *
         * @return HTML response redirecting to the list page after deletion
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse deleteall() {
            verifyToken(this::asListHtml);
            searchLogPager.clear();
            // TODO delete logs
            saveInfo(messages -> messages.addSuccessCrawlingInfoDeleteAll(GLOBAL));
            return redirect(getClass());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/admin/failureurl/admin_failureurl.jsp

                                                                    <button type="submit" class="btn btn-outline-light"
                                                                            name="deleteall"
                                                                            value="<la:message key="labels.failure_url_delete_all_link" />">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 13.3K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.18.md

    - We will no longer automatically delete all data when a failure is detected during creation of the volume data file on a CSI volume. Now we will only remove the data file and volume path. ([#96021](https://github.com/kubernetes/kubernetes/pull/96021), [@huffmanca](https://github.com/huffmanca))...
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Jun 16 17:18:28 UTC 2021
    - 373.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/joblog/AdminJoblogAction.java

        }
    
        /**
         * Deletes all job logs.
         *
         * @return HTML response after deletion
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse deleteall() {
            verifyToken(this::asListHtml);
            final List<String> jobStatusList = new ArrayList<>();
            jobStatusList.add(Constants.OK);
            jobStatusList.add(Constants.FAIL);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java

            @Override
            public void delete(String sessionId) {
                // Do nothing in test
            }
    
            @Override
            public void deleteAll() {
                // Do nothing in test
            }
    
            @Override
            public void offerAll(String sessionId, List<OpenSearchUrlQueue> list) {
                // Do nothing in test
            }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java

         *
         * @param form the list form containing search criteria
         * @return HTML response redirecting to the list page
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse deleteall(final ListForm form) {
            validate(form, messages -> {}, this::asListHtml);
            verifyToken(this::asListHtml);
            try {
                searchHelper.deleteByQuery(request, form);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 23.1K bytes
    - Viewed (1)
  10. CHANGELOG/CHANGELOG-1.32.md

    - Kube-proxy, when using a Service with External or LoadBalancer IPs on UDP services , was consuming a large amount of CPU because it was not filtering by the Service destination port and trying to delete all the UDP entries associated to the service. ([#130505](https://github.com/kubernetes/kubernetes/pull/130505), [@aojea](https://github.com/aojea)) [SIG Network]
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 14:49:49 UTC 2025
    - 412.3K bytes
    - Viewed (0)
Back to top