- Sort Score
- Result 10 results
- Languages All
Results 291 - 300 of 620 for Initializer (0.23 sec)
-
src/test/java/jcifs/netbios/NameQueryRequestTest.java
private Name mockName; @BeforeEach void setUp() { MockitoAnnotations.openMocks(this); } @Test void testConstructor() { // Test that the constructor correctly initializes questionName and questionType NameQueryRequest request = new NameQueryRequest(mockConfig, mockName); assertNotNull(request); assertEquals(mockName, request.questionName);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/HighlightInfo.java
/** The maximum number of highlighted fragments to return. */ private int numOfFragments; /** The offset for fragment positioning. */ private int fragmentOffset; /** * Default constructor that initializes highlighting settings from Fess configuration. * Loads default values for type, fragment size, number of fragments, and fragment offset. */ public HighlightInfo() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/NtTransQuerySecurityDescTest.java
int fid = 0x1234; int securityInfo = OWNER_SECURITY_INFORMATION; querySecurityDesc = new NtTransQuerySecurityDesc(mockConfig, fid, securityInfo); // Constructor should initialize the object without throwing exceptions assertNotNull(querySecurityDesc); // Test toString contains the expected values to verify field initialization String str = querySecurityDesc.toString();
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/rank/fusion/RankFusionProcessor.java
/** * Default constructor for RankFusionProcessor. * Initializes the processor with default values. The actual initialization * is performed by the init() method which is called after construction. */ public RankFusionProcessor() { // Default constructor - initialization is done in init() method } /** * Initializes the rank fusion processor after construction.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 24.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/FacetQueryView.java
/** * Default constructor for FacetQueryView. */ public FacetQueryView() { // Default constructor } /** * Initializes the facet query view with default file type queries. * This method is called after dependency injection to set up file type facets * and register all queries with the FacetInfo component. */ @PostConstruct
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.4K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Cache.kt
* * Note that if the application chooses to not call this method to initialize the cache. By * default, OkHttp will perform lazy initialization upon the first usage of the cache. */ @Throws(IOException::class) fun initialize() { cache.initialize() } /** * Closes the cache and deletes all of its stored values. This will delete all files in the cache
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 16 09:39:51 UTC 2025 - 26.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaNegotiateRequest.java
private int preferredSendSize; private int maxReceiveSize; private int maxFragmentedSize; /** * Create new RDMA negotiation request */ public RdmaNegotiateRequest() { // Initialize with default values this.minVersion = 0x0100; // SMB Direct 1.0 this.maxVersion = 0x0100; // SMB Direct 1.0 this.creditsRequested = RdmaCapabilities.DEFAULT_SEND_CREDIT_TARGET;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 4K bytes - Viewed (0) -
src/test/java/jcifs/util/transport/RequestTest.java
import org.mockito.Mock; import org.mockito.MockitoAnnotations; class RequestTest { @Mock private Request mockRequest; @BeforeEach void setUp() { // Initialize mocks before each test MockitoAnnotations.openMocks(this); } @Test void testGetCreditCost() { // Test case for getCreditCost method int expectedCreditCost = 10;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/CrawlJobTest.java
private static class TestFessConfig extends FessConfig.SimpleImpl { private static final long serialVersionUID = 1L; public TestFessConfig() { super(); // Initialize the properties to avoid NullPointerException try { java.lang.reflect.Field propField = org.lastaflute.core.direction.ObjectiveConfig.class.getDeclaredField("prop");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 25K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java
crawlingConfigHelperField.setAccessible(true); crawlingConfigHelperField.set(null, null); } catch (Exception e) { // Ignore } // Initialize test helpers systemHelper = new TestSystemHelper(); indexingHelper = new TestIndexingHelper(); crawlingInfoHelper = new TestCrawlingInfoHelper(); searchLogHelper = new TestSearchLogHelper();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 24.5K bytes - Viewed (0)