- Sort Score
- Result 10 results
- Languages All
Results 181 - 190 of 1,790 for threw (0.03 sec)
-
guava-tests/test/com/google/common/reflect/TypeVisitorTest.java
@Override void visitTypeVariable(TypeVariable<?> t) { throw new UnsupportedOperationException(); } @Override void visitWildcardType(WildcardType t) { throw new UnsupportedOperationException(); } @Override void visitParameterizedType(ParameterizedType t) { throw new UnsupportedOperationException(); } @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 3.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/DirFileEntryEnumIterator1.java
String p = loc.getURL().getPath(); if ( p.lastIndexOf('/') != ( p.length() - 1 ) ) { throw new SmbException(loc.getURL() + " directory must end with '/'"); } if ( unc.lastIndexOf('\\') != ( unc.length() - 1 ) ) { throw new SmbException(unc + " UNC must end with '\\'"); } SmbTreeHandleImpl th = getTreeHandle();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Nov 13 15:13:49 UTC 2021 - 5.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NbtSocket.java
int errorCode = (int)( in.read() & 0xFF ); close(); throw new NbtException( NbtException.ERR_SSN_SRVC, errorCode ); case -1: throw new NbtException( NbtException.ERR_SSN_SRVC, NbtException.CONNECTION_REFUSED ); default: close(); throw new NbtException( NbtException.ERR_SSN_SRVC, 0 ); } }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 4.8K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NameServiceClientImpl.java
log.trace("Failed to send nameservice request for " + name.name, ioe); } throw new UnknownHostException(name.name); } catch ( IOException ioe ) { log.info("Failed to send nameservice request for " + name.name, ioe); throw new UnknownHostException(name.name); } if ( response.received && response.resultCode == 0 ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 14 14:26:22 UTC 2022 - 38.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/AssertionUtil.java
public static void assertArgumentArrayIndex(final String argName, final int argValue, final int arraySize) { if (argValue < 0) { throw new ClIllegalArgumentException(argName, "ECL0014", asArray(argName)); } if (argValue >= arraySize) { throw new ClIllegalArgumentException(argName, "ECL0015", asArray(argName, arraySize)); } } /** * 引数が不正でないことを表明します。 *
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 12.5K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/model/ClassDoc.groovy
def table = getSection(title).table[0] if (!table) { throw new RuntimeException("Section '$title' does not contain a <table> element.") } if (!table.thead[0]) { throw new RuntimeException("Table '$title' does not contain a <thead> element.") } if (!table.thead[0].tr[0]) { throw new RuntimeException("Table '$title' does not contain a <thead>/<tr> element.")
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 6.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeConnection.java
throw new SmbException("Failed to connect to server", uhe); } catch ( SmbException se ) { throw se; } catch ( IOException ioe ) { throw new SmbException("Failed to connect to server", ioe); } } /** * @param loc * @return tree handle * @throws IOException */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:50:16 UTC 2020 - 31K bytes - Viewed (0) -
src/main/java/jcifs/pac/kerberos/KerberosToken.java
if ( token.length <= 0 ) throw new PACDecodingException("Empty kerberos token"); byte[] content; try ( ASN1InputStream stream = new ASN1InputStream(token) ) { content = ASN1Util.readUnparsedTagged(0, 0x8000, stream); }catch ( IOException e ) { throw new PACDecodingException("Malformed kerberos token", e); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Oct 02 12:02:06 UTC 2023 - 3K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/JavassistExtensions.kt
accept(object : MemberValueVisitorAdapter() { override fun visitIntegerMemberValue(node: IntegerMemberValue) { value = node.value } }) if (value == null) throw annotationMemberValueNotFound(typeOf<Int>()) return value!! } internal val MemberValue.stringValue: String get() { var value: String? = null
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 4.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/LhaExtractor.java
} } } } } catch (final MaxLengthExceededException e) { throw e; } catch (final Exception e) { throw new ExtractException("Could not extract a content.", e); } finally { if (lhaFile != null) { try { lhaFile.close();
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 4.8K bytes - Viewed (0)