Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for gsa (0.01 sec)

  1. src/main/java/org/codelibs/fess/helper/QueryHelper.java

        }
    
        /**
         * Processes search preferences specifically for GSA (Google Search Appliance) compatible requests.
         * This method determines the preference value based on configuration and query content.
         *
         * @param req the HTTP servlet request
         * @param query the search query string
         * @return the preference value for GSA search requests, or null if not applicable
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/pager/SearchLogPager.java

        public String userSessionId;
    
        /** Time range filter for search logs (format: "yyyy-MM-dd HH:mm - yyyy-MM-dd HH:mm"). */
        public String requestedTimeRange;
    
        /** Access type filter for search logs (web, json, gsa, admin, other). */
        public String accessType;
    
        /**
         * Default constructor for creating a new SearchLogPager instance.
         */
        public SearchLogPager() {
            // Default constructor
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/util/GsaConfigParserTest.java

            LabelType[] labelTypes = parser.getLabelTypes();
            assertEquals(3, labelTypes.length);
        }
    
        public void test_escape() {
            // https://www.google.com/support/enterprise/static/gsa/docs/admin/70/gsa_doc_set/admin_crawl/url_patterns.html#1076127
            assertEscapePattern("", "# Test");
            assertEscapePattern(".*\\Q!/\\E.*", "!/");
            assertEscapePattern("\\Qindex.html\\E", "index.html");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 11.4K bytes
    - Viewed (0)
Back to top