- Sort Score
- Result 10 results
- Languages All
Results 241 - 250 of 271 for getMessager (0.13 sec)
-
src/main/java/jcifs/smb1/netbios/NameServiceClient.java
timeout -= System.currentTimeMillis() - start; } } catch( InterruptedException ie ) { throw new IOException(ie.getMessage()); } finally { responseTable.remove( nid ); } synchronized (LOCK) { if (NbtAddress.isWINS( request.addr ) == false)
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 17.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeImpl.java
try { log.debug("Waiting for transport"); transport.wait(); } catch ( InterruptedException ie ) { throw new SmbException(ie.getMessage(), ie); } } return cs; } /** * * {@inheritDoc} * * @see jcifs.smb.SmbTreeInternal#connectLogon(jcifs.CIFSContext) */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 29.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/IntsTest.java
Ints.checkedCast(value); fail("Cast to int should have failed: " + value); } catch (IllegalArgumentException ex) { assertWithMessage(value + " not found in exception text: " + ex.getMessage()) .that(ex.getMessage().contains(String.valueOf(value))) .isTrue(); } } public void testCompare() { for (int x : VALUES) { for (int y : VALUES) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 02:56:12 UTC 2024 - 29.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbSession.java
return; try { transport.wait(); } catch (InterruptedException ie) { throw new SmbException(ie.getMessage(), ie); } } connectionState = 1; // trying ... try { transport.connect(); /* * Session Setup And X Request / Response
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 18.6K bytes - Viewed (0) -
mockwebserver/api/mockwebserver3.api
public final fun getHeaders ()Lokhttp3/Headers; public final fun getHeadersDelayNanos ()J public final fun getInTunnel ()Z public final fun getInformationalResponses ()Ljava/util/List; public final fun getMessage ()Ljava/lang/String; public final fun getPushPromises ()Ljava/util/List; public final fun getSettings ()Lokhttp3/internal/http2/Settings; public final fun getSocketPolicy ()Lmockwebserver3/SocketPolicy;
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Tue Jan 03 21:59:45 UTC 2023 - 12.7K bytes - Viewed (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/interpolation/AbstractModelInterpolatorTest.java
() -> interpolator.interpolateModel( model, (Path) null, createModelBuildingRequest(context), collector)); assertEquals(RootLocator.UNABLE_TO_FIND_ROOT_PROJECT_MESSAGE, e.getMessage()); } @Test public void testEnvars() throws Exception { context.put("env.HOME", "/path/to/home"); Map<String, String> modelProperties = new HashMap<>();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 22.2K 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 Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 24K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java
TimeoutException e = assertThrows(TimeoutException.class, () -> testFuture.get(1, NANOSECONDS)); assertThat(e.getMessage()).contains("1 nanoseconds"); assertThat(e.getMessage()).contains("Because this test isn't done"); } public void testToString_completesDuringToString() throws Exception { AbstractFuture<Object> testFuture =
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 22:10:29 UTC 2024 - 47.1K bytes - Viewed (0) -
src/test/java/jcifs/tests/FileLocationTest.java
try ( SmbFile f = new SmbFile("smb://[::1]/", getContext()) ) { f.list(); } catch (final SmbException e) { if (!"Failed to connect: /0:0:0:0:0:0:0:1".equals(e.getMessage())) { throw e; } } } private static class TestDfsReferral implements DfsReferralData { private String server; private String share;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 08 13:16:07 UTC 2020 - 23K bytes - Viewed (0) -
src/main/java/jcifs/http/NetworkExplorer.java
} this.style = sb.toString(); } } catch ( IOException ioe ) { throw new ServletException(ioe.getMessage()); } this.enableBasic = Config.getBoolean(p, "jcifs.http.enableBasic", false); this.insecureBasic = Config.getBoolean(p, "jcifs.http.insecureBasic", false);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 21.3K bytes - Viewed (0)