- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 696 for B_value (0.11 sec)
-
src/test/java/org/codelibs/fess/helper/ActivityHelperTest.java
public void test_print_parameterSorting() { activityHelper.useEcsFormat = false; Map<String, String> params = new HashMap<>(); params.put("z_param", "z_value"); params.put("a_param", "a_value"); params.put("m_param", "m_value"); activityHelper.print("test", OptionalThing.empty(), params); String result = localLogMsg.get();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 18.7K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/AtomicLongMap.java
Long result = map.compute( key, (k, value) -> updaterFunction.applyAsLong(value == null ? 0L : value.longValue())); return requireNonNull(result); } /** * Updates the value currently associated with {@code key} with the specified function, and * returns the old value. If there is not currently a value associated with {@code key}, the * function is applied to {@code 0L}. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 11.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/KuromojiCSVUtilTest.java
// Spaces in quoted values value = "\" spaced value \",\" another \""; result = KuromojiCSVUtil.parse(value); assertEquals(2, result.length); assertEquals(" spaced value ", result[0]); assertEquals("\" another \"", result[1]); // Tab characters - quoted value keeps quotes value = "tab\tvalue,\"quoted\ttab\""; result = KuromojiCSVUtil.parse(value);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 18.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java
* * @param value the client rule configuration string * @return a list of pairs containing client names and their corresponding compiled patterns */ protected List<Pair<String, Pattern>> getClientRuleList(final String value) { if (StringUtil.isBlank(value)) { return Collections.emptyList(); } return split(value, ",").get(stream -> stream.map(String::trim)//
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 19.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/UnsignedLongsTest.java
}; int[] bases = {2, 5, 7, 8, 10, 16}; for (int base : bases) { for (String x : tests) { BigInteger xValue = new BigInteger(x, 16); long xLong = xValue.longValue(); // signed assertThat(UnsignedLongs.toString(xLong, base)).isEqualTo(xValue.toString(base)); } } } public void testJoin() { assertThat(UnsignedLongs.join(",")).isEmpty();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 12.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/IndexingHelper.java
* @param id the document ID to update * @param field the field name to update * @param value the new value for the field * @return true if the update was successful, false otherwise */ public boolean updateDocument(final SearchEngineClient searchEngineClient, final String id, final String field, final Object value) { final FessConfig fessConfig = ComponentUtil.getFessConfig();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 26.1K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/RequestTest.kt
builder.header("", "Value") } assertFailsWith<IllegalArgumentException> { builder.addHeader("", "Value") } } @Test fun headerAllowsTabOnlyInValues() { val builder = Request.Builder() builder.header("key", "sample\tvalue") assertFailsWith<IllegalArgumentException> { builder.header("sample\tkey", "value") } } @Test
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 16 09:39:51 UTC 2025 - 19K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/DocumentUtil.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.2K bytes - Viewed (0) -
module.xml
<antcall target="install.module"> <param name="repo.url" value="${maven.release.repo.url}" /> <param name="module.groupId" value="org/codelibs/opensearch/module" /> <param name="module.name.prefix" value="" /> <param name="module.name" value="analysis-common" /> <param name="module.version" value="${opensearch.version}" /> <param name="module.zip.version" value="${opensearch.version}" /> </antcall> <!-- geo -->
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 3.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/ParameterUtilTest.java
String value; String expect; value = null; expect = ""; assertEquals(expect, ParameterUtil.encrypt(value)); value = ""; expect = ""; assertEquals(expect, ParameterUtil.encrypt(value)); value = "\n"; expect = ""; assertEquals(expect, ParameterUtil.encrypt(value)); value = "=";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 22.6K bytes - Viewed (0)