Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for site3 (0.01 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/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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  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. src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist_edit.jsp

                                        <label for="doc.site" class="col-sm-3 text-sm-right col-form-label">site</label>
                                        <div class="col-sm-9">
                                            <la:errors property="doc.site"/>
                                            <la:text styleId="doc.site" property="doc.site" styleClass="form-control"/>
                                        </div>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 24.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/query/QueryFieldConfig.java

        /** Field name for OpenSearch document score */
        public static final String DOC_SCORE_FIELD = "_score";
    
        /** Field name for site information in search results */
        public static final String SITE_FIELD = "site";
    
        /** Field name for URL-based search queries */
        public static final String INURL_FIELD = "inurl";
    
        /** Sort value for score-based sorting */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  10. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Cookie.kt

       */
      @get:JvmName("hostOnly") val hostOnly: Boolean,
      /**
       * Returns a string describing whether this cookie is sent for cross-site calls.
       *
       * Two URLs are on the same site if they share a [top private domain][HttpUrl.topPrivateDomain].
       * Otherwise, they are cross-site URLs.
       *
       * When a URL is requested, it may be in the context of another URL.
       *
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon May 05 16:01:00 UTC 2025
    - 23.1K bytes
    - Viewed (0)
Back to top