- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 76 for delete$all (0.13 sec)
-
cmd/metacache-bucket.go
for k, v := range b.cachesRoot { tmp := make([]string, len(v)) copy(tmp, v) dst2[k] = tmp } return dst, dst2 } // deleteAll will delete all on disk data for ALL caches. // Deletes are performed concurrently. func (b *bucketMetacache) deleteAll() { ctx := context.Background() objAPI := newObjectLayerFn() if objAPI == nil { return } ez, ok := objAPI.(deleteAllStorager)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 6.6K bytes - Viewed (0) -
istioctl/pkg/waypoint/waypoint.go
# Delete all waypoints in a specific namespace istioctl waypoint delete --all --namespace default`, Args: func(cmd *cobra.Command, args []string) error { if deleteAll && len(args) > 0 { return fmt.Errorf("cannot specify waypoint names when deleting all waypoints") } if !deleteAll && len(args) == 0 {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 16:05:45 UTC 2024 - 19.6K bytes - Viewed (0) -
cmd/batch-expire_test.go
lessThan: "10MiB" # match objects with size less than this value (e.g. 10MiB) greaterThan: 1MiB # match objects with size greater than this value (e.g. 1MiB) purge: # retainVersions: 0 # (default) delete all versions of the object. This option is the fastest. # retainVersions: 5 # keep the latest 5 versions of the object. - type: deleted # objects with delete marker as their latest version
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 01 12:53:30 UTC 2024 - 5.5K bytes - Viewed (0) -
src/main/resources/fess_label_en.properties
labels.crawling_info_session_id_search=Session ID labels.crawling_info_session_id=Session ID labels.crawling_info_created_time=Created labels.crawling_info_delete_all_link=Delete All labels.crawling_info_delete_all_confirmation=Do you really want to delete all? labels.crawling_info_delete_all_cancel=Cancel labels.crawling_info_thread_dump=Thread Dump labels.crawling_info_CrawlerStartTime=Crawler start time
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Mar 22 11:58:34 UTC 2024 - 40.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/settings/ElevateWordSettings.java
} arraySettings.delete(ELEVATE_WORD_SETTINGD_KEY, elevateWord); } public void deleteAll() { if (logger.isDebugEnabled()) { logger.debug("Delete all elevateword. {}", arraySettings.arraySettingsIndexName); } arraySettings.delete(ELEVATE_WORD_SETTINGD_KEY); }
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Sat Oct 12 00:10:39 UTC 2024 - 4.9K bytes - Viewed (0) -
src/main/resources/fess_label.properties
labels.crawling_info_session_id_search=Session ID labels.crawling_info_session_id=Session ID labels.crawling_info_created_time=Created labels.crawling_info_delete_all_link=Delete All labels.crawling_info_delete_all_confirmation=Do you really want to delete all? labels.crawling_info_delete_all_cancel=Cancel labels.crawling_info_thread_dump=Thread Dump labels.crawling_info_CrawlerStartTime=Crawler start time
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Mar 22 11:58:34 UTC 2024 - 40.7K bytes - Viewed (0) -
fess-crawler-opensearch/src/test/java/org/codelibs/fess/crawler/service/impl/OpenSearchUrlQueueServiceTest.java
super.setUp(); } @Override public void tearDown() throws Exception { super.tearDown(); // close runner runner.close(); // delete all files runner.clean(); } public void test_insert_update_deleteTx() { final OpenSearchUrlQueue urlQueue = new OpenSearchUrlQueue(); urlQueue.setCreateTime(System.currentTimeMillis());
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Nov 07 04:44:10 UTC 2024 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/failureurl/ApiAdminFailureurlAction.java
}); return asJson(new ApiResponse().status(Status.OK).result()); } // DELETE /api/admin/failureurl/all @Execute public JsonResponse<ApiResult> delete$all() { try { failureUrlService.deleteAll(failureUrlPager); failureUrlPager.clear(); saveInfo(messages -> messages.addSuccessFailureUrlDeleteAll(GLOBAL)); } catch (final Exception e) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 4.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/suggest/ApiAdminSuggestAction.java
return asJson(new ApiResult.ApiConfigResponse().setting(body).status(ApiResult.Status.OK).result()); } // DELETE /api/admin/suggest/all @Execute public JsonResponse<ApiResult> delete$all() { if (!suggestHelper.deleteAllWords()) { throwValidationErrorApi(messages -> messages.addErrorsFailedToDeleteDocInAdmin(GLOBAL)); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 2.6K bytes - Viewed (0) -
src/bootstrap.bash
gohostos="$(../bin/go env GOHOSTOS)" gohostarch="$(../bin/go env GOHOSTARCH)" goos="$(../bin/go env GOOS)" goarch="$(../bin/go env GOARCH)" # NOTE: Cannot invoke go command after this point. # We're about to delete all but the cross-compiled binaries. cd .. if [ "$goos" = "$gohostos" -a "$goarch" = "$gohostarch" ]; then # cross-compile for local system. nothing to copy. # useful if you've bootstrapped yourself but want to
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Jan 20 17:52:26 UTC 2023 - 2.3K bytes - Viewed (0)