- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 2,130 for commas (0.04 sec)
-
src/test/java/org/codelibs/fess/util/KuromojiCSVUtilTest.java
// Text with commas input = "text,with,commas"; result = KuromojiCSVUtil.quoteEscape(input); assertEquals("\"text,with,commas\"", result); // Text with both quotes and commas input = "text \"with\" quotes, and commas"; result = KuromojiCSVUtil.quoteEscape(input); assertEquals("\"text \"\"with\"\" quotes, and commas\"", result); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 18.7K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Headers.kt
* * This class tracks header values line-by-line. A field with multiple comma- separated values on * the same line will be treated as a field with a single value by this class. It is the caller's * responsibility to detect and split on commas if their field permits multiple values. This * simplifies use of single-valued fields whose values routinely contain commas, such as cookies or * dates. *
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue May 27 14:51:25 UTC 2025 - 11.5K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http/HttpHeaders.kt
if (!skipCommasAndWhitespace() && !exhausted()) return // Expected ',' or EOF. } result.add(Challenge(schemeName, parameters)) } } /** Returns true if any commas were skipped. */ private fun Buffer.skipCommasAndWhitespace(): Boolean { var commaFound = false loop@ while (!exhausted()) { when (this[0]) { ','.code.toByte() -> { // Consume ','.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon May 05 16:01:00 UTC 2025 - 7.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java
*/ @Size(max = 10000) public String purgeByBots; /** * Email addresses to receive system notifications. * Multiple addresses can be specified, separated by commas. */ @Size(max = 1000) public String notificationTo; /** * Enable or disable search suggestions based on search logs. * When enabled, suggestions are generated from previous searches.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/PrunedTagTest.java
// Test whitespace only tags = PrunedTag.parse(" "); assertEquals(0, tags.length); // Test commas only tags = PrunedTag.parse(",,,"); assertEquals(0, tags.length); // Test mixed whitespace and commas tags = PrunedTag.parse(" , , , "); assertEquals(0, tags.length); } public void test_parse_invalidFormats() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 21K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/common/common.jsp
Shinsuke Sugaya <******@****.***> 1703312328 +0900
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Dec 23 06:18:48 UTC 2023 - 446 bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.8.md
spec with the `--serviceaccount` flag. - `kubectl proxy` now correctly handles the `exec`, `attach`, and `portforward` commands. You must pass `--disable-filter` to the command to allow these commands. - Added `cronjobs.batch` to "all", so that `kubectl get all` returns them. - Added flag `--include-uninitialized` to `kubectl annotate`, `apply`, `edit-last-applied`,
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Tue Feb 20 15:45:02 UTC 2024 - 312.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/auth/chain/CommandChain.java
} /** * Executes an external command with the given parameters. * @param commands The command array to execute. * @param username The username parameter for the command. * @param password The password parameter for the command. * @return The exit code of the executed command. */ protected int executeCommand(final String[] commands, final String username, final String password) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.1K bytes - Viewed (0) -
README.md
CoreLib supports multiple logging frameworks. Configure your preferred logger: ```java // Use with SLF4J (add slf4j-api dependency) Logger logger = Logger.getLogger(MyClass.class); // Use with Commons Logging (add commons-logging dependency) Logger logger = Logger.getLogger(MyClass.class); // Use with Java Util Logging (built-in) Logger logger = Logger.getLogger(MyClass.class.getName()); ```
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sun Aug 31 02:56:02 UTC 2025 - 12.7K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/WrappingExecutorService.java
* the License. */ package com.google.common.util.concurrent; import static com.google.common.base.Preconditions.checkNotNull; import static com.google.common.base.Throwables.throwIfUnchecked; import static com.google.common.util.concurrent.Platform.restoreInterruptIfIsInterruptedException; import static java.util.concurrent.Executors.callable; import com.google.common.annotations.GwtIncompatible;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 11 18:52:30 UTC 2025 - 5.4K bytes - Viewed (0)