- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 632 for Initialize (0.29 sec)
-
src/test/java/jcifs/MsrpcGetMembersInAliasTest.java
@BeforeEach void setUp() { MockitoAnnotations.openMocks(this); } @Test @DisplayName("Should correctly initialize MsrpcGetMembersInAlias with provided parameters") void testConstructorInitialization() { // Given // Mocks are already initialized by @BeforeEach // When MsrpcGetMembersInAlias msrpcGetMembersInAlias = new MsrpcGetMembersInAlias(mockAliasHandle, mockSids);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/labeltype/CreateForm.java
/** * The timestamp when this label type was created. */ @ValidateTypeFailure public Long createdTime; /** * Initializes the form with default values. */ public void initialize() { crudMode = CrudMode.CREATE; sortOrder = 0; createdBy = ComponentUtil.getSystemHelper().getUsername();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/scheduler/CreateForm.java
/** * The timestamp when this scheduled job was created. */ @ValidateTypeFailure public Long createdTime; /** * Initializes the form with default values for creating a new scheduled job. */ public void initialize() { target = Constants.DEFAULT_JOB_TARGET; cronExpression = Constants.DEFAULT_CRON_EXPRESSION; scriptType = Constants.DEFAULT_JOB_SCRIPT_TYPE;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/badword/CreateForm.java
/** * The timestamp when this bad word entry was created. */ @ValidateTypeFailure public Long createdTime; /** * Initializes the form with default values including current user and timestamp. */ public void initialize() { createdBy = ComponentUtil.getSystemHelper().getUsername(); createdTime = ComponentUtil.getSystemHelper().getCurrentTimeAsLong(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/CreateForm.java
/** Word or phrase to be protected from analysis */ @Required @Size(max = 1000) public String input; /** * Initializes the form with default values for creating a new protected words entry. */ public void initialize() { crudMode = CrudMode.CREATE; }
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/user/CreateForm.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/SmbComTransactionTest.java
assertTrue(padding >= 0); } @Test @DisplayName("Test write operations") void testWriteOperations() { byte[] dst = new byte[1024]; // Initialize transaction buffer to avoid NPE transaction.setBuffer(new byte[SmbComTransaction.TRANSACTION_BUF_SIZE]); // Test parameter words wire format
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/MatchAllQueryCommandTest.java
super.setUp(); // Setup FessConfig setupMockFessConfig(); // Initialize QueryFieldConfig QueryFieldConfig queryFieldConfig = new QueryFieldConfig(); queryFieldConfig.init(); ComponentUtil.register(queryFieldConfig, "queryFieldConfig"); // Initialize QueryParser QueryParser queryParser = new QueryParser(); queryParser.init();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 16.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlog/EditForm.java
/** * Default constructor for EditForm. */ public EditForm() { // Default constructor } /** * Initializes the form by resetting all fields to their default values. */ public void initialize() { id = null; logType = 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/searchlist/CreateForm.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.4K bytes - Viewed (0)