- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 173 for delegation (0.27 sec)
-
src/test/java/org/codelibs/fess/dict/stopwords/StopwordsItemTest.java
StopwordsItem item = new StopwordsItem(1, "word"); assertFalse(item.isDeleted()); item.setNewInput("new"); assertFalse(item.isDeleted()); // Mark for deletion with empty string item.setNewInput(""); assertTrue(item.isDeleted()); item.setNewInput(null); assertFalse(item.isDeleted()); } public void test_hashCode() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/crawlinginfo/ApiAdminCrawlinginfoAction.java
} /** * Deletes a specific crawling info log by ID. * * @param id the ID of the crawling info log to delete * @return JSON response indicating the deletion status */ // DELETE /api/admin/crawlinginfo/log/{id} @Execute public JsonResponse<ApiResult> delete$log(final String id) { crawlingInfoService.getCrawlingInfo(id).ifPresent(entity -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 6.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/cache/LocalCacheMapComputeTest.java
}); assertThat(cache.size()).isAtMost(1); } public void testCompute() { cache.put(key, "1"); // simultaneous deletion doParallelCacheOp( count, n -> { cache.asMap().compute(key, (k, v) -> null); }); assertEquals(0, cache.size()); } public void testComputeWithLoad() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 12 03:49:18 UTC 2025 - 6.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/elevateword/CreateForm.java
public String[] labelTypeIds; /** The CRUD operation mode for form processing */ @ValidateTypeFailure public Integer crudMode; /** The word that should trigger document elevation in search results */ @Required public String suggestWord; /** The reading/pronunciation of the suggest word for language analysis */ public String reading;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/NotifyResponse.java
/** * Interface for SMB change notification response messages. * Handles responses from directory change notification requests, providing information * about file system changes such as file creation, deletion, or modification events. * * @author mbechler */ public interface NotifyResponse extends CommonServerMessageBlockResponse { /** * Gets the file notification information from the response.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.4K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/DelegatingLocalArtifactRepository.java
import org.apache.maven.artifact.repository.ArtifactRepositoryPolicy; import org.apache.maven.artifact.repository.MavenArtifactRepository; import org.apache.maven.artifact.repository.layout.ArtifactRepositoryLayout; /** * Delegating local artifact repository chains the reactor, IDE workspace * and user local repository. */ @Deprecated public class DelegatingLocalArtifactRepository extends MavenArtifactRepository {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 5.4K bytes - Viewed (0) -
guava/src/com/google/common/base/Suppliers.java
* on the deserialized instance. * * <p>When the underlying delegate throws an exception then this memoizing supplier will keep * delegating calls until it returns valid data. * * <p>If {@code delegate} is an instance created by an earlier call to {@code memoize}, it is * returned directly. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 16.5K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Suppliers.java
* on the deserialized instance. * * <p>When the underlying delegate throws an exception then this memoizing supplier will keep * delegating calls until it returns valid data. * * <p>If {@code delegate} is an instance created by an earlier call to {@code memoize}, it is * returned directly. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 16.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlog/AdminSearchlogAction.java
/** * Deletes a specific search log entry. * * @param form the edit form containing the log entry information * @return HTML response redirecting to the list page after deletion */ @Execute @Secured({ ROLE }) public HtmlResponse delete(final EditForm form) { verifyCrudMode(form.crudMode, CrudMode.DETAILS);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/group/ApiAdminGroupAction.java
} // DELETE /api/admin/group/setting/{id} /** * Deletes a specific group setting. * Prevents deletion of the currently logged-in user's group for security. * * @param id the group setting ID to delete * @return JSON response with deletion status */ @Execute public JsonResponse<ApiResult> delete$setting(final String id) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8K bytes - Viewed (0)