- Sort Score
- Num 10 results
- Language All
Results 51 - 60 of 1,156 for delenv (0.07 seconds)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerTest.java
assertTrue(accessResult.getUrl().startsWith(url2)); assertEquals(Constants.GET_METHOD, accessResult.getMethod()); }); dataService.delete(sessionId1); dataService.delete(sessionId2); } finally { try { server1.stop(); } finally { server2.stop(); } } }
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Tue Nov 11 13:40:14 GMT 2025 - 25.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/index/writer/SuggestWriter.java
* @param settings the settings to use for the operation * @param index the name of the index from which to delete the suggestion * @param id the ID of the suggestion to delete * @return a result object containing the outcome of the delete operation */ SuggestWriterResult delete(Client client, SuggestSettings settings, String index, String id); /**Created: Sat Dec 20 13:04:59 GMT 2025 - Last Modified: Fri Jul 04 14:00:23 GMT 2025 - 4.1K bytes - Click Count (0) -
docs/bucket/replication/DESIGN.md
### Replication of DeleteMarker and versioned Delete
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Tue Aug 12 18:20:36 GMT 2025 - 14.7K bytes - Click Count (0) -
src/main/java/org/codelibs/curl/Curl.java
} /** * Creates a new CurlRequest with the DELETE method for the specified URL. * * @param url the URL to which the DELETE request will be sent * @return a CurlRequest object configured with the DELETE method and the specified URL */ public static CurlRequest delete(final String url) { return new CurlRequest(Method.DELETE, url); } /**Created: Sat Dec 20 09:13:53 GMT 2025 - Last Modified: Thu Nov 20 13:34:13 GMT 2025 - 5.9K bytes - Click Count (0) -
cmd/local-locker.go
if !ok { continue } // Collect uids, so we don't mutate while we delete uids := make([]string, 0, len(lris)) for _, lri := range lris { uids = append(uids, lri.UID) } // Delete collected uids: for _, uid := range uids { lris, ok := l.lockMap[resource] if !ok { // Just to be safe, delete uuids. for idx := range maxDeleteList { mapID := formatUUID(uid, idx)Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 12K bytes - Click Count (0) -
tests/associations_test.go
var err error // belongs to err = DB.Model(&emptyUser).Association("Company").Delete(&user1.Company) AssertEqual(t, err, gorm.ErrPrimaryKeyRequired) // has many err = DB.Model(&emptyUser).Association("Pets").Delete(&user1.Pets) AssertEqual(t, err, gorm.ErrPrimaryKeyRequired) // has one err = DB.Model(&emptyUser).Association("Account").Delete(&user1.Account) AssertEqual(t, err, gorm.ErrPrimaryKeyRequired) // many to many
Created: Sun Dec 28 09:35:17 GMT 2025 - Last Modified: Fri Sep 12 04:33:27 GMT 2025 - 13.3K bytes - Click Count (0) -
src/main/resources/log4j2.xml
</Policies> <DefaultRolloverStrategy fileIndex="max" min="1" max="${backup.max.history}" compressionLevel="9"> <Delete basePath="${log.file.basedir}"> <IfFileName glob="${domain.name}*.log.gz" /> <IfLastModified age="P${backup.max.age}D" /> </Delete> </DefaultRolloverStrategy> </RollingFile> <RollingFile name="AuditFile" fileName="${log.file.basedir}/audit.log"
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Mon Feb 20 13:17:33 GMT 2023 - 3.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/plugin/AdminPluginAction.java
return asListHtml(); } /** * Deletes the specified plugin. * * @param form the delete form containing plugin information * @return HTML response redirecting to the plugin list */ @Execute @Secured({ ROLE }) public HtmlResponse delete(final DeleteForm form) { validate(form, messages -> {}, () -> asHtml(path_AdminPlugin_AdminPluginJsp));
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 11.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/GroupService.java
* association from all users that belong to this group. * * @param group the group entity to delete */ public void delete(final Group group) { ComponentUtil.getLdapManager().delete(group); groupBhv.delete(group, op -> { op.setRefreshPolicy(Constants.TRUE); });Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 5.7K bytes - Click Count (0) -
android/guava/src/com/google/common/io/RecursiveDeleteOption.java
/** * Options for use with recursive delete methods ({@link MoreFiles#deleteRecursively} and {@link * MoreFiles#deleteDirectoryContents}). * * @since 33.4.0 (but since 21.0 in the JRE flavor) * @author Colin Decker */ @J2ktIncompatible @GwtIncompatible @J2ObjCIncompatible // java.nio.file public enum RecursiveDeleteOption { /**
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Sat Dec 21 03:10:51 GMT 2024 - 2K bytes - Click Count (0)