- Sort Score
- Result 10 results
- Languages All
Results 4841 - 4850 of 7,602 for _class (0.06 sec)
-
guava/src/com/google/common/hash/Java8Compatibility.java
/** * Wrappers around {@link Buffer} methods that are covariantly overridden in Java 9+. See * https://github.com/google/guava/issues/3990 */ @GwtIncompatible @ElementTypesAreNonnullByDefault final class Java8Compatibility { static void clear(Buffer b) { b.clear(); } static void flip(Buffer b) { b.flip(); } static void limit(Buffer b, int limit) { b.limit(limit); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Apr 20 18:43:59 UTC 2021 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/FileAccessException.java
* governing permissions and limitations under the License. */ package org.codelibs.core.exception; /** * Exception while accessing a file. * * @author shinsuke * */ public class FileAccessException extends ClRuntimeException { private static final long serialVersionUID = 1L; public FileAccessException(final String messageCode, final Object[] args, final Throwable cause) {
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/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/dcerpc/msrpc/MsrpcSamrConnect2.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.dcerpc.msrpc; @SuppressWarnings ( "javadoc" ) public class MsrpcSamrConnect2 extends samr.SamrConnect2 { public MsrpcSamrConnect2 ( String server, int access, SamrPolicyHandle policyHandle ) { super(server, access, policyHandle); this.ptype = 0;
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/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcSamrConnect4.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 MsrpcSamrConnect4 extends samr.SamrConnect4 { public MsrpcSamrConnect4(String server, int access, SamrPolicyHandle policyHandle) { super(server, 2, access, policyHandle); ptype = 0;
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)