- Sort Score
- Result 10 results
- Languages All
Results 1151 - 1160 of 5,086 for Strings (0.05 sec)
-
src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java
return buf; } /** * Extracts the URL string from a crawler object for logging purposes. * * @param keyObj the crawler object to extract URL from * @return the URL string or a default value if not extractable */ protected String getUrl(final Object keyObj) { if (keyObj instanceof final UrlQueue<?> urlQueue) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java
*/ public static void updateObjectTags(final String objectName, final Map<String, String> tagItems) { final Map<String, String> tags = new HashMap<>(); tagItems.keySet().stream().filter(s -> s.startsWith("name")).forEach(nameKey -> { final String valueKey = nameKey.replace("name", "value"); final String name = tagItems.get(nameKey); if (StringUtil.isNotBlank(name)) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 25.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java
* @param defaultValue the default value to return if key is not found * @return the parameter value as a string, or the default value if not found */ protected String getParamValue(final DataStoreParams paramMap, final String key, final String defaultValue) { return paramMap.getAsString(key, defaultValue); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 28.9K bytes - Viewed (0) -
src/main/java/jcifs/audit/SecurityAuditLogger.java
} private Map<String, Object> maskContext(Map<String, Object> context) { if (!maskSensitiveData) { return context; } Map<String, Object> masked = getContextMap(); for (Map.Entry<String, Object> entry : context.entrySet()) { String key = entry.getKey().toLowerCase(); Object value = entry.getValue();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 26.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/allcommon/EsAbstractEntity.java
return super.hashCode(); } @Override public String toString() { return getClass().getSimpleName() + ":" + doBuildColumnString(", ") + "@" + Integer.toHexString(hashCode()); } protected abstract String doBuildColumnString(String dm); @Override public String toStringWithRelation() { // #pending return toString(); } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 10.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/UrlQueueImpl.java
protected String sessionId; /** The HTTP method used for the URL in the queue. */ protected String method; /** The URL from the queue. */ protected String url; /** The metadata associated with the URL queue. */ protected String metaData; /** The encoding of the URL queue. */ protected String encoding;
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 6.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/validation/CustomSizeTest.java
private String testFieldWithMessage; // Test field with groups @CustomSize(groups = { TestGroup.class }) private String testFieldWithGroups; // Test field with payload @CustomSize(payload = { TestPayload.class }) private String testFieldWithPayload; // Test method with CustomSize annotation @CustomSize(minKey = "method.min", maxKey = "method.max") public String testMethod() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.2K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/url/-Url.kt
* @param charset which charset to use, null equals UTF-8. */ internal fun String.canonicalizeWithCharset( pos: Int = 0, limit: Int = length, encodeSet: String, alreadyEncoded: Boolean = false, strict: Boolean = false, plusIsSpace: Boolean = false, unicodeAllowed: Boolean = false, charset: Charset? = null, ): String { var codePoint: Int var i = pos while (i < limit) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 7.3K bytes - Viewed (0) -
utils/tests/models.go
gorm.Model UserID sql.NullInt64 Number string } type Pet struct { gorm.Model UserID *uint Name string Toy Toy `gorm:"polymorphic:Owner;"` } type Toy struct { gorm.Model Name string OwnerID string OwnerType string } type Tools struct { gorm.Model Name string CustomID string Type string } type Company struct { ID int
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Fri Dec 15 08:36:08 UTC 2023 - 2.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java
protected Map<String, String> propertyMap = new HashMap<>(); /** Map of HTML tag names to attribute names for extracting child URLs. */ protected Map<String, String> childUrlRuleMap = new LinkedHashMap<>(); /** Default character encoding to use when none is specified. */ protected String defaultEncoding; /** Number of bytes to read from input stream to determine character set encoding.
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 28.5K bytes - Viewed (0)