- Sort Score
- Result 10 results
- Languages All
Results 281 - 290 of 447 for setMessage (0.37 sec)
-
src/test/java/org/codelibs/fess/sso/SsoResponseTypeTest.java
try { SsoResponseType.valueOf("INVALID"); fail("Expected IllegalArgumentException"); } catch (IllegalArgumentException e) { // Expected exception assertTrue(e.getMessage().contains("INVALID")); } } public void test_valueOf_null() { // Test valueOf with null throws exception try { SsoResponseType.valueOf(null);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6K bytes - Viewed (0) -
compat/maven-builder-support/src/main/java/org/apache/maven/building/Problem.java
*/ Exception getException(); /** * Gets the message that describes this problem. * * @return The message describing this problem, never {@code null}. */ String getMessage(); /** * Gets the severity level of this problem. * * @return The severity level of this problem, never {@code null}. */ Severity getSeverity();
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jan 15 18:51:29 UTC 2025 - 3.4K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/samrTest.java
// When/Then: Should throw exception NdrException thrown = assertThrows(NdrException.class, () -> entry.decode(mockNdrBuffer)); assertEquals(NdrException.INVALID_CONFORMANCE, thrown.getMessage()); } } @Nested @DisplayName("SamrSamArray Tests") class SamrSamArrayTests { @Test @DisplayName("Should encode array with entries")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 33.7K bytes - Viewed (0) -
src/main/java/jcifs/netbios/UniAddress.java
* "dns:/_ldap._tcp.dc._msdcs." + name, * new String[] { "SRV" } * ); * return name; * } catch (NameNotFoundException nnfe) { * uhe = new UnknownHostException(nnfe.getMessage()); * } * int dot = name.indexOf('.'); * if (dot == -1) * break; * name = name.substring(dot + 1); * } * } catch (NamingException ne) { * if (log.level > 1)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessAsyncNotifyMessage.java
for (int i = 0; i < numberOfMessages; i++) { WitnessNotificationMessage message = decodeNotificationMessage(buf); messages.add(message); } notification.setMessages(messages); return notification; } /** * Decodes a single notification message from the NDR buffer. * * @param buf the NDR buffer
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 16.4K bytes - Viewed (0) -
src/test/java/jcifs/smb1/netbios/SocketInputStreamTest.java
assertEquals(3, skipped); } catch (IOException e) { // This is also acceptable behavior - skip may fail when it runs out of data assertTrue(e.getMessage().contains("unexpected EOF")); } } @Test @DisplayName("Keep-alive packets are transparently skipped") void keepAlivePacketsAreSkipped() throws IOException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/Smb2EncryptionContextTest.java
Exception exception = assertThrows(CIFSException.class, () -> context.encryptMessage(largeMessage, 2L)); assertTrue(exception.getMessage().contains("rotation") || exception.getMessage().contains("exceeded"), "Should indicate key rotation issue: " + exception.getMessage()); context.close(); } @Test @DisplayName("Should handle multiple closes gracefully")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 44.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/AzureAdCredential.java
return true; } } catch (final Exception e) { if (logger.isDebugEnabled()) { logger.debug("Silent token refresh failed: {}", e.getMessage()); } } // For MSAL4J, if silent refresh fails, return true if token is still valid // Actual refresh will happen during next authentication request
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 28 09:13:08 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/java/jcifs/spnego/NegTokenTarg.java
der.writeObject(new DERTaggedObject(true, 1, new DERSequence(fields))); return collector.toByteArray(); } catch (final IOException ex) { throw new IllegalStateException(ex.getMessage()); } } @Override protected void parse(final byte[] token) throws IOException { try (ASN1InputStream der = new ASN1InputStream(token)) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/PingResponse.java
*/ public String getClusterStatus() { return clusterStatus; } /** * Gets the message. * * @return the message */ public String getMessage() { return message; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.4K bytes - Viewed (2)