- Sort Score
- Result 10 results
- Languages All
Results 341 - 350 of 1,411 for construction (0.12 sec)
-
src/test/java/jcifs/internal/fscc/FsctlPipeWaitRequestTest.java
import org.junit.jupiter.params.provider.ValueSource; import jcifs.internal.util.SMBUtil; /** * Test class for FsctlPipeWaitRequest */ class FsctlPipeWaitRequestTest { @Test @DisplayName("Test constructor with name only sets correct fields") void testConstructorWithNameOnly() { // Test with simple pipe name String pipeName = "TestPipe";
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/FileTypeHelper.java
protected Map<String, String> mimetypeMap = new LinkedHashMap<>(); /** * Default constructor for file type helper. * Creates a new instance with default values. */ public FileTypeHelper() { // Default constructor } /** * Initializes the file type mappings by loading configuration from Fess settings.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.4K bytes - Viewed (0) -
guava-tests/test/com/google/common/util/concurrent/FuturesGetCheckedInputs.java
throw new RuntimeException("bad constructor"); } public ExceptionWithGoodAndBadConstructor(Throwable cause) { super(cause); } } static final class ExceptionWithBadConstructor extends Exception { public ExceptionWithBadConstructor(String message, Throwable cause) { throw new RuntimeException("bad constructor"); } }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 6.3K bytes - Viewed (0) -
src/main/java/jcifs/http/NtlmSsp.java
* the Network Explorer Servlet</a> related information. */ @Deprecated public class NtlmSsp implements NtlmFlags { /** * Default constructor. */ public NtlmSsp() { // Default constructor } /** * Calls the static {@link #authenticate(CIFSContext, HttpServletRequest, * HttpServletResponse, byte[])} method to perform NTLM authentication
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/NtTransQuerySecurityDescTest.java
} @Test @DisplayName("Test constructor initialization with basic parameters") void testConstructorBasic() { int fid = 0x1234; int securityInfo = OWNER_SECURITY_INFORMATION; querySecurityDesc = new NtTransQuerySecurityDesc(mockConfig, fid, securityInfo); // Constructor should initialize the object without throwing exceptions
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/UserInfoService.java
public class UserInfoService { @Resource private UserInfoBhv userInfoBhv; @Resource private SystemHelper systemHelper; /** * Default constructor for UserInfoService. */ public UserInfoService() { // Default constructor } /** * Deletes user information records older than the specified number of days. * This method is used for data cleanup and maintenance operations.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/elevateword/UploadForm.java
*/ @Required public MultipartFormFile elevateWordFile; /** * Default constructor for UploadForm. * Creates a new instance with default values. */ public UploadForm() { // Default constructor }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlog/EditForm.java
public String logType; /** Unique identifier for the search log entry */ @Required @Size(max = 1000) public String id; /** * Default constructor for EditForm. */ public EditForm() { // Default constructor } /** * Initializes the form by resetting all fields to their default values. */ public void initialize() { id = null;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/storage/TagForm.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/BaseSearchBody.java
/** The page number for search results. */ public Integer page = Constants.DEFAULT_ADMIN_PAGE_NUMBER; /** * Default constructor for BaseSearchBody. */ public BaseSearchBody() { // Default constructor } /** * Gets the page size for search results. * @return The page size. */ public int getPageSize() { if (size != null) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0)