- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 207 for host1 (0.05 sec)
-
src/test/java/org/codelibs/fess/helper/RelatedContentHelperTest.java
testData.add(createRelatedContent("term1", "Content for host2", "host2")); testData.add(createRelatedContent("term2", "Content for default", "")); mockBhv.setTestData(testData); int count = relatedContentHelper.load(); assertEquals(3, count); // Three virtual host keys: "host1", "host2", "" }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 14.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/DuplicateHostHelperTest.java
helper.duplicateHostList = new ArrayList<>(); DuplicateHost host1 = new DuplicateHost(); host1.setRegularName("www.example.com"); host1.setDuplicateHostName("example.com"); helper.duplicateHostList.add(host1); DuplicateHost host2 = new DuplicateHost(); host2.setRegularName("secure.example.com"); host2.setDuplicateHostName("www.example.com");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 6.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/RelatedQueryHelperTest.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 16.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/SystemHelperTest.java
} }); List<Path> fileList = systemHelper.refreshDesignJspFiles(); assertEquals(0, fileList.size()); virtualHostList.add(new Tuple3<>("abc.example.com", "8080", "host1")); fileList = systemHelper.refreshDesignJspFiles(); assertEquals(0, fileList.size()); systemHelper.addDesignJspFileName("xxx", "yyy.jsp");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 28.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/EditForm.java
import jakarta.validation.constraints.Size; /** * Form class for editing duplicate host configurations in the admin interface. * This form extends CreateForm to include fields necessary for updating existing duplicate host entries, * 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. * */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.4K bytes - Viewed (0) -
okhttp-dnsoverhttps/src/main/kotlin/okhttp3/dnsoverhttps/DnsOverHttps.kt
private fun buildBootstrapClient(builder: Builder): Dns { val hosts = builder.bootstrapDnsHosts return if (hosts != null) { BootstrapDns(builder.url!!.host, hosts) } else { builder.systemDns } } internal fun isPrivateHost(host: String): Boolean = PublicSuffixDatabase.get().getEffectiveTldPlusOne(host) == null }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat May 10 11:15:14 UTC 2025 - 8.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java
return relatedQueryMap.size(); } /** * Extracts the virtual host key from a RelatedQuery entity. * If the virtual host is blank or null, returns an empty string. * * @param entity the RelatedQuery entity to extract the host key from * @return the virtual host key, or empty string if blank or null */ protected String getHostKey(final RelatedQuery entity) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/AdminDuplicatehostAction.java
/** * Displays the initial duplicate host management page. * * @param form the search form * @return HTML response for the duplicate host list page */ @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse index(final SearchForm form) { return asListHtml(); } /** * Displays the duplicate host list with pagination. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 16.3K bytes - Viewed (0) -
src/main/resources/fess_label_pl.properties
labels.webauth_configuration=Uwierzytelnianie web labels.webauth_list_hostname=Nazwa hosta labels.webauth_list_web_crawling_config=Nazwa konfiguracji labels.webauth_any=Dowolny labels.webauth_create_web_config=Utwórz nową konfigurację web labels.webauth_title_details=Uwierzytelnianie web labels.webauth_hostname=Nazwa hosta labels.webauth_port=Port labels.webauth_realm=Obszar labels.webauth_scheme=Schemat
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 44.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/VirtualHostHelper.java
return value; }); } /** * Processes virtual host configuration by applying a function to the matched virtual host key. * * @param <T> The return type of the function * @param func The function to apply to the virtual host key * @param defaultValue The default value to return if no virtual host matches * @return The result of applying the function, or the default value */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.2K bytes - Viewed (0)