Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for nosuffix (0.04 sec)

  1. src/main/java/org/codelibs/fess/job/ExecJob.java

        }
    
        /**
         * Sets the log suffix for this job execution.
         * The suffix is trimmed and whitespace is replaced with underscores.
         *
         * @param logSuffix the suffix to append to log file names
         * @return this ExecJob instance for method chaining
         */
        public ExecJob logSuffix(final String logSuffix) {
            this.logSuffix = logSuffix.trim().replaceAll("\\s", "_");
            return this;
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/ProtocolHelper.java

        private static final Logger logger = LogManager.getLogger(ProtocolHelper.class);
    
        /** Array of supported web protocols with colon suffix (e.g., "http:", "https:") */
        protected String[] webProtocols = StringUtil.EMPTY_STRINGS;
    
        /** Array of supported file protocols with colon suffix (e.g., "file:", "ftp:") */
        protected String[] fileProtocols = StringUtil.EMPTY_STRINGS;
    
        /**
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Dec 12 13:58:40 UTC 2025
    - 12.4K bytes
    - Viewed (1)
  3. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/s3/S3ClientTest.java

                    // Verify the prefix is correct
                    assertEquals("crawler-S3Client-", prefix);
                    assertEquals("Temp file suffix should be '.out'", ".out", suffix);
                    assertNull("Directory should be null", directory);
                    return super.createTempFile(prefix, suffix, directory);
                }
            };
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 07:57:44 UTC 2025
    - 20.5K bytes
    - Viewed (0)
  4. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/storage/StorageClientTest.java

                @Override
                protected java.io.File createTempFile(String prefix, String suffix, java.io.File directory) {
                    // Verify the prefix is correct
                    assertTrue("Temp file prefix should be 'crawler-StorageClient-'", prefix.equals("crawler-StorageClient-"));
                    assertEquals("Temp file suffix should be '.out'", ".out", suffix);
                    assertNull("Directory should be null", directory);
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 20.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/lang/StringUtil.java

        }
    
        /**
         * Removes the suffix from the string if it is present.
         *
         * @param text
         *            The text
         * @param suffix
         *            The suffix to remove
         * @return The resulting string
         */
        public static final String trimSuffix(final String text, final String suffix) {
            if (text == null) {
                return null;
            }
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat Nov 22 11:21:59 UTC 2025
    - 21.5K bytes
    - Viewed (0)
  6. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/gcs/GcsClientTest.java

                @Override
                protected java.io.File createTempFile(String prefix, String suffix, java.io.File directory) {
                    // Verify the prefix is correct
                    assertTrue("Temp file prefix should be 'crawler-GcsClient-'", prefix.equals("crawler-GcsClient-"));
                    assertEquals("Temp file suffix should be '.out'", ".out", suffix);
                    assertNull("Directory should be null", directory);
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 08:38:29 UTC 2025
    - 19.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/SystemHelper.java

         *
         * @param prefix The prefix for the file name.
         * @param suffix The suffix for the file name.
         * @return The created temporary file.
         * @throws IORuntimeException if the file cannot be created.
         */
        public File createTempFile(final String prefix, final String suffix) {
            try {
                final File file = File.createTempFile(prefix, suffix);
                file.setReadable(false, false);
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 08:30:43 UTC 2025
    - 36.6K bytes
    - Viewed (0)
  8. src/main/resources/fess_message_tr.properties

    # ----------------------------------------------------------
    # Lasta Taglib
    # ------------
    errors.header = <ul class="has-error">
    errors.footer = </ul>
    errors.prefix = <li><i class="fa fa-exclamation-circle"></i>
    errors.suffix = </li>
    # ----------------------------------------------------------
    # Javax Validator
    # ---------------
    constraints.AssertFalse.message = {item} yanlış olmalıdır.
    constraints.AssertTrue.message = {item} doğru olmalıdır.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 07 21:12:48 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  9. src/main/resources/fess_message_pl.properties

    # ----------------------------------------------------------
    # Lasta Taglib
    # ------------
    errors.header = <ul class="has-error">
    errors.footer = </ul>
    errors.prefix = <li><i class="fa fa-exclamation-circle"></i>
    errors.suffix = </li>
    # ----------------------------------------------------------
    # Javax Validator
    # ---------------
    constraints.AssertFalse.message = {item} musi być fałszywe.
    constraints.AssertTrue.message = {item} musi być prawdziwe.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java

            }
        }
    
        /**
         * Merges response data from the crawler into the original data map.
         * Handles special ".overwrite" suffix fields by removing the suffix and overwriting the base field.
         *
         * @param dataMap the original data map to merge into
         * @param responseDataMap the response data map from the crawler
         */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 29.7K bytes
    - Viewed (3)
Back to top