- Sort Score
- Result 10 results
- Languages All
Results 431 - 440 of 447 for getMessager (4.49 sec)
-
src/test/java/jcifs/internal/dfs/DfsReferralDataImplTest.java
IllegalArgumentException exception = assertThrows(IllegalArgumentException.class, () -> referralData.stripPathConsumed(10)); assertEquals("Stripping more than consumed", exception.getMessage()); } private void setupReferralDataWithPathConsumed(int consumed) { when(mockReferral.getTtl()).thenReturn(300); when(mockReferral.getRFlags()).thenReturn(0);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 30.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/ExecJobTest.java
try { execJob.execute(); fail("Should throw RuntimeException"); } catch (RuntimeException e) { assertEquals("Test exception", e.getMessage()); } } // Test concurrent modification of jvmOptions public void test_jvmOptions_concurrent() throws InterruptedException { CountDownLatch latch = new CountDownLatch(2);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 24.5K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableListMultimap.java
ImmutableMap<Object, ImmutableList<Object>> tmpMap; try { tmpMap = builder.buildOrThrow(); } catch (IllegalArgumentException e) { throw (InvalidObjectException) new InvalidObjectException(e.getMessage()).initCause(e); } FieldSettersHolder.MAP_FIELD_SETTER.set(this, tmpMap); FieldSettersHolder.SIZE_FIELD_SETTER.set(this, tmpSize); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 19K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NetworkExplorer.java
sb.append(new String(buf, 0, n, "ISO8859_1")); } style = sb.toString(); } catch (final IOException ioe) { throw new ServletException(ioe.getMessage()); } enableBasic = Config.getBoolean("jcifs.smb1.http.enableBasic", false); insecureBasic = Config.getBoolean("jcifs.smb1.http.insecureBasic", false);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 22.6K bytes - Viewed (0) -
src/main/java/jcifs/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, GeneralSecurityException { connect(); try { int response = parseResponseCode();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 25.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/TreeConnectResponseTest.java
assertTrue(cause instanceof SMBProtocolDecodingException, "Actual cause should be SMBProtocolDecodingException"); assertEquals("Structure size is not 16", cause.getMessage(), "Should have correct error message"); } @Test @DisplayName("Should write empty bytes for wire format") void testWriteBytesWireFormat() throws Exception { // Given
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/create/Smb2CloseResponseTest.java
assertThrows(SMBProtocolDecodingException.class, () -> response.readBytesWireFormat(buffer, 0)); assertEquals("Expected structureSize = 60", exception.getMessage()); } @ParameterizedTest @ValueSource(ints = { 0, 10, 20, 30 }) @DisplayName("Should correctly read from different buffer offsets")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 26.9K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NameServiceClientImpl.java
} catch (final UnknownHostException ex) { this.uhe = ex; } catch (final Exception ex) { this.uhe = new UnknownHostException(ex.getMessage()); } finally { synchronized (this.sem) { this.sem.count--; this.sem.notify(); } } }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 38.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java
try { indexUpdater.run(); fail("Should throw FessSystemException"); } catch (FessSystemException e) { assertEquals("DataService is null.", e.getMessage()); } } // Test run method basic flow public void test_run_basicFlow() throws Exception { final List<String> sessionIdList = Arrays.asList("session1");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 33K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/Crawler.java
final CmdLineParser parser = new CmdLineParser(options); try { parser.parseArgument(args); } catch (final CmdLineException e) { System.err.println(e.getMessage()); System.err.println("java " + Crawler.class.getCanonicalName() + " [options...] arguments..."); parser.printUsage(System.err); return; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 31K bytes - Viewed (0)