- Sort Score
- Num 10 results
- Language All
Results 351 - 360 of 404 for genMessage (0.05 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/jcifs/util/PathValidator.java
} return normalized.toString(); } catch (MalformedURLException e) { throw new SmbException("Invalid SMB URL format: " + e.getMessage()); } } /** * Check if path contains traversal sequences */ private boolean containsTraversal(String path) { // Check various forms of directory traversalCreated: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 14.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestRequest.java
} } @Override public void onFailure(final Exception e) { deferred.reject(new SuggesterException(e.getMessage(), e)); } }); } private boolean isSingleWordQuery(final String query) { return !Strings.isNullOrEmpty(query) && !query.contains(" ") && !query.contains(" "); }Created: Sat Dec 20 13:04:59 GMT 2025 - Last Modified: Thu Aug 07 02:41:28 GMT 2025 - 17.8K bytes - Click Count (0) -
src/test/java/jcifs/dcerpc/DcerpcPipeHandleTest.java
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 21K bytes - Click Count (0) -
src/main/java/jcifs/smb/NtlmContext.java
this.state++; return out; } catch (final SmbException e) { throw e; } catch (final Exception e) { throw new SmbException(e.getMessage(), e); } } /** * Creates a Type 3 (authentication) message in response to the Type 2 message received from the server. * @param msg2 the Type 2 message received from the serverCreated: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 17.3K bytes - Click Count (1) -
src/test/java/org/codelibs/fess/suggest/SuggesterRefactoringTest.java
fail("Should throw SuggesterException for unexpected update indices count"); } catch (SuggesterException e) { exceptionThrown = true; exceptionMessage = e.getMessage(); // Check if the message contains the expected text // It could be either "Unexpected number of update indices" or "Unexpected number of search indices"
Created: Sat Dec 20 13:04:59 GMT 2025 - Last Modified: Mon Nov 24 03:40:05 GMT 2025 - 13.4K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactoryTest.java
assertEquals( "Unknown resolver transport 'illegal'. Supported transports are: wagon, apache, jdk, auto", exception.getMessage()); properties.remove("maven.resolver.transport"); } @Test void versionFilteringTest() throws InvalidRepositoryException {
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jan 10 08:42:00 GMT 2025 - 19.1K bytes - Click Count (0) -
docs/smb3-features/03-multi-channel-design.md
} } public void handleFailure(ChannelInfo failedChannel, Exception error) { log.warn("Channel {} failed: {}", failedChannel.getChannelId(), error.getMessage()); // Mark channel as failed failedChannel.setState(ChannelState.FAILED); // Get or create failover state FailoverState state = failoverStates.computeIfAbsent(Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 02:53:50 GMT 2025 - 39.6K bytes - Click Count (0) -
src/main/java/jcifs/smb1/netbios/NameServiceClient.java
timeout -= System.currentTimeMillis() - start; } } catch (final InterruptedException ie) { throw new IOException(ie.getMessage()); } finally { responseTable.remove(nid); } synchronized (LOCK) { if (!NbtAddress.isWINS(request.addr)) {
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 17.6K bytes - Click Count (0) -
src/main/java/jcifs/smb/SmbFileInputStream.java
ioe = (TransportException) root; root = ioe.getCause(); } if (root instanceof InterruptedException) { ioe = new InterruptedIOException(root.getMessage()); ioe.initCause(root); } return ioe; } /** * Closes this input stream and releases any system resources associated with the stream. *Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 15.6K bytes - Click Count (0) -
src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java
index++; } return Integer.parseInt(response.substring(index, index + 3)); } catch (final Exception ex) { throw new IOException(ex.getMessage()); } } private void doHandshake() throws IOException { connect(); try { int response = parseResponseCode();Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 22.1K bytes - Click Count (0)