- Sort Score
- Result 10 results
- Languages All
Results 251 - 260 of 6,540 for CLASS (0.02 sec)
-
src/main/java/org/codelibs/fess/script/ScriptEngineFactory.java
import org.codelibs.fess.exception.ScriptEngineException; /** * This class is a factory for script engines. */ public class ScriptEngineFactory { /** * Constructor. */ public ScriptEngineFactory() { super(); } private static final Logger logger = LogManager.getLogger(ScriptEngineFactory.class); /** * A map of script engines. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.4K bytes - Viewed (0) -
src/test/java/jcifs/pac/PacSignatureTest.java
import java.io.ByteArrayOutputStream; import java.io.IOException; import java.nio.ByteBuffer; import java.nio.ByteOrder; import org.junit.jupiter.api.Test; /** * Tests for the PacSignature class. */ class PacSignatureTest { /** * Helper method to write integer in little-endian format. */ private void writeLittleEndianInt(ByteArrayOutputStream baos, int value) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/Base64.java
*/ package jcifs.smb1.util; /** * Utility class for Base64 encoding and decoding operations. * Provides methods to convert between binary data and Base64 encoded strings. */ public class Base64 { /** * Private constructor to prevent instantiation of this utility class. */ private Base64() { // Utility class - not instantiable }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.1K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/Trans2QueryFSInformationTest.java
import org.junit.jupiter.api.Test; import jcifs.smb1.util.Hexdump; /** * Unit test for {@link Trans2QueryFSInformation}. The class contains mostly * trivial wire-format helpers and a custom {@code toString()} implementation. * All tests are pure unit tests – no network or file system access is * required. */ class Trans2QueryFSInformationTest { /** Small helper to create a byte buffer larger than the maximum expected
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/badword/AdminBadwordAction.java
} private HtmlResponse asUploadHtml() { return asHtml(path_AdminBadword_AdminBadwordUploadJsp).useForm(UploadForm.class); } private HtmlResponse asDownloadHtml() { return asHtml(path_AdminBadword_AdminBadwordDownloadJsp).useForm(DownloadForm.class); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 18.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbCopyUtil.java
/** * Utility class for SMB file copy operations. * Provides methods for efficient server-side copying using SMB2 IOCTL operations. * * @author mbechler * */ public final class SmbCopyUtil { private static final Logger log = LoggerFactory.getLogger(SmbCopyUtil.class); /** * Private constructor to prevent instantiation of utility class. */ private SmbCopyUtil() { }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 16.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/synonym/SynonymCreator.java
import jakarta.annotation.PostConstruct; /** * A dictionary creator for synonym files. * This class is responsible for creating {@link SynonymFile} instances * from files that match the pattern "synonym.*\\.txt". */ public class SynonymCreator extends DictionaryCreator { private static final Logger logger = LogManager.getLogger(SynonymCreator.class); /** * Constructs a new creator for synonym dictionaries.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.5K bytes - Viewed (0) -
guava-gwt/test-super/com/google/common/util/concurrent/super/com/google/common/util/concurrent/TestPlatform.java
import org.jspecify.annotations.Nullable; /** Methods factored out so that they can be emulated differently in GWT. */ final class TestPlatform { static void verifyGetOnPendingFuture(Future<?> future) { try { future.get(); fail(); } catch (Exception e) { assertThat(e).isInstanceOf(IllegalStateException.class); assertThat(e).hasMessageThat().isEqualTo("Cannot get() on a pending future."); } }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 2.3K bytes - Viewed (0) -
docs/zh-hant/docs/features.md
**FastAPI** 提供了以下内容: ### 建立在開放標準的基礎上 * 使用 <a href="https://github.com/OAI/OpenAPI-Specification" class="external-link" target="_blank"><strong>OpenAPI</strong></a> 來建立 API,包含<abbr title="path,也被叫做: endpoints, routes">路徑</abbr><abbr title="也叫做 HTTP 方法,例如 POST, GET, PUT, DELETE">操作</abbr>、參數、請求內文、安全性等聲明。 * 使用 <a href="https://json-schema.org/" class="external-link" target="_blank"><strong>JSON Schema</strong></a>(因為 OpenAPI 本身就是基於 JSON Schema)自動生成資料模型文件。
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Tue Dec 10 10:48:41 UTC 2024 - 9.6K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/common/admin/sidebar.jsp
<div class="input-group-append"> <button class="btn btn-sidebar" type="submit" name="search" id="search-btn"> <em class="fa fa-search"> </button> </div> </div> </form> </c:if> <nav class="mt-2"> <ul class="nav nav-pills nav-sidebar flex-column" data-widget="treeview" role="menu"> <li class="nav-header"><la:message key="labels.sidebar.menu" /></li>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Apr 15 20:55:28 UTC 2021 - 17.8K bytes - Viewed (0)