- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 2,677 for aString (1.7 sec)
-
src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java
} final Set<String> matchedLabelSet = labelTypeHelper.getMatchedLabelValueSet(url); if (!matchedLabelSet.isEmpty()) { final Set<String> newLabelSet = new HashSet<>(); final String[] oldLabels = (String[]) dataMap.get(fessConfig.getIndexFieldLabel()); if (oldLabels != null) { for (String label : oldLabels) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 24.5K bytes - Viewed (0) -
guava-tests/test/com/google/common/graph/MapCacheTest.java
{new MapRetrievalCache<String, String>(new HashMap<String, String>())}, {new MapRetrievalCache<String, String>(new TreeMap<String, String>(nullsLast))} }); } @Before public void init() { mapCache.clear(); } @Test public void testKeySetIterator() { mapCache.put("A", "A_value");
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 3.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/OpenIdConnectCredential.java
@Override public String getUserId() { return DocumentUtil.getValue(attributes, "email", String.class); } /** * Gets the user groups. * * @return the user groups */ public String[] getUserGroups() { String[] userGroups = DocumentUtil.getValue(attributes, "groups", String[].class); if (userGroups == null) { userGroups = getDefaultGroupsAsArray();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsLabelType.java
/** createdBy */ protected String createdBy; /** createdTime */ protected Long createdTime; /** excludedPaths */ protected String excludedPaths; /** includedPaths */ protected String includedPaths; /** name */ protected String name; /** permissions */ protected String[] permissions; /** sortOrder */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 8.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/DateConversionUtil.java
return null; } } /** * Converts a pattern string to a plain pattern string without delimiters. * * @param pattern the pattern string * @return the plain pattern string without delimiters */ protected static String toPlainPattern(final String pattern) { final StringBuilder buf = new StringBuilder(pattern.length()); for (int i = 0; i < pattern.length(); ++i) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 19.6K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Headers.kt
* * `Proxy-Authorization` * * `Set-Cookie` */ override fun toString(): String = commonToString() fun toMultimap(): Map<String, List<String>> { val result = TreeMap<String, MutableList<String>>(String.CASE_INSENSITIVE_ORDER) for (i in 0 until size) { val name = name(i).lowercase(Locale.US) var values: MutableList<String>? = result[name] if (values == null) { values = ArrayList(2)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue May 27 14:51:25 UTC 2025 - 11.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/MultisetsCollectionTest.java
@Override protected Multiset<String> create(String[] elements) { return unmodifiableMultiset(LinkedHashMultiset.create(asList(elements))); } @Override public List<String> order(List<String> insertionOrder) { List<String> order = new ArrayList<>(); for (String s : insertionOrder) { int index = order.indexOf(s);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 9.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java
@Override protected void storeQueue(List<Tuple3<String, String, String>> taskList) { // Override to avoid database operations taskList.clear(); } @Override protected String getImageFilename(final Map<String, Object> docMap) { // Override to avoid null pointer issues final String docid = (String) docMap.get("_id"); if (docid == null) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/ca/bs/BsFileConfigCA.java
} } public void scriptedMetric(String name, ConditionOptionCall<ScriptedMetricAggregationBuilder> opLambda) { ScriptedMetricAggregationBuilder builder = regScriptedMetricA(name); if (opLambda != null) { opLambda.callback(builder); } } public void topHits(String name, ConditionOptionCall<TopHitsAggregationBuilder> opLambda) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 144.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/score/LtrQueryRescorerTest.java
return testWindowSize; } }); Map<String, Object> params = new HashMap<>(); params.put("string_param", "test_value"); params.put("int_param", 42); params.put("double_param", 3.14); params.put("boolean_param", true); Map<String, String> nestedMap = new HashMap<>(); nestedMap.put("nested_key", "nested_value");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.5K bytes - Viewed (0)