- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 4,811 for tstring (0.34 sec)
-
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsRequestHeaderBhv.java
result.setUpdatedTime(DfTypeUtil.toLong(source.get("updatedTime"))); result.setValue(DfTypeUtil.toString(source.get("value"))); result.setWebConfigId(DfTypeUtil.toString(source.get("webConfigId"))); return updateEntity(source, result); } catch (InstantiationException | IllegalAccessException e) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsThumbnailQueueBhv.java
result.setTarget(DfTypeUtil.toString(source.get("target"))); result.setThumbnailId(DfTypeUtil.toString(source.get("thumbnail_id"))); return updateEntity(source, result); } catch (InstantiationException | IllegalAccessException e) { final String msg = "Cannot create a new instance: " + entityType.getName(); throw new IllegalBehaviorStateException(msg, e); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/SamlCredential.java
*/ public class SamlCredential implements LoginCredential, FessCredential { private final Map<String, List<String>> attributes; private final String nameId; private final String nameIdFormat; private final String sessionIndex; private final String nameidNameQualifier; private final String nameidSPNameQualifier; /** * Constructor. * @param auth The SAML authentication.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.4K bytes - Viewed (0) -
src/test/java/org/codelibs/curl/CurlExceptionTest.java
} @Test public void testToString() { String message = "Test error message"; CurlException exception = new CurlException(message); String toString = exception.toString(); assertNotNull(toString); assertTrue(toString.contains("CurlException")); assertTrue(toString.contains(message)); } @Test public void testStackTrace() {
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Thu Jul 31 01:01:12 UTC 2025 - 4.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/JobLogDbm.java
protected final String _tableDispName = "job_log"; protected final String _tablePropertyName = "JobLog"; public String getTableDbName() { return _tableDbName; } @Override public String getTableDispName() { return _tableDispName; } @Override public String getTablePropertyName() { return _tablePropertyName;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java
} public void test_updateDocument() { final Map<String, String> resultMap = new HashMap<>(); final SearchEngineClient client = new SearchEngineClient() { @Override public boolean update(final String index, final String id, final String field, final Object value) { resultMap.put("index", index); resultMap.put("id", id);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 29.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
} String getCrawlerMetadataNameMapping(); default Tuple3<String, String, String> getCrawlerMetadataNameMapping(final String name) { @SuppressWarnings("unchecked") Map<String, Tuple3<String, String, String>> params = (Map<String, Tuple3<String, String, String>>) propMap.get(CRAWLER_METADATA_NAME_MAPPING); if (params == null) {
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/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsFileAuthenticationBhv.java
result.setParameters(DfTypeUtil.toString(source.get("parameters"))); result.setPassword(DfTypeUtil.toString(source.get("password"))); result.setPort(DfTypeUtil.toInteger(source.get("port"))); result.setProtocolScheme(DfTypeUtil.toString(source.get("protocolScheme"))); result.setUpdatedBy(DfTypeUtil.toString(source.get("updatedBy")));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 10.5K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/NetServerEnum2Test.java
assertEquals(0, result); } /** * Test the toString method with SV_TYPE_ALL. */ @Test void testToString_SV_TYPE_ALL() { String result = netServerEnum2.toString(); // Verify the key parts of the string representation assertTrue(result.startsWith("NetServerEnum2["));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java
} finally { deleteTempFile(tempFile); } } private Map<String, Map<String, String>> parseObject(final ObjectMapper mapper, final String line) { try { return mapper.readValue(line, new TypeReference<Map<String, Map<String, String>>>() { }); } catch (final Exception e) { if (logger.isDebugEnabled()) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 29.8K bytes - Viewed (0)