- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 112 for sensitive (0.08 sec)
-
src/test/java/org/codelibs/fess/helper/RelatedContentHelperTest.java
testData.add(createRelatedContent("Java", "Java Programming", "")); mockBhv.setTestData(testData); relatedContentHelper.load(); // Test case insensitive matching String[] results = relatedContentHelper.getRelatedContents("java"); assertEquals(1, results.length); assertEquals("Java Programming", results[0]);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 14.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/RelatedQueryHelperTest.java
testData.add(createRelatedQuery("Java", new String[] { "Programming", "Tutorial" }, "")); mockBhv.setTestData(testData); relatedQueryHelper.load(); // Test case insensitive matching String[] results = relatedQueryHelper.getRelatedQueries("java"); assertEquals(2, results.length); assertEquals("Programming", results[0]); assertEquals("Tutorial", results[1]);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 16.3K bytes - Viewed (0) -
src/test/java/jcifs/smb1/util/MimeMapTest.java
assertEquals("application/octet-stream", mimeMap.getMimeType("doesnotexist")); } @Test @DisplayName("Should handle case insensitive extensions") void testCaseInsensitiveExtensions() throws IOException { assertEquals("application/pdf", mimeMap.getMimeType("PDF")); assertEquals("application/pdf", mimeMap.getMimeType("Pdf"));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15K bytes - Viewed (0) -
compat/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/ComparableVersionTest.java
checkVersionsEqual("1a1", "1-alpha-1"); checkVersionsEqual("1b2", "1-beta-2"); checkVersionsEqual("1m3", "1-milestone-3"); // case insensitive checkVersionsEqual("1X", "1x"); checkVersionsEqual("1A", "1a"); checkVersionsEqual("1B", "1b"); checkVersionsEqual("1M", "1m"); checkVersionsEqual("1Cr", "1Rc");
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Mar 21 04:56:21 UTC 2025 - 17.8K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbSessionImplTest.java
void testGetSmbTreeReuses() { SmbSessionImpl session = newSession(); SmbTreeImpl t1 = session.getSmbTree("IPC$", null); SmbTreeImpl t2 = session.getSmbTree("ipc$", null); // case-insensitive match assertSame(t1, t2, "Expected same tree instance to be reused"); } @ParameterizedTest @NullAndEmptySource @DisplayName("treeConnectLogon: invalid logon share throws SmbException")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/PrunedTagTest.java
MockNode divNode = new MockNode("div"); assertTrue(tag.matches(divNode)); MockNode spanNode = new MockNode("span"); assertFalse(tag.matches(spanNode)); // Case insensitive test MockNode divUpperNode = new MockNode("DIV"); assertTrue(tag.matches(divUpperNode)); } public void test_matches_withId() { PrunedTag tag = new PrunedTag("div");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 21K bytes - Viewed (0) -
src/main/java/jcifs/SmbConstants.java
*/ int FLAGS_LOCK_AND_READ_WRITE_AND_UNLOCK = 0x01; /** * Receive buffer has been posted flag. */ int FLAGS_RECEIVE_BUFFER_POSTED = 0x02; /** * Path names are case-insensitive flag. */ int FLAGS_PATH_NAMES_CASELESS = 0x08; /** * Path names are canonicalized flag. */ int FLAGS_PATH_NAMES_CANONICALIZED = 0x10; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 12.8K bytes - Viewed (0) -
README.md
- **Collections** (`org.codelibs.core.collection`) - Enhanced collection utilities, array operations, and specialized map/set implementations including LRU caches and case-insensitive collections - **I/O Operations** (`org.codelibs.core.io`) - File handling, resource management, stream utilities, and traversal utilities for efficient resource processing
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sun Aug 31 02:56:02 UTC 2025 - 12.7K bytes - Viewed (0) -
docs/changelogs/changelog_2x.md
* Fix: `OkApacheClient` now allows an empty `PUT` and `POST`. * Fix: Websockets no longer rebuffer socket streams. * Fix: Websockets are now better at handling close frames. * Fix: Content type matching is now case insensitive. * Fix: `Vary` headers are not lost with `android.net.http.HttpResponseCache`. * Fix: HTTP/2 wasn't enforcing stream timeouts when writing the underlying connection. Now it is.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 26.6K bytes - Viewed (0)