Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for site1 (0.28 sec)

  1. src/test/java/org/codelibs/fess/helper/VirtualHostHelperTest.java

                            new Tuple3<>("Custom-Header", "custom.value", "site3") };
                }
            });
    
            String[] paths = virtualHostHelper.getVirtualHostPaths();
            assertNotNull(paths);
            assertEquals(3, paths.length);
            assertEquals("/site1", paths[0]);
            assertEquals("/site2", paths[1]);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/RelatedQueryHelperTest.java

            testData.add(createRelatedQuery("search", new String[] { "find", "lookup" }, "site1.com"));
            testData.add(createRelatedQuery("search", new String[] { "query", "discover" }, "site2.com"));
            mockBhv.setTestData(testData);
    
            relatedQueryHelper.load();
    
            // Mock virtual host helper to return site1.com
            virtualHostHelper = new VirtualHostHelper() {
                @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 16.3K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java

            virtualHostList.add("site1");
            dataMap.put("virtual_host", virtualHostList);
    
            assertEquals(
                    "87e7e4a2d5e2e24147ffd8820b70877a4cee15abdd48f7702e8233f0d17d7369f6d861124f106b541e6652a3e7a94cd51a332a2500fd065de6920559458cd3de",
                    crawlingInfoHelper.generateId(dataMap));
    
            virtualHostList.add("site2");
    
            assertEquals(
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/cors/CorsHandlerTest.java

        public void test_multipleProcessCalls() {
            HttpServletRequest request = createMockRequest();
            HttpServletResponse response = createMockResponse();
    
            String[] origins = { "https://site1.com", "https://site2.com", "https://site3.com" };
    
            for (String origin : origins) {
                processCalled = false;
                corsHandler.process(origin, request, response);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 25.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java

         * Gets the maximum allowed length for site strings from configuration.
         *
         * @return the maximum site length as configured
         */
        default int getMaxSiteLength() {
            return getFessConfig().getCrawlerDocumentMaxSiteLengthAsInteger();
        }
    
        /**
         * Abbreviates a site string to the maximum allowed length if configured.
         *
         * @param value the site string to abbreviate
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/net/InternetDomainNameTest.java

              "pvt.k12.ca.us",
              "site.ac.jp",
              "site.ad.jp",
              "site.cc",
              "site.ed.jp",
              "site.ee",
              "site.fi",
              "site.fm",
              "site.geo.jp",
              "site.go.jp",
              "site.gr",
              "site.gr.jp",
              "site.jp",
              "site.lg.jp",
              "site.ma",
              "site.mk",
              "site.ne.jp",
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 17.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/util/ResourceUtil.java

        }
    
        /**
         * Gets the path to site-specific files directory.
         *
         * @param names the path components to append to the site directory
         * @return the Path object pointing to the site directory
         */
        public static Path getSitePath(final String... names) {
            return getPath("WEB-INF/", "site", names);
        }
    
        /**
         * Gets the path to plugin files directory.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  8. README.md

    *[Fess Site Search](https://github.com/codelibs/fess-site-search)* is a free alternative to [Google Site Search](https://enterprise.google.com/search/products/gss.html). For more details, see the [FSS JS Generator documentation](https://fss-generator.codelibs.org/docs/manual).
    
    ## Website
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 06:34:32 UTC 2025
    - 7.2K bytes
    - Viewed (2)
  9. .gitignore

    /target/
    /work/
    /bin/
    /mydbflute/
    /solr/data/
    /src/main/webapp/WEB-INF/classes/
    /src/main/webapp/WEB-INF/lib/
    /src/main/webapp/WEB-INF/site/
    /src/main/webapp/WEB-INF/plugin/*
    !/src/main/webapp/WEB-INF/plugin/.keep
    /src/main/webapp/WEB-INF/env/crawler/lib/
    /src/main/webapp/WEB-INF/env/suggest/lib/
    /src/main/webapp/WEB-INF/env/thumbnail/lib/
    /src/main/webapp/WEB-INF/thumbnails/
    /src/main/webapp/jar/
    /dbflute_fess/extlib/*
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/EditForm.java

     * including tracking information for optimistic locking and audit trails.
     * Duplicate hosts are used to define which domains should be treated as the same site for crawling purposes.
     *
     */
    public class EditForm extends CreateForm {
    
        /**
         * Creates a new EditForm instance.
         */
        public EditForm() {
            super();
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
Back to top