- Sort Score
- Result 10 results
- Languages All
Results 301 - 310 of 339 for startsWith (0.19 sec)
-
src/test/java/jcifs/netbios/NodeStatusResponseTest.java
} @Test void toString_shouldReturnFormattedString() { String result = response.toString(); assertNotNull(result); assertTrue(result.startsWith("NodeStatusResponse[")); assertTrue(result.endsWith("]")); } @Test void readRDataWireFormat_shouldHandleStatsAfterMac() throws Exception { // Test with statistics after MAC addressRegistered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 19.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/net/NetShareEnumResponseTest.java
setNumEntries(response, 2); setTotalAvailableEntries(response, 5); String result = response.toString(); assertNotNull(result); assertTrue(result.startsWith("NetShareEnumResponse[")); assertTrue(result.contains("status=0")); assertTrue(result.contains("converter=100")); assertTrue(result.contains("entriesReturned=2"));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/Suggester.java
settingsSource.append(line); } } return settingsSource.toString(); } private boolean isSuggestIndex(final String indexName) { return indexName.startsWith(index); }
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 20.7K bytes - Viewed (3) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java
} } else { if (configIndex.startsWith(CONFIG_INDEX_PREFIX)) { final String name = fessConfig.getIndexConfigIndex(); indexName = configIndex.replaceFirst(Pattern.quote(CONFIG_INDEX_PREFIX), name); } else if (configIndex.startsWith(USER_INDEX_PREFIX)) { final String name = fessConfig.getIndexUserIndex();Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 121.9K bytes - Viewed (1) -
src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java
public void test_generate_invalid_parent_directory() throws Exception { // Create a path that's guaranteed to be invalid final File invalidParent = System.getProperty("os.name", "linux").toLowerCase().startsWith("windows") ? new File("Q:\\invalid\\path\\that\\does\\not\\exist") : new File("/invalid/path/that/does/not/exist"); final File outputFile = new File(invalidParent, "output.txt");Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 16.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/synonym/SynonymFile.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
} default String getLdapAdminSecurityCredentials() { final String value = getSystemProperty(Constants.LDAP_ADMIN_SECURITY_CREDENTIALS); if (StringUtil.isNotBlank(value) && value.startsWith(Constants.CIPHER_PREFIX)) { return ComponentUtil.getPrimaryCipher().decrypt(value.substring(Constants.CIPHER_PREFIX.length())); } return value; }Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 86.5K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/DcerpcBindTest.java
DcerpcException result = bind.getResult(); assertNotNull(result, "Should return exception for unknown result code " + code); assertTrue(result.getMessage().startsWith("0x"), "Should return hex format for unknown result code " + code); } } private void setResultField(DcerpcBind bind, int value) throws Exception {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 22.7K bytes - Viewed (0) -
src/main/webapp/js/bootstrap.min.js.map
element.removeAttribute(`data-bs-${normalizeDataKey(key)}`)\n },\n\n getDataAttributes(element) {\n if (!element) {\n return {}\n }\n\n const attributes = {}\n const bsKeys = Object.keys(element.dataset).filter(key => key.startsWith('bs') && !key.startsWith('bsConfig'))\n\n for (const key of bsKeys) {\n let pureKey = key.replace(/^bs/, '')\n pureKey = pureKey.charAt(0).toLowerCase() + pureKey.slice(1, pureKey.length)\n attributes[pureKey] = normalizeData(element.dataset[key])\n...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Jan 12 06:14:02 UTC 2025 - 211.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/api/WebApiManagerTest.java
if (request == null) { return false; } String uri = request.getRequestURI(); return uri != null && uri.startsWith(basePath); } @Override public void process(HttpServletRequest request, HttpServletResponse response, FilterChain chain) throws IOException, ServletException {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.6K bytes - Viewed (0)