- Sort Score
- Result 10 results
- Languages All
Results 1121 - 1130 of 1,857 for constructs (0.05 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/group/ApiAdminGroupAction.java
// =================================================================================== // Constructor // =========== /** * Default constructor. */ public ApiAdminGroupAction() { super(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/MsrpcShareEnumTest.java
@BeforeEach void setUp() { msrpcShareEnum = new MsrpcShareEnum(TEST_SERVER_NAME); } @Test void testConstructor() { // Test that the constructor initializes the object correctly MsrpcShareEnum shareEnum = new MsrpcShareEnum(TEST_SERVER_NAME); assertNotNull(shareEnum); // Verify the server name is properly formatted with double backslashes
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/pathmap/SearchBody.java
import org.codelibs.fess.app.web.api.admin.BaseSearchBody; /** * Search request body for path mapping administration API. */ public class SearchBody extends BaseSearchBody { /** * Default constructor. */ public SearchBody() { super(); } /** Regular expression pattern for path mapping */ public String regex; /** Replacement pattern for path mapping */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/badword/SearchBody.java
* Extends BaseSearchBody with bad word-specific search parameters. */ public class SearchBody extends BaseSearchBody { /** The bad word ID to search for. */ public String id; /** * Default constructor for SearchBody. */ public SearchBody() { super(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/kuromoji/DownloadBody.java
* This class extends the DownloadForm to provide request body handling * for downloading Kuromoji dictionaries via REST API. * */ public class DownloadBody extends DownloadForm { /** * Default constructor. */ public DownloadBody() { super(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/DownloadBody.java
* This class extends the DownloadForm to provide request body handling * for downloading protected words dictionaries via REST API. * */ public class DownloadBody extends DownloadForm { /** * Default constructor. */ public DownloadBody() { super(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/stopwords/DownloadBody.java
* This class extends the DownloadForm to provide request body handling * for downloading stop words dictionaries via REST API. * */ public class DownloadBody extends DownloadForm { /** * Default constructor. */ public DownloadBody() { super(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java
private static final Logger logger = LogManager.getLogger(IndexUpdateCallbackImpl.class); /** * Default constructor for index update callback implementation. * Creates a new instance with default values. */ public IndexUpdateCallbackImpl() { // Default constructor } /** Atomic counter for the number of documents processed */ protected AtomicLong documentSize = new AtomicLong(0);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileInformationTest.java
void testFileEndOfFileInformationImplementation() { // Test default constructor FileEndOfFileInformation fileInfo = new FileEndOfFileInformation(); assertNotNull(fileInfo); assertEquals(FileInformation.FILE_ENDOFFILE_INFO, fileInfo.getFileInformationLevel()); assertEquals(8, fileInfo.size()); // Test parameterized constructor long endOfFile = 1024L;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/EncryptionNegotiateContextTest.java
private static final int BUFFER_SIZE = 1024; private byte[] buffer; @BeforeEach void setUp() { buffer = new byte[BUFFER_SIZE]; } @Nested @DisplayName("Constructor Tests") class ConstructorTests { @Test @DisplayName("Should create instance with Configuration and ciphers") void testConstructorWithConfigAndCiphers() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.5K bytes - Viewed (0)