- Sort Score
- Result 10 results
- Languages All
Results 231 - 240 of 1,947 for threw (0.02 sec)
-
src/main/java/jcifs/smb/SmbSessionImpl.java
if (logonShare == null || logonShare.isEmpty()) { throw new SmbException("Logon share is not defined"); } try (SmbTreeImpl t = getSmbTree(logonShare, null)) { t.treeConnect(null, null); } catch (CIFSException e) { throw SmbException.wrap(e); } } boolean isSignatureSetupRequired() throws SmbException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 68.9K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/base/StringsRepeatBenchmark.java
} @Benchmark void oldRepeat(long reps) { for (int i = 0; i < reps; i++) { String x = oldRepeat(originalString, count); if (x.length() != (originalString.length() * count)) { throw new RuntimeException("Wrong length: " + x); } } } private static String oldRepeat(String string, int count) { // If this multiplication overflows, a NegativeArraySizeException or
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 3.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/AbstractCrawlerClient.java
*/ protected ResponseData doGet(final String url) { throw new CrawlerSystemException("GET method is not supported."); } /** * Performs a HEAD request. * @param url The URL to request. * @return The ResponseData. */ protected ResponseData doHead(final String url) { throw new CrawlerSystemException("HEAD method is not supported."); } /**
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 9.7K bytes - Viewed (0) -
src/main/java/jcifs/pac/ASN1Util.java
// if (tagNo == 0x1f) { int b = s.read(); if (b < 31) { if (b < 0) { throw new EOFException("EOF found inside tag value."); } throw new IOException("corrupted stream - high tag number < 31 found"); } tagNo = b & 0x7f; // X.690-0207 8.1.2.4.2
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/TableCollectorsTest.java
.put("one", "uno", 1) .put("two", "dos", 2) .put("three", "tres", 3) .buildOrThrow(), immutableCell("one", "uno", 1), immutableCell("two", "dos", 2), immutableCell("three", "tres", 3)); } public void testToImmutableTableConflict() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 12.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/SearchEngineUtilTest.java
public XContentBuilder toXContent(XContentBuilder builder, Params params) throws IOException { throw new IOException("Test exception"); } }; try { SearchEngineUtil.getXContentString(xContent, XContentType.JSON); fail("Should throw IORuntimeException"); } catch (IORuntimeException e) { assertTrue(e.getCause() instanceof IOException);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 13.6K bytes - Viewed (0) -
src/test/java/jcifs/pac/kerberos/KerberosApRequestTest.java
public ASN1Primitive toASN1Primitive() { // Return a primitive that will throw IOException when getEncoded is called return new DEROctetString(new byte[0]) { @Override public byte[] getEncoded() throws IOException { throw new IOException("encode failure"); } }; } };
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.3K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Http2Writer.kt
} } @Throws(IOException::class) fun flush() { withLock { if (closed) throw IOException("closed") sink.flush() } } @Throws(IOException::class) fun rstStream( streamId: Int, errorCode: ErrorCode, ) { withLock { if (closed) throw IOException("closed") require(errorCode.httpCode != -1) frameHeader(
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed May 28 23:28:25 UTC 2025 - 11K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiFile.java
try (CurlResponse curlResponse = dictionaryManager.getContentResponse(this)) { reload(updater, curlResponse.getContentAsStream()); } catch (final IOException e) { throw new DictionaryException("Failed to parse " + path, e); } } /** * Reloads the dictionary file. * * @param updater The updater. * @param in The input stream. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.3K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/plugin/internal/DefaultPluginManager.java
} catch (PluginResolutionException e) { throw new PluginNotFoundException(plugin, project.getPluginArtifactRepositories()); } catch (PluginDescriptorParsingException | InvalidPluginDescriptorException e) { throw new PluginManagerException(plugin, e.getMessage(), e); } }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 10.1K bytes - Viewed (0)