- Sort Score
- Result 10 results
- Languages All
Results 361 - 370 of 630 for cong (0.12 sec)
-
src/main/java/jcifs/smb/SMBProtocolDowngradeException.java
import jcifs.CIFSException; /** * @author mbechler * */ public class SMBProtocolDowngradeException extends CIFSException { /** * */ private static final long serialVersionUID = 1913365058349456689L; /** * */ public SMBProtocolDowngradeException () { super(); } /** * @param message * @param cause
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.5K bytes - Viewed (0) -
src/main/java/jcifs/util/transport/TransportException.java
*/ package jcifs.util.transport; import jcifs.CIFSException; /** * */ public class TransportException extends CIFSException { /** * */ private static final long serialVersionUID = 3743631204022885618L; /** * */ public TransportException () {} /** * * @param msg */ public TransportException ( String msg ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.6K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/conflict/ConflictResolverNotFoundException.java
*/ @Deprecated public class ConflictResolverNotFoundException extends Exception { // constants -------------------------------------------------------------- /** The serial version ID. */ private static final long serialVersionUID = 3372412184339653914L; // constructors ----------------------------------------------------------- /** * Creates a new <code>ConflictResolverNotFoundException</code> with the specified message.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactInstallerException.java
/** * @since 4.0.0 */ @Experimental public class ArtifactInstallerException extends MavenException { /** * */ @Serial private static final long serialVersionUID = 3652561971360586373L; /** * @param message the message of the error * @param e {@link Exception} */ public ArtifactInstallerException(String message, Exception e) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 02 21:26:05 UTC 2024 - 1.3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderException.java
/** * The Exception class throw by the {@link ProjectBuilder} service. * * @since 4.0.0 */ @Experimental public class ProjectBuilderException extends MavenException { @Serial private static final long serialVersionUID = -7629871850875943799L; /** * @param message the message to give * @param e the {@link Exception} */ public ProjectBuilderException(String message, Exception e) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 02 21:26:05 UTC 2024 - 1.3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/PrompterException.java
/** * The Exception class throw by the {@link Prompter} service. * * @since 4.0.0 */ @Experimental public class PrompterException extends MavenException { @Serial private static final long serialVersionUID = -3505070928479515081L; /** * @param message the message to give * @param e the {@link Exception} */ public PrompterException(String message, Exception e) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 02 21:26:05 UTC 2024 - 1.3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/SuperPomProviderException.java
/** * Exceptions thrown by the {@link SuperPomProvider} service. * * @since 4.0.0 */ public class SuperPomProviderException extends MavenException { @Serial private static final long serialVersionUID = -8659892034004509331L; public SuperPomProviderException() { super(); } public SuperPomProviderException(String message) { super(message); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 02 21:26:05 UTC 2024 - 1.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainManagerException.java
/** * The Exception class throw by the {@link ToolchainManager}. * * @since 4.0.0 */ @Experimental public class ToolchainManagerException extends MavenException { @Serial private static final long serialVersionUID = -9465854226608498L; /** * @param message the message to give * @param e the {@link Exception} */ public ToolchainManagerException(String message, Exception e) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 02 21:26:05 UTC 2024 - 1.3K bytes - Viewed (0) -
src/main/java/jcifs/http/NtlmHttpFilter.java
private boolean insecureBasic; private String realm; private CIFSContext transportContext; private Address[] dcList = null; private long dcListExpiration; private int netbiosLookupRespLimit = 3; private long netbiosCacheTimeout = 60 * 60 * 10; private static int dcListCounter; @Override public void init ( FilterConfig filterConfig ) throws ServletException {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 14.8K bytes - Viewed (0) -
guava/src/com/google/common/primitives/Chars.java
* or less than {@link Character#MIN_VALUE} */ public static char checkedCast(long value) { char result = (char) value; checkArgument(result == value, "Out of range: %s", value); return result; } /** * Returns the {@code char} nearest in value to {@code value}. * * @param value any {@code long} value * @return the same value cast to {@code char} if it is in the range of the {@code char} type,
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Aug 27 16:47:48 UTC 2024 - 23.9K bytes - Viewed (0)