- Sort Score
- Result 10 results
- Languages All
Results 411 - 420 of 6,560 for CLASS (0.03 sec)
-
android/guava-tests/test/com/google/common/math/ReflectionFreeAssertThrows.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 6.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/net/ReflectionFreeAssertThrows.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/common/admin/crud/buttons.jsp
<button type="button" class="btn btn-danger" name="delete" data-toggle="modal" data-target="#confirmToDelete" value="<la:message key="labels.crud_button_delete" />"> <em class="fa fa-trash"> <la:message key="labels.crud_button_delete" /> </button> <div class="modal fade" id="confirmToDelete" tabindex="-1" role="dialog"> <div class="modal-dialog"> <div class="modal-content bg-danger"> <div class="modal-header">
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Feb 10 12:37:20 UTC 2020 - 2.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/ClassUtil.java
* If the class is a wrapper class, returns its corresponding primitive class; otherwise, returns the class itself. * * @param clazz * The class. Must not be {@literal null}. * @return The primitive class if the argument is a wrapper class, otherwise the class passed as the argument. */ public static Class<?> getPrimitiveClassIfWrapper(final Class<?> clazz) { assertArgumentNotNull("clazz", clazz);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 25.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractEntity.java
// =================================================================================== // Assist Class // ============ public class DocMeta implements Serializable { private static final long serialVersionUID = 1L; protected String id; protected Long version;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CurlHelper.java
import jakarta.annotation.PostConstruct; /** * Helper class for managing HTTP requests using cURL-like operations. */ public class CurlHelper { /** * Default constructor. */ public CurlHelper() { // Empty constructor } private static final Logger logger = LogManager.getLogger(CurlHelper.class); private SSLSocketFactory sslSocketFactory;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/allcommon/EsAbstractEntity.java
// =================================================================================== // Assist Class // ============ public class DocMeta implements Serializable { private static final long serialVersionUID = 1L; protected String id; protected Long version;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 10.9K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Handshake.kt
* its *peer*. * * This value object describes a completed handshake. Use [ConnectionSpec] to set policy for new * handshakes. */ class Handshake internal constructor( /** * Returns the TLS version used for this connection. This value wasn't tracked prior to OkHttp * 3.0. For responses cached by preceding versions this returns [TlsVersion.SSL_3_0]. */
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Apr 05 09:48:10 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/NetServerEnumIterator.java
/** * Iterator for enumerating network servers. * * This class provides iteration over network servers discovered * through NetBIOS server enumeration requests. */ public class NetServerEnumIterator implements CloseableIterator<FileEntry> { private static final Logger log = LoggerFactory.getLogger(NetServerEnumIterator.class); private final NetServerEnum2 request;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.5K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbComWriteTest.java
import org.junit.jupiter.api.Test; /** * Tests for SmbComWrite command - SMB write operations */ public class SmbComWriteTest { /** * Helper method to get private field value using reflection */ private Object getFieldValue(Object obj, String fieldName) { try { Field field = SmbComWrite.class.getDeclaredField(fieldName); field.setAccessible(true); return field.get(obj);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.8K bytes - Viewed (0)