Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 802 for commas (0.03 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/main/java/org/codelibs/fess/job/PythonJob.java

        }
    
        /**
         * Adds a single command-line argument to pass to the Python script.
         *
         * @param value the argument value to add
         * @return this PythonJob instance for method chaining
         */
        public PythonJob arg(final String value) {
            argList.add(value);
            return this;
        }
    
        /**
         * Adds multiple command-line arguments to pass to the Python script.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/testing/ArbitraryInstances.java

    import com.google.common.base.Defaults;
    import com.google.common.base.Equivalence;
    import com.google.common.base.Joiner;
    import com.google.common.base.Predicate;
    import com.google.common.base.Predicates;
    import com.google.common.base.Splitter;
    import com.google.common.base.Stopwatch;
    import com.google.common.base.Ticker;
    import com.google.common.collect.BiMap;
    import com.google.common.collect.ClassToInstanceMap;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 17:42:14 UTC 2025
    - 20.9K bytes
    - Viewed (0)
Back to top