- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 2,077 for commas (0.03 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/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) -
src/main/java/org/codelibs/fess/query/QueryProcessor.java
import jakarta.annotation.PostConstruct; /** * Query processor component that handles query filters and commands. * This class provides a pipeline for processing Lucene queries by applying * a chain of filters and executing registered query commands. * * <p>The processor maintains a map of query commands indexed by query class names * and a list of filters that are applied in order during query processing.</p> */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java
import jakarta.annotation.PostConstruct; /** * Command-based thumbnail generator that executes external commands to create thumbnails. * Uses external tools through command execution to generate thumbnail images from documents. */ public class CommandGenerator extends BaseThumbnailGenerator { private static final Logger logger = LogManager.getLogger(CommandGenerator.class); /** List of command strings to execute for thumbnail generation. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Fri Jul 18 14:34:06 UTC 2025 - 14.7K bytes - Viewed (0)