- Sort Score
- Result 10 results
- Languages All
Results 1431 - 1440 of 1,854 for constructed (0.06 sec)
-
src/test/java/org/codelibs/curl/CurlRequestTest.java
assertNull(request.proxy()); assertNull(request.body()); } @Test public void testConstructorWithNullUrl() { // URL can be null with the two-argument constructor CurlRequest request = new CurlRequest(Method.DELETE, null); assertEquals(Method.DELETE, request.method()); assertEquals("UTF-8", request.encoding());
Registered: Sat Dec 20 09:13:53 UTC 2025 - Last Modified: Mon Nov 24 03:10:07 UTC 2025 - 20.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/Suggester.java
* It includes methods for creating, refreshing, and switching indices, as well as for * retrieving popular words and indexing suggestions. * * <p>Constructor: * <ul> * <li>{@link #Suggester(Client, SuggestSettings, ReadingConverter, ReadingConverter, Normalizer, SuggestAnalyzer, ExecutorService)}: Initializes a new instance of the Suggester class.</li> * </ul> *
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 21.6K bytes - Viewed (3) -
src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java
import jakarta.servlet.http.HttpServletRequest; /** * Admin action for Search List. * */ public class AdminSearchlistAction extends FessAdminAction { /** * Default constructor. */ public AdminSearchlistAction() { super(); } /** Role name for admin search list operations */ public static final String ROLE = "admin-searchlist";Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 13:56:35 UTC 2025 - 22.7K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java
* coordinating multiple crawler threads and handling indexing operations. */ public class WebFsIndexHelper { /** * Default constructor. */ public WebFsIndexHelper() { // Default constructor } private static final Logger logger = LogManager.getLogger(WebFsIndexHelper.class); private static final String DISABLE_URL_ENCODE = "#DISABLE_URL_ENCODE";Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 25K bytes - Viewed (0) -
src/main/java/org/codelibs/curl/CurlResponse.java
* The CurlResponse class represents the response from a cURL request. * It implements the Closeable interface to allow proper resource management. */ public class CurlResponse implements Closeable { /** * Constructs a new CurlResponse. */ public CurlResponse() { // nothing } /** * The HTTP status code of the response. */ private int httpStatusCode; /**Registered: Sat Dec 20 09:13:53 UTC 2025 - Last Modified: Mon Nov 24 03:10:07 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/timer/SystemMonitorTarget.java
* JVM, and search engine. */ public class SystemMonitorTarget extends MonitorTarget { private static final Logger logger = LogManager.getLogger(SystemMonitorTarget.class); /** * Constructs a new system monitor target. */ public SystemMonitorTarget() { super(); } @Override public void expired() { final StringBuilder buf = new StringBuilder(1000);Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/ApiExtractor.java
private final Map<String, Object> httpClientPropertyMap = new HashMap<>(); /** List of request headers */ private final List<Header> requestHeaderList = new ArrayList<>(); /** * Constructs a new ApiExtractor. */ public ApiExtractor() { // NOP } /** * Initializes the API extractor, setting up the HTTP client and configuration.
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 12.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoDescriptorCreator.java
plugin.setGroupId(tok[0]); plugin.setArtifactId(tok[1]); plugin.setVersion(tok[2]); goal.append(tok[3]); // This won't be valid, but it constructs something easy to read in the error message for (int idx = 4; idx < tok.length; idx++) { goal.append(":").append(tok[idx]); } } else if (numTokens == 3) {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Mar 25 09:45:07 UTC 2025 - 11.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/dtyp/SecurityDescriptorTest.java
@Test @DisplayName("Test default constructor creates empty SecurityDescriptor") void testDefaultConstructor() { SecurityDescriptor sd = new SecurityDescriptor(); assertEquals(0, sd.getType()); assertNull(sd.getAces()); assertNull(sd.getOwnerUserSid()); assertNull(sd.getOwnerGroupSid()); } @Test @DisplayName("Test constructor with buffer decodes SecurityDescriptor")Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.6K bytes - Viewed (0) -
src/test/java/jcifs/netbios/NameServicePacketTest.java
@Override int readRDataWireFormat(byte[] src, int srcIndex) { // For testing purposes, we can return a fixed length or mock behavior // Create a dummy Name object for NbtAddress constructor Name dummyName = new Name(config, "DUMMY_NAME", 0, null); addrEntry[addrIndex] = new NbtAddress(dummyName, 0, false, NbtAddress.B_NODE); return 6; // NbtAddress is 6 bytes } }Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.9K bytes - Viewed (0)