Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 41 - 50 of 72 for isto (0.41 seconds)

  1. src/main/java/org/codelibs/fess/util/QueryStringBuilder.java

            }
            return newValue;
        }
    
        /**
         * Builds the complete query string from the configured parameters.
         * Combines base query, extra queries, field filters, and sort field into a single query string.
         *
         * @return the complete formatted query string
         */
        public String build() {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 12.3K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/util/LogNotificationAppender.java

    import org.codelibs.fess.helper.LogNotificationHelper;
    import org.codelibs.fess.helper.LogNotificationHelper.LogNotificationEvent;
    
    /**
     * Custom Log4j2 Appender that captures log events into a buffer for notification purposes.
     */
    @Plugin(name = "LogNotificationAppender", category = Core.CATEGORY_NAME, elementType = Appender.ELEMENT_TYPE, printObject = true)
    public class LogNotificationAppender extends AbstractAppender {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 6K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/util/IpAddressUtil.java

                    expanded.append(rightPart);
                }
                expandedAddress = expanded.toString();
            } else {
                expandedAddress = ipv6Address;
            }
    
            // Split address into parts
            final String[] parts = expandedAddress.split(":");
            if (parts.length != 8) {
                // Not a standard IPv6 address, return as-is
                return ipv6Address;
            }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 06 08:31:03 GMT 2025
    - 9.4K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java

                    logger.info("GSA XML import completed successfully: fileName={}", fileName);
                }
            } catch (final Exception e) {
                logger.warn("Failed to insert GSA XML data into database: fileName={}, error={}", fileName, e.getMessage(), e);
            } finally {
                deleteTempFile(tempFile);
            }
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Nov 24 02:07:40 GMT 2025
    - 32.1K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/dict/stopwords/StopwordsFileTest.java

        }
    
        private String getTestContent() {
            return "# This is a comment\n" + "the\n" + "and\n" + "a\n" + "is\n" + "to\n";
        }
    
        private void loadTestData() {
            // Load data into stopwordsFile
            try (InputStream is = new ByteArrayInputStream(getTestContent().getBytes(StandardCharsets.UTF_8))) {
                stopwordsFile.reload(null, is);
            } catch (IOException e) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 18K bytes
    - Click Count (0)
  6. src/main/assemblies/files/service.bat

    :installed
    echo The service '%SERVICE_ID%' has been installed.
    goto:eof
    
    :err
    echo JAVA_HOME environment variable must be set!
    pause
    goto:eof
    
    rem ---
    rem Function for converting Xm[s|x] values into MB which Commons Daemon accepts
    rem ---
    :convertxm
    set value=%~1
    rem extract last char (unit)
    set unit=%value:~-1%
    rem assume the unit is specified
    set conv=%value:~0,-1%
    
    if "%unit%" == "k" goto kilo
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 6K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/job/LogNotificationJob.java

            }
    
            return "Sent log notifications: " + events.size() + " events.";
        }
    
        /**
         * Formats a list of log notification events into a human-readable summary string.
         *
         * @param events the list of log notification events
         * @param maxDetailsLength the maximum length of the details string
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 9.4K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/helper/DataIndexHelper.java

     * Helper class for managing data crawling operations in Fess.
     * This class coordinates the execution of data store crawling processes,
     * managing multiple concurrent crawling threads and handling the indexing
     * of crawled documents into the search engine.
     *
     * <p>The DataIndexHelper supports:</p>
     * <ul>
     *   <li>Concurrent crawling of multiple data configurations</li>
     *   <li>Thread pool management for crawler execution</li>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 19K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

    import org.xml.sax.SAXException;
    import org.xml.sax.helpers.DefaultHandler;
    
    /**
     * Parser for Google Search Appliance (GSA) configuration files.
     * This SAX-based parser reads GSA XML configuration files and converts them into
     * Fess configuration objects including web crawling configurations, file crawling
     * configurations, and label types for access control.
     *
     * <p>The parser handles the following GSA configuration elements:
     * <ul>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 21.6K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java

                    messages.addErrorsCrudInvalidMode(GLOBAL, String.valueOf(expectedMode), String.valueOf(crudMode));
                }, errorHook);
            }
        }
    
        /**
         * Encodes permission strings into an array.
         *
         * @param permissionsText the permissions text (newline-separated)
         * @return encoded permission array
         */
        protected static String[] encodePermissions(final String permissionsText) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 13:57:12 GMT 2026
    - 10.9K bytes
    - Click Count (0)
Back to Top