- Sort Score
- Num 10 results
- Language All
Results 21 - 30 of 232 for NO (0.01 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGeneratorTest.java
assertFalse(svgMimetype.matches(doubleBackslash)); // Pattern with no backslash (13 chars): should NOT match String noBackslash = "image/svg+xml"; assertEquals("No backslash pattern should be 13 chars", 13, noBackslash.length()); assertFalse(svgMimetype.matches(noBackslash)); } @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Feb 04 14:24:39 GMT 2026 - 17.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/ds/AbstractDataStoreTest.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 12.8K bytes - Click Count (1) -
src/main/java/org/codelibs/fess/llm/RelevanceEvaluationResult.java
return new RelevanceEvaluationResult(relevantDocIds, relevantIndexes, hasRelevant); } /** * Creates a result with no relevant documents found. * * @return evaluation result with no relevant documents */ public static RelevanceEvaluationResult noRelevantResults() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 01 08:11:18 GMT 2026 - 3.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/mylasta/direction/FessEnvTest.java
props.setProperty("bool.true", "true"); props.setProperty("bool.false", "false"); props.setProperty("bool.yes", "yes"); props.setProperty("bool.no", "no"); props.setProperty("bool.on", "on"); props.setProperty("bool.off", "off"); props.setProperty("bool.1", "1"); props.setProperty("bool.0", "0");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 15.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/mapping/CharMappingFileTest.java
} } // An empty file should return no items assertEquals("Empty file should have no items", 0, result.size()); assertEquals("Empty file should have no records", 0, result.getAllRecordCount()); assertEquals("Empty file should have no pages", 0, result.getAllPageCount()); } // Test selectList method with valid data @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 18.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/sso/saml/SamlAuthenticatorTest.java
// Verify email addresses are correctly formatted (no double @) String technicalEmail = (String) defaultSettings.get("onelogin.saml2.contacts.technical.email_address"); String supportEmail = (String) defaultSettings.get("onelogin.saml2.contacts.support.email_address"); assertNotNull(technicalEmail); assertNotNull(supportEmail); // Verify no double @ signsCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 18.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java
docMap.put("_id", "docid1"); docMap.put("url", "http://example.com"); boolean result = thumbnailManager.offer(docMap); assertTrue(result); } // Test offer with no matching generator @Test public void test_offer_noMatchingGenerator() { TestThumbnailGenerator generator = new TestThumbnailGenerator(); generator.available = true; generator.target = false;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 20.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackTest.java
} @Override public long getExecuteTime() { return execTime.get(); } @Override public void commit() { // No-op for test } }; // Test initial state assertEquals(0L, callback.getDocumentSize()); assertEquals(0L, callback.getExecuteTime()); // Test store methodCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 12.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessUserLocaleProcessProviderTest.java
ComponentUtil.setFessConfig(mockConfig); // Setup mock request manager with no value RequestManager mockRequestManager = createMockRequestManager(null); // Execute OptionalThing<Locale> result = provider.findBusinessLocale(null, mockRequestManager); // Verify - should return empty when no parameter value assertFalse(result.isPresent()); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 11.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/crawler/interval/FessIntervalController.java
} /** * Gets the delay time in milliseconds when there are no URLs in the queue. * * @return the delay time in milliseconds when no URLs are available */ public long getDelayMillisAtNoUrlInQueue() { return delayMillisAtNoUrlInQueue; } /** * Sets the delay time in milliseconds when there are no URLs in the queue. *Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Nov 19 07:09:17 GMT 2025 - 5.1K bytes - Click Count (0)