- Sort Score
- Result 10 results
- Languages All
Results 571 - 580 of 1,288 for Deleted (0.06 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/webauth/ApiAdminWebauthAction.java
} // DELETE /api/admin/webauth/setting/{id} @Execute public JsonResponse<ApiResult> delete$setting(final String id) { webAuthService.getWebAuthentication(id).ifPresent(entity -> { try { webAuthService.delete(entity); saveInfo(messages -> messages.addSuccessCrudDeleteCrudTable(GLOBAL));
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 6.8K bytes - Viewed (0) -
docs/distributed/DECOMMISSION.md
> Without a 'Complete' status any 'Active' or 'Draining' pool(s) are not allowed to be removed once configured. ## NOTE - Empty delete markers (such as for objects with no other successor versions) do not transition to the new pool to avoid creating empty metadata on the other pool(s). If you believe transitioning empty delete markers is required, open a GitHub issue. ## TODO
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Jul 11 14:59:49 UTC 2022 - 8.3K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GenerateDocInfo.java
@TaskAction public void generate() { // TODO: This could probably use InputChanges API File destinationDirectory = getDestinationDirectory().get().getAsFile(); getFs().delete(spec -> spec.delete(destinationDirectory)); destinationDirectory.mkdirs(); Path adocDir = getDocumentationRoot().get().getAsFile().toPath();
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Sep 28 06:35:34 UTC 2021 - 2.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/CharMappingService.java
} else { file.update(charMappingItem); } }); } public void delete(final String dictId, final CharMappingItem charMappingItem) { getCharMappingFile(dictId).ifPresent(file -> { file.delete(charMappingItem); }); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/KeyMatchService.java
keyMatchBhv.insertOrUpdate(keyMatch, op -> { op.setRefreshPolicy(Constants.TRUE); }); } public void delete(final KeyMatch keyMatch) { keyMatchBhv.delete(keyMatch, op -> { op.setRefreshPolicy(Constants.TRUE); }); } protected void setupListCondition(final KeyMatchCB cb, final KeyMatchPager keyMatchPager) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/ProtwordsService.java
} else { file.update(protwordsItem); } }); } public void delete(final String dictId, final ProtwordsItem protwordsItem) { getProtwordsFile(dictId).ifPresent(file -> { file.delete(protwordsItem); }); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/StemmerOverrideService.java
} else { file.update(stemmerOvberrideItem); } }); } public void delete(final String dictId, final StemmerOverrideItem stemmerOvberrideItem) { getStemmerOverrideFile(dictId).ifPresent(file -> { file.delete(stemmerOvberrideItem); }); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.3K bytes - Viewed (0) -
tests/query_test.go
if result.ID != 0 { t.Errorf("Should not have ID because only selected name, %+v", result.ID) } if user.Name != result.Name { t.Errorf("Should have user Name when selected it") } var result2 User DB.Where("name = ?", user.Name).Select("name as name").Find(&result2) if result2.ID != 0 { t.Errorf("Should not have ID because only selected name, %+v", result2.ID) } if user.Name != result2.Name {
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Mon Jun 24 09:42:59 UTC 2024 - 50.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/FilesCreateTempDirTest.java
assertThat(temp.isDirectory()).isTrue(); assertThat(temp.listFiles()).isEmpty(); File child = new File(temp, "child"); assertThat(child.createNewFile()).isTrue(); assertThat(child.delete()).isTrue(); if (!isAndroid() && !isWindows()) { PosixFileAttributes attributes = java.nio.file.Files.getFileAttributeView(temp.toPath(), PosixFileAttributeView.class)
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 06 17:11:11 UTC 2023 - 4.3K bytes - Viewed (0) -
ci/official/containers/ml_build/builder.packages.txt
# Packages to be installed for the new Docker image. # Packages needed to build devtoolset file flex g++ make patch rpm2cpio unar wget xz-utils cpio # Other build-related tools apt-transport-https autoconf automake build-essential ca-certificates llvm-18 clang-18 clang-tidy-18 lld-18 clang-format-12 curl git parallel sudo swig unzip zip openjdk-21-jdk
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Fri Oct 11 22:54:10 UTC 2024 - 360 bytes - Viewed (0)