- Sort Score
- Result 10 results
- Languages All
Results 1141 - 1150 of 1,686 for super (0.09 sec)
-
src/main/java/jcifs/netbios/NbtException.java
break; default: result += "unknown error class: " + errorClass; } return result; } public NbtException ( int errorClass, int errorCode ) { super(getErrorString(errorClass, errorCode)); this.errorClass = errorClass; this.errorCode = errorCode; } @Override public String toString () { return new String(
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.8K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/artifact/ProjectArtifactMetadata.java
private final File file; public ProjectArtifactMetadata(Artifact artifact) { this(artifact, null); } public ProjectArtifactMetadata(Artifact artifact, File file) { super(artifact); this.file = file; } public File getFile() { return file; } public String getRemoteFilename() { return getFilename(); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactDeployerRequest.java
@Nonnull RemoteRepository repository, @Nonnull Collection<ProducedArtifact> artifacts, int retryFailedDeploymentCount) { super(session); this.repository = nonNull(repository, "repository cannot be null"); this.artifacts = unmodifiable(nonNull(artifacts, "artifacts cannot be null"));
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 16:43:07 UTC 2024 - 4.6K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/goals/ConfiguredGoalSupport.java
*/ public abstract class ConfiguredGoalSupport extends GoalSupport { protected ConfiguredGoalSupport(MessageBuilderFactory messageBuilderFactory, SecDispatcher secDispatcher) { super(messageBuilderFactory, secDispatcher); } @Override public int execute(DefaultEncryptInvoker.LocalContext context) throws Exception { if (!validateConfiguration(context)) { context.terminal
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NameQueryResponse.java
} else { addrEntry[addrIndex] = null; } return 6; } public String toString() { return new String( "NameQueryResponse[" + super.toString() + ",addrEntry=" + addrEntry + "]" ); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/FieldNotFoundRuntimeException.java
* @param targetClass * ターゲットクラス * @param fieldName * フィールド名 */ public FieldNotFoundRuntimeException(final Class<?> targetClass, final String fieldName) { super("ECL0070", asArray(targetClass.getName(), fieldName)); this.targetClass = targetClass; this.fieldName = fieldName; } /** * ターゲットクラスを返します。 * * @return ターゲットクラス */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/SAXRuntimeException.java
/** * {@link SAXRuntimeException}を作成します。 * * @param cause * 原因となった例外 */ public SAXRuntimeException(final SAXException cause) { super("ECL0054", asArray(createMessage(cause)), cause); } /** * メッセージを作成します。 * * @param cause * 原因 * @return メッセージ */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComNtTransactionResponse.java
*/ package jcifs.smb1.smb1; abstract class SmbComNtTransactionResponse extends SmbComTransactionResponse { SmbComNtTransactionResponse() { super(); } int readParameterWordsWireFormat( byte[] buffer, int bufferIndex ) { int start = bufferIndex; buffer[bufferIndex++] = (byte)0x00; // Reserved
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 2.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/TransCallNamedPipeResponse.java
in.lock.notify(); } } return len; } public String toString() { return new String( "TransCallNamedPipeResponse[" + super.toString() + "]" ); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/TransWaitNamedPipe.java
return 0; } int readDataWireFormat( byte[] buffer, int bufferIndex, int len ) { return 0; } public String toString() { return new String( "TransWaitNamedPipe[" + super.toString() + ",pipeName=" + name + "]" ); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 2K bytes - Viewed (0)