- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for addresses1 (0.05 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/http/conn/IdnDnsResolverTest.java
// Test IPv6 loopback address with brackets String host = "[::1]"; InetAddress[] addresses = resolver.resolve(host); assertNotNull(addresses); assertTrue(addresses.length > 0); // IPv6 loopback can be represented as ::1 or 0:0:0:0:0:0:0:1 String hostAddress = addresses[0].getHostAddress(); assertTrue(hostAddress.contains(":"));Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 06 07:24:43 UTC 2025 - 3.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/conn/IdnDnsResolver.java
/** * Resolves the given host name to an array of IP addresses. * The host name is first converted to ASCII using IDN before resolution. * IPv6 addresses in bracket notation (e.g., [::1] or [2001:db8::1]) are * handled specially by removing the brackets before resolution. * * @param host the host name to resolve * @return an array of IP addresses for the hostRegistered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 06 07:24:43 UTC 2025 - 3.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/IpAddressUtil.java
*/ package org.codelibs.fess.util; import java.net.Inet6Address; import java.net.InetAddress; /** * Utility class for handling IP addresses, particularly IPv6 addresses in URLs. * This class provides methods to properly format IPv6 addresses for use in URLs * by adding brackets where necessary. */ public final class IpAddressUtil { /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 06 08:31:03 UTC 2025 - 9.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/taglib/FessFunctions.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 25.4K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java
* Search logs from these bots will be automatically removed. */ @Size(max = 10000) public String purgeByBots; /** * Email addresses to receive system notifications. * Multiple addresses can be specified, separated by commas. */ @Size(max = 1000) public String notificationTo; /** * Enable or disable search suggestions based on search logs.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 10.6K bytes - Viewed (0)