- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 38 for removing (1.43 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/rule/RuleManagerTest.java
ruleManager.addRule(0, null); assertEquals(1, ruleManager.getRuleCount()); assertEquals("rule1", ruleManager.getRules().get(0).getRuleId()); } /** * Test removing existing rule */ public void test_removeRule_existing() { TestRule rule1 = new TestRule("rule1", true); TestRule rule2 = new TestRule("rule2", false); ruleManager.addRule(rule1);
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 23.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportPoolImpl.java
} private void cleanup() { SmbTransportImpl trans; while ((trans = this.toRemove.poll()) != null) { if (log.isDebugEnabled()) { log.debug("Removing transport connection " + trans + " (" + System.identityHashCode(trans) + ")"); } this.connections.remove(trans); this.nonPooledConnections.remove(trans);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 33.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/SuggestCreator.java
} exitCode.set(1); } } logger.info("Replacing new suggest index."); suggestHelper.suggester().switchIndex(); logger.info("Removing old indices."); suggestHelper.suggester().removeDisableIndices(); return exitCode.get(); } private int purge(final LocalDateTime time) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 11.1K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbCopyUtilTest.java
assertEquals(alsoRead, hasReadData, "FILE_READ_DATA flag presence should match alsoRead"); } @Test @DisplayName("openCopyTargetFile retries after removing READONLY and succeeds") void openCopyTargetFile_retryOnReadonly_thenSuccess() throws Exception { // Arrange SmbFile dest = mock(SmbFile.class);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.1K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/entity/ResponseDataTest.java
assertEquals(2, childUrlSet.size()); assertTrue(childUrlSet.contains(child1)); assertTrue(childUrlSet.contains(child2)); } public void test_removeChildUrl() { // Test removing child URL ResponseData data = new ResponseData(); RequestData child1 = new RequestData(); child1.setMethod(Method.GET); child1.setUrl("https://example.com/page1");
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:29:22 UTC 2025 - 14.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java
* Handles both regular API calls and plugin requests. * * @param request the HTTP servlet request * @param response the HTTP servlet response * @param path the request path after removing the prefix */ protected void processRequest(final HttpServletRequest request, final HttpServletResponse response, final String path) { if ("/_plugin".equals(path) || path.startsWith("/_plugin/")) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 12.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java
*/ protected CrawlingInfoService getCrawlingInfoService() { return ComponentUtil.getComponent(CrawlingInfoService.class); } /** * Extracts the canonical session ID by removing any suffix after the first hyphen. * If the session ID contains a hyphen, returns the portion before the first hyphen. * Otherwise, returns the original session ID. *Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 15.2K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/net/protocol/gcs/HandlerTest.java
assertEquals("mybucket", getField(conn, "bucketName")); // URL class does NOT normalize multiple slashes - they are preserved after removing leading slash String objectName = (String) getField(conn, "objectName"); assertEquals("/path//to//object.txt", objectName); } /**Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 14.1K bytes - Viewed (0) -
src/test/java/jcifs/util/PathValidatorTest.java
// to preserve the leading double backslash for UNC paths } @Test public void testInvalidUncPath() throws Exception { // Due to normalization removing duplicate backslashes, true UNC validation doesn't work // These tests validate current behavior where problematic paths are caught by other checksRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 14.6K bytes - Viewed (0) -
src/test/java/jcifs/util/SecureKeyManagerTest.java
// Verify main key is removed (archives stay) assertFalse(keyManager.hasSessionKey(sessionId), "Main key should be removed"); // Note: Archives are not automatically removed when removing main key }Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 14.2K bytes - Viewed (0)