- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 15 for sensitivity (0.18 sec)
-
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessApiFailureHookTest.java
return null; } }); assertNull(ComponentUtil.getFessConfig().getApiJsonResponseExceptionIncluded()); } // Test case sensitivity for configuration values public void test_configurationCaseSensitivity() { String[] testValues = { "TRUE", "True", "true", "FALSE", "False", "false" }; for (String value : testValues) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessUserLocaleProcessProviderTest.java
assertEquals("no", locale.getLanguage()); assertEquals("NO", locale.getCountry()); assertEquals("NY", locale.getVariant()); } // Test findBusinessLocale with case sensitivity public void test_findBusinessLocale_withMixedCase() { // Setup mock config FessConfig mockConfig = new FessConfig.SimpleImpl() { @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/WildcardQueryCommand.java
/** * Query command for handling wildcard queries. * Converts Lucene WildcardQuery objects to OpenSearch QueryBuilder objects, * supporting wildcard pattern matching with configurable case sensitivity. */ public class WildcardQueryCommand extends QueryCommand { /** * Default constructor. */ public WildcardQueryCommand() { super(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) -
src/test/java/jcifs/NetbiosNameTest.java
when(mockNetbiosName.getName()).thenReturn(testName); assertEquals(testName, mockNetbiosName.getName()); } } @Test @DisplayName("Should handle case sensitivity") void testCaseSensitivity() { // Given String upperCase = "SERVER"; String lowerCase = "server"; String mixedCase = "Server"; // Test different cases
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8K bytes - Viewed (0) -
src/test/java/jcifs/ntlmssp/Type1MessageTest.java
// Then assertNull(type1.getSuppliedDomain()); assertNull(type1.getSuppliedWorkstation()); } @Test @DisplayName("Should handle case sensitivity in domain and workstation") void testCaseSensitivity() { // Given String domain = "TestDomain"; String workstation = "TestWorkstation"; // When
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/KeyMatchHelperTest.java
} catch (Exception e) { // Expected due to missing dependencies in test environment assertTrue(true); return; } // Should handle case sensitivity properly assertNotNull(functionBuilders); assertEquals(0, functionBuilders.size()); // No data loaded } public void test_load_emptyState() { try {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 10.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/script/ScriptEngineFactoryTest.java
ScriptEngine retrieved = scriptEngineFactory.getScriptEngine(" test "); assertNotNull(retrieved); assertEquals(engine, retrieved); } // Test case sensitivity preservation in error messages public void test_getScriptEngine_errorMessagePreservesCase() { try { scriptEngineFactory.getScriptEngine("MyNonExistentEngine");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.1K bytes - Viewed (0) -
src/test/java/jcifs/ntlmssp/Type3MessageTest.java
assertNotNull(type3.getMic()); assertEquals(16, type3.getMic().length); // MIC is 16 bytes } } @Test @DisplayName("Should handle case sensitivity correctly") void testCaseSensitivity() throws Exception { // Given Type2Message type2 = createMockType2Message(); String mixedCaseDomain = "TestDomain";
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.3K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.23.md
- Fix: skip `instance not found` when decoupling VMSSs from LB ([#105666](https://github.com/kubernetes/kubernetes/pull/105666), [@nilo19](https://github.com/nilo19)) - Fix: skip case sensitivity when checking Azure NSG rules. ([#104384](https://github.com/kubernetes/kubernetes/pull/104384), [@feiskyer](https://github.com/feiskyer))
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Tue Feb 28 21:06:52 UTC 2023 - 424.5K bytes - Viewed (0) -
src/test/java/jcifs/config/MultiChannelConfigurationTest.java
PropertyConfiguration config = new PropertyConfiguration(props); assertEquals(strategy, config.getLoadBalancingStrategy()); } // Test case insensitivity props.setProperty("jcifs.smb.client.loadBalancingStrategy", "ADAPTIVE"); PropertyConfiguration config = new PropertyConfiguration(props); assertEquals("ADAPTIVE", config.getLoadBalancingStrategy());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 8.3K bytes - Viewed (0)