- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 468 for Response (0.05 sec)
-
src/test/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsRequestTest.java
indexQueryItems(); PopularWordsResponse response = suggester.popularWords().setSize(10).execute().getResponse(); assertNotNull(response); assertTrue(response.getNum() > 0); assertTrue(response.getTotal() > 0); assertNotNull(response.getWords()); assertNotNull(response.getIndex()); } @Test public void test_setters() throws Exception {
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 6.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/PingResponse.java
/** * Creates a ping response from cluster health response. * * @param response the cluster health response */ public PingResponse(final ClusterHealthResponse response) { status = response.getStatus() == ClusterHealthStatus.RED ? 1 : 0; clusterName = response.getClusterName(); clusterStatus = response.getStatus().toString();Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.4K bytes - Viewed (2) -
src/main/java/jcifs/internal/smb2/rdma/SmbDirectNegotiateResponse.java
response.status = SMBUtil.readInt4(data, idx); idx += 4; response.maxReadWriteSize = SMBUtil.readInt4(data, idx); idx += 4; response.preferredSendSize = SMBUtil.readInt4(data, idx); idx += 4; response.maxReceiveSize = SMBUtil.readInt4(data, idx); idx += 4; response.maxFragmentedSize = SMBUtil.readInt4(data, idx); idx += 4; return response; }
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 9.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/persistent/DurableHandleReconnectResponse.java
// The response structure is empty (0 bytes) for reconnect // No data is returned in a successful reconnect response /** * Create a new durable handle reconnect response */ public DurableHandleReconnectResponse() { // No data fields for reconnect response } @Override public byte[] getName() { return CONTEXT_NAME_BYTES; } @OverrideRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlResponse.java
return null; } /** * Gets the output data decoded as the specified response type. * * @param <T> the type of the decoded response data * @param responseType the class of the expected response type * @return decoded data * @throws SmbException if decoding fails or the response type is incompatible */ @SuppressWarnings("unchecked")Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/BaseApiManager.java
} else { enc = encoding; } buf.append(enc); final HttpServletResponse response = LaResponseUtil.getResponse(); response.setContentType(buf.toString()); writeHeaders(response); try (PrintWriter out = new PrintWriter(new OutputStreamWriter(response.getOutputStream(), enc))) { out.print(text); } catch (final IOException e) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/SmbComTransactionResponse.java
import jcifs.internal.util.SMBUtil; import jcifs.smb.FileEntry; /** * Base class for SMB1 transaction response messages. * This abstract class handles the common functionality for all SMB1 transaction responses, * including parameter and data buffer management, multi-part responses, and enumeration support. */
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 12.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractBehavior.java
list.setTook(response.getTook().getMillis()); list.setTotalShards(response.getTotalShards()); list.setSuccessfulShards(response.getSuccessfulShards()); list.setFailedShards(response.getFailedShards()); list.setTotalHits(searchHits.getTotalHits()); list.setAggregation(response.getAggregations()); // #pending othersRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 27 07:01:25 UTC 2025 - 26.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbTree.java
} void send(final ServerMessageBlock request, final ServerMessageBlock response) throws SmbException { synchronized (session.transport()) { if (response != null) { response.received = false; } treeConnect(request, response); if (request == null || response != null && response.received) { return; }Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 8.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/NetServerEnumIterator.java
} } private FileEntry advance() throws CIFSException { final int n = this.response.getStatus() == WinError.ERROR_MORE_DATA ? this.response.getNumEntries() - 1 : this.response.getNumEntries(); while (this.ridx < n) { final FileEntry itm = this.response.getResults()[this.ridx]; this.ridx++; if (filter(itm)) { return itm; }Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.5K bytes - Viewed (0)