- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for Commented (0.26 sec)
-
src/test/java/org/codelibs/fess/helper/KeyMatchHelperTest.java
} catch (Exception e) { // Expected due to missing dependencies in test environment assertTrue(true); return; } // assertEquals(0, result.size()); // Commented out due to variable scope } public void test_getBoostedDocumentList_withVirtualHost() { KeyMatch keyMatch = new KeyMatch(); keyMatch.setId("km1"); keyMatch.setTerm("java");
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/main/java/org/codelibs/fess/suggest/converter/KatakanaConverter.java
* check if a tokenizer is enabled. It also includes methods to create a token * stream and extract reading information from the stream's attributes, although * the tokenizer-related functionality is currently commented out. * </p> */ public class KatakanaConverter implements ReadingConverter { /** The transliterator for Hiragana-Katakana conversion. */
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 6.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/FessConfigTest.java
} catch (ConfigPropertyNotFoundException e) { assertEquals("non.existent.property", e.getMessage()); } } // Test isExtensionAllowed method /* // Commented out - methods don't exist in FessConfig public void test_isExtensionAllowed() { assertTrue(fessConfig.isExtensionAllowed("jpg")); assertTrue(fessConfig.isExtensionAllowed("jpeg"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 23.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/info/Smb2QueryDirectoryResponseTest.java
SMBUtil.writeInt4(208, buffer, bufferIndex + 4); response = spy(response); when(response.getHeaderStart()).thenReturn(0); // Note: Due to bug in line 96 (commented out bufferIndex = bufferOffset), // the decode starts at bufferIndex=8 instead of dataOffset=80 // So we need to write data at bufferIndex=8 // Write first FileBothDirectoryInfo at bufferIndex=8
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 23.5K bytes - Viewed (0) -
cmd/common-main.go
envEntry = strings.TrimSpace(envEntry) if envEntry == "" { // Skip all empty lines return envKV{ Skip: true, }, nil } if strings.HasPrefix(envEntry, "#") { // Skip commented lines return envKV{ Skip: true, }, nil } envTokens := strings.SplitN(strings.TrimSpace(strings.TrimPrefix(envEntry, "export")), config.EnvSeparator, 2) if len(envTokens) != 2 {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 32.5K bytes - Viewed (3)