- Sort Score
- Result 10 results
- Languages All
Results 5141 - 5150 of 7,967 for aclass (0.12 sec)
-
src/main/java/org/codelibs/core/exception/NoSuchAlgorithmRuntimeException.java
import static org.codelibs.core.collection.ArrayUtil.asArray; import java.security.NoSuchAlgorithmException; /** * {@link NoSuchAlgorithmException}をラップする例外です。 * * @author higa */ public class NoSuchAlgorithmRuntimeException extends ClRuntimeException { private static final long serialVersionUID = -3176447530746274091L; /** * {@link NoSuchAlgorithmRuntimeException}を作成します。 *
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/ParserConfigurationRuntimeException.java
import static org.codelibs.core.collection.ArrayUtil.asArray; import javax.xml.parsers.ParserConfigurationException; /** * {@link ParserConfigurationException}をラップする例外です。 * * @author higa */ public class ParserConfigurationRuntimeException extends ClRuntimeException { private static final long serialVersionUID = -4610465906028959083L; /** * {@link ParserConfigurationRuntimeException}を作成します。 *
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.3K bytes - Viewed (0) -
src/main/java/jcifs/SmbTree.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.2K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/MsrpcGetMembersInAlias.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.dcerpc.msrpc; @SuppressWarnings ( "javadoc" ) public class MsrpcGetMembersInAlias extends samr.SamrGetMembersInAlias { public MsrpcGetMembersInAlias ( SamrAliasHandle aliasHandle, lsarpc.LsarSidArray sids ) { super(aliasHandle, sids); this.sids = sids;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcLsarClose.java
* License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb1.dcerpc.msrpc; public class MsrpcLsarClose extends lsarpc.LsarClose { public MsrpcLsarClose(LsaPolicyHandle policyHandle) { super(policyHandle); ptype = 0; flags = DCERPC_FIRST_FRAG | DCERPC_LAST_FRAG; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 1.1K bytes - Viewed (0) -
src/test/java/org/codelibs/core/convert/LongConversionUtilTest.java
* governing permissions and limitations under the License. */ package org.codelibs.core.convert; import junit.framework.TestCase; /** * @author higa * */ public class LongConversionUtilTest extends TestCase { /** * @throws Exception */ public void testToLong() throws Exception { assertEquals(new Long("1000"), LongConversionUtil.toLong("1,000")); }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.4K bytes - Viewed (0) -
src/test/java/org/codelibs/core/io/SerializeUtilTest.java
* governing permissions and limitations under the License. */ package org.codelibs.core.io; import junit.framework.TestCase; /** * @author higa * */ public class SerializeUtilTest extends TestCase { /** * @throws Exception */ public void testSerialize() throws Exception { final String[] a = new String[] { "1", "2" };
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.3K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/RepositoryMetadataResolutionException.java
* under the License. */ package org.apache.maven.artifact.repository.metadata; /** * Error while retrieving repository metadata from the repository. * */ @Deprecated public class RepositoryMetadataResolutionException extends Exception { public RepositoryMetadataResolutionException(String message) { super(message); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/profiles/activation/ProfileActivationException.java
* specific language governing permissions and limitations * under the License. */ package org.apache.maven.profiles.activation; /** * ProfileActivationException */ @Deprecated public class ProfileActivationException extends Exception { private static final long serialVersionUID = -90820222109103638L; public ProfileActivationException(String message, Throwable cause) { super(message, cause);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/BuildAbort.java
* specific language governing permissions and limitations * under the License. */ package org.apache.maven; /** * A special throwable used to signal a graceful abort of the build. */ public class BuildAbort extends Error { public BuildAbort(String message) { super(message); } public BuildAbort(String message, Throwable cause) { super(message, cause); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.1K bytes - Viewed (0)