- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 14 for getErrors (0.09 sec)
-
src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java
.mustNot(QueryBuilders.matchPhraseQuery(FieldNames.KINDS, SuggestItem.Kind.USER.toString()))); if (deleteResponse.hasError()) { throw new SuggestIndexException(deleteResponse.getErrors().get(0)); } final List<SuggestItem> updateItems = new ArrayList<>(); SearchResponse response = client.prepareSearch(index) .setSize(500)
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 34.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SuggestHelper.java
*/ public boolean deleteAllWords() { final SuggestDeleteResponse response = suggester.indexer().deleteAll(); if (response.hasError()) { logger.warn("Failed to delete all words.", response.getErrors().get(0)); return false; } refresh(); return true; } /** * Deletes all document-based words from the suggest index. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 22.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelInfo.java
*/ public long getRequestsReceived() { return requestsReceived.get(); } /** * Get number of errors * * @return error count */ public long getErrors() { return errors.get(); } /** * Add bytes sent * * @param bytes number of bytes */ public void addBytesSent(long bytes) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 10.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 16.4K bytes - Viewed (3) -
src/test/java/org/codelibs/fess/helper/SuggestHelperTest.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 16K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/SuggesterTest.java
@Test public void test_indexFromSearchWord() throws Exception { SuggestIndexResponse indexResponse = suggester.indexer().indexFromSearchWord("検索 エンジン", null, null, null, 1, null); indexResponse.getErrors(); suggester.refresh(); final SuggestResponse response = suggester.suggest().setQuery("検索").setSuggestDetail(true).execute().getResponse(); final List<SuggestItem> items = response.getItems();
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 37.2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultUpdateCheckManager.java
String key = getMetadataKey(repository, file); return readLastUpdated(touchfile, key); } @Override public String getError(Artifact artifact, ArtifactRepository repository) { File touchFile = getTouchfile(artifact); return getError(touchFile, getRepositoryKey(repository)); } @Override public void touch(Artifact artifact, ArtifactRepository repository, String error) {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Tue Apr 22 22:13:51 UTC 2025 - 12.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessClient.java
return registration; } else { String errorMsg = response != null ? response.getError() : "Response was null"; throw new IOException("Witness registration failed: " + errorMsg); } } catch (Exception e) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 20.8K bytes - Viewed (0) -
docs/smb3-features/06-witness-protocol-design.md
return registration; } else { throw new IOException("Witness registration failed: " + response.getError()); } } catch (Exception e) { log.error("Failed to register for witness notifications", e); throw new RuntimeException(e); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 42K bytes - Viewed (0) -
src/test/java/jcifs/internal/witness/WitnessClientTest.java
// Setup mock RPC response for failure WitnessRegisterResponse mockResponse = mock(WitnessRegisterResponse.class); when(mockResponse.isSuccess()).thenReturn(false); when(mockResponse.getError()).thenReturn("Registration failed"); WitnessRpcClient mockRpc = mock(WitnessRpcClient.class); lenient().when(mockRpc.register(any(WitnessRegisterRequest.class))).thenReturn(mockResponse);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 09:06:40 UTC 2025 - 9.8K bytes - Viewed (0)