Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for getResponse (0.09 seconds)

  1. src/test/java/org/codelibs/fess/helper/CoordinatorHelperTest.java

        @Test
        public void test_completeOperation_ownInstance_deletesDoc() {
            setupMockFessConfig();
            final String getResponse = "{\"found\":true,\"_seq_no\":5,\"_primary_term\":1,"
                    + "\"_source\":{\"type\":\"operation\",\"name\":\"reindex\"," + "\"instanceId\":\"node1@host1\",\"status\":\"running\"}}";
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 58.6K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                    builder.addKind(SuggestItem.Kind.DOCUMENT.toString());
                }
    
                final SuggestResponse suggestResponse = builder.execute().getResponse();
    
                buf.append("\"query_time\":").append(suggestResponse.getTookMs());
                buf.append(",\"record_count\":").append(suggestResponse.getTotal());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 27 13:56:32 GMT 2026
    - 55.4K bytes
    - Click Count (1)
  3. src/main/java/jcifs/smb/SmbTransportImpl.java

                resp = negotiate(this.port);
            }
    
            if (resp == null || resp.getResponse() == null) {
                throw new SmbException("Failed to connect.");
            }
    
            if (log.isDebugEnabled()) {
                log.debug("Negotiation response on " + this.name + " :" + resp);
            }
    
            if (!resp.getResponse().isValid(getContext(), resp.getRequest())) {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 69.8K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java

         */
        public void setMaxGroupDepth(final int maxGroupDepth) {
            this.maxGroupDepth = maxGroupDepth;
        }
    
        @Override
        public ActionResponse getResponse(final SsoResponseType responseType) {
            return null;
        }
    
        @Override
        public String logout(final FessUserBean user) {
            return null;
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 08:03:27 GMT 2026
    - 56.8K bytes
    - Click Count (0)
  5. src/main/java/jcifs/smb/SmbSessionImpl.java

                    } catch (SmbAuthException sae) {
                        throw sae;
                    } catch (SmbException e) {
                        Smb2SessionSetupResponse sessResponse = request.getResponse();
                        if (e.getNtStatus() == NtStatus.NT_STATUS_INVALID_PARAMETER) {
                            // a relatively large range of samba versions has a bug causing
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 68.9K bytes
    - Click Count (0)
Back to Top