- Sort Score
- Result 10 results
- Languages All
Results 481 - 490 of 6,105 for strana (0.04 sec)
-
README.md
t -> {} ); ``` ### Add suggest document ```java String[][] readings = new String[2][]; readings[0] = new String[] { "kensaku", "fuga" }; readings[1] = new String[] { "enjin", "fuga" }; String[] tags = new String[] { "tag1", "tag2" }; String[] roles = new String[] { "role1", "role2", "role3" }; suggester.indexer().index(new SuggestItem(new String[] { "検索", "エンジン" }, readings, 1, tags, roles, SuggestItem.Kind.DOCUMENT)); ```
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Jan 19 03:33:49 UTC 2023 - 1.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/service/UrlQueueService.java
void updateSessionId(String oldSessionId, String newSessionId); void add(String sessionId, String url); void insert(QUEUE urlQueue); void delete(String sessionId); void deleteAll(); void offerAll(String sessionId, List<QUEUE> newUrlQueueList); QUEUE poll(String sessionId); void saveSession(String sessionId); boolean visited(QUEUE urlQueue);
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java
} protected String getHostKey(final RelatedQuery entity) { final String key = entity.getVirtualHost(); return StringUtil.isBlank(key) ? StringUtil.EMPTY : key; } public String[] getRelatedQueries(final String query) { final String key = ComponentUtil.getVirtualHostHelper().getVirtualHostKey(); final Map<String, String[]> map = relatedQueryMap.get(key);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.2K bytes - Viewed (0) -
internal/s3select/sql/stringfuncs.go
return "", false } res = parts[1] } return res, true } func dropRune(text string) (res string, ok bool) { r := []rune(text) if len(r) == 0 { return "", false } return string(r[1:]), true } func evalSQLSubstring(s string, startIdx, length int) (res string, err error) { rs := []rune(s) // According to s3 document, if startIdx < 1, it is set to 1. if startIdx < 1 {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Jun 01 21:59:40 UTC 2021 - 4.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java
protected NtlmPasswordAuthenticator ( String userInfo, String defDomain, String defUser, String defPassword ) { this(userInfo, defDomain, defUser, defPassword, null); } /** * @param userInfo */ protected NtlmPasswordAuthenticator ( String userInfo, String defDomain, String defUser, String defPassword, AuthenticationType type ) { String dom = null, user = null, pass = null;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 12:07:20 UTC 2020 - 18.8K bytes - Viewed (0) -
src/test/java/org/codelibs/core/collection/CollectionsUtilTest.java
map = new HashMap<String, String>(); assertThat(CollectionsUtil.isEmpty(map), is(true)); } /** * Test method for * {@link org.codelibs.core.collection.CollectionsUtil#isNotEmpty(java.util.Map)} * . */ @Test public void testIsNotEmptyMapOfQQ() { final HashMap<String, String> map = new HashMap<String, String>(); map.put("key", "value");
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/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 Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 10.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/StringConversionUtil.java
* @return 変換された{@literal String} */ public static String toString(final Object value) { return toString(value, null); } /** * 文字列に変換します。 * * @param value * 変換元のオブジェクト * @param pattern * パターン文字列 * @return 変換された{@literal String} */ public static String toString(final Object value, final String pattern) {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 6.5K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/Options.java
*/ @Nonnull Options interpolate(@Nonnull Collection<Map<String, String>> properties); /** * Emits warning messages if deprecated options are used. * * @param printWriter the string consumer to use for output */ default void warnAboutDeprecatedOptions(@Nonnull ParserRequest request, @Nonnull Consumer<String> printWriter) {} /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Oct 22 14:53:58 UTC 2024 - 6.3K bytes - Viewed (0) -
schema/index_test.go
MemberNumber string `gorm:"index:idx_id,priority:1"` Name7 string `gorm:"index:type"` Name8 string `gorm:"index:,length:10;index:,collate:utf8"` // Composite Index: Flattened structure. Data0A string `gorm:"index:,composite:comp_id0"` Data0B string `gorm:"index:,composite:comp_id0"` // Composite Index: Nested structure. Data1A string `gorm:"index:,composite:comp_id1"` CompIdxLevel1C
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Sun Feb 04 07:49:19 UTC 2024 - 8K bytes - Viewed (0)