- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 587 for Request (0.12 sec)
-
src/main/java/org/codelibs/fess/suggest/request/Request.java
*/ public abstract class Request<T extends Response> { /** * Constructs a new request. */ public Request() { // nothing } /** * Executes the request. * @param client The OpenSearch client. * @return A Promise that will be resolved with the response or rejected with an error. */ public Deferred<T>.Promise execute(final Client client) {
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Sun Nov 23 11:21:40 UTC 2025 - 2.3K bytes - Viewed (0) -
src/main/java/jcifs/util/transport/Request.java
/** * Checks if this is a cancel request. * * @return whether this is a cancel request */ boolean isCancel(); /** * Gets the next request in the chain. * * @return chained request */ Request getNext(); /** * Gets the response for this request. * * @return the response for this request */ Response getResponse();Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/Request.java
*/ package jcifs.internal; import jcifs.CIFSContext; /** * Generic interface for typed SMB request messages. * Extends the common request interface with type-safe response handling, * allowing requests to specify their expected response type. * * @author mbechler * @param <T> response type */ public interface Request<T extends CommonServerMessageBlockResponse> extends CommonServerMessageBlockRequest { /**
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/transport/Request.java
package jcifs.smb1.util.transport; /** * Marker interface for transport layer request objects. * Represents a request that can be sent through the SMB1 transport layer. */ public interface Request {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 205 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/request/RequestBuilder.java
/** The request being built. */ protected Req request; /** * Constructor for RequestBuilder. * @param client The OpenSearch client. * @param request The request instance. */ public RequestBuilder(final Client client, final Req request) { this.client = client; this.request = request; } /** * Executes the request.Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 1.6K bytes - Viewed (0) -
src/test/java/org/codelibs/curl/CurlRequestTest.java
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()); assertEquals(1024 * 1024, request.threshold());
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/test/java/org/codelibs/curl/CurlTest.java
// ## Act ## final CurlRequest request1 = Curl.get("http://example.com"); final CurlRequest request2 = Curl.get("http://example.com"); // ## Assert ## assertNotNull(request1); assertNotNull(request2); assertTrue("Factory methods should return different instances", request1 != request2); } @TestRegistered: Sat Dec 20 09:13:53 UTC 2025 - Last Modified: Thu Nov 20 13:34:13 UTC 2025 - 16.3K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/client/FesenClient.java
/** * Executes an index request. * * @param request The index request. * @return Future for the index response. */ @Override public ActionFuture<IndexResponse> index(final IndexRequest request) { return client.index(request); } /** * Executes an index request asynchronously. * * @param request The index request.Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 02:01:26 UTC 2025 - 26.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/RequestData.java
POST, /** HTTP HEAD method. */ HEAD; } /** The HTTP method for this request. */ private Method method; /** The URL for this request. */ private String url; /** The weight/priority of this request (default: 1.0). */ private float weight = 1.0f; /** * Creates a new RequestData instance. */ public RequestData() { super(); }Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java
* * @param request the multi-search request * @return a future for the multi-search response */ @Override public ActionFuture<MultiSearchResponse> multiSearch(final MultiSearchRequest request) { return client.multiSearch(request); } /** * Executes a multi-search request asynchronously with a callback. *Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 122.4K bytes - Viewed (1)