- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 693 for initialized (0.06 sec)
-
src/main/java/org/codelibs/fess/app/pager/RelatedQueryPager.java
*/ public String versionNo; /** * Default constructor for RelatedQueryPager. * Initializes a new instance with default values for pagination * and related query fields. */ public RelatedQueryPager() { // Default constructor - fields will be initialized to default values } /** * Clears all pager data and resets to default values.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessUserTimeZoneProcessProviderTest.java
assertFalse(result1.equals(result2)); } // Test static field initialization public void test_centralTimeZone_initialization() { // Verify that centralTimeZone is properly initialized assertNotNull(FessUserTimeZoneProcessProvider.centralTimeZone); assertEquals(TimeZone.getDefault(), FessUserTimeZoneProcessProvider.centralTimeZone);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.9K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/MsrpcSamrConnect2Test.java
ptypeField.setAccessible(true); int ptypeValue = (int) ptypeField.get(msrpcSamrConnect2); assertEquals(0, ptypeValue, "The 'ptype' field should be initialized to 0"); } @Test @DisplayName("Should set flags to DCERPC_FIRST_FRAG | DCERPC_LAST_FRAG") void shouldSetFlagsCorrectly() throws NoSuchFieldException, IllegalAccessException { // When
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.4K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/MsrpcShareGetInfoTest.java
@Test void testInheritedFields() throws Exception { // Verify inherited fields are properly set assertEquals(0x10, msrpcShareGetInfo.getOpnum()); // Test that the info field is properly initialized Field infoField = msrpcShareGetInfo.getClass().getSuperclass().getDeclaredField("info"); infoField.setAccessible(true); Object info = infoField.get(msrpcShareGetInfo); assertNotNull(info);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.3K bytes - Viewed (0) -
android/guava/src/com/google/common/net/InternetDomainName.java
* relevant suffix was found. */ private static final int NO_SUFFIX_FOUND = -1; /** * Value of {@link #publicSuffixIndexCache} or {@link #registrySuffixIndexCache} which indicates * that they were not initialized yet. */ private static final int SUFFIX_NOT_INITIALIZED = -2; /** * Maximum parts (labels) in a domain name. This value arises from the 255-octet limit described
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 27.9K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/DcerpcBindingTest.java
} @Test void testSetOptionOtherKey() throws DcerpcException { dcerpcBinding.setOption("connect", "80"); assertNotNull(dcerpcBinding.getOptions(), "Options map should be initialized."); assertEquals("80", dcerpcBinding.getOptions().get("connect"), "Option value should be set correctly."); } @Test void testGetOptionEndpoint() throws DcerpcException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.5K bytes - Viewed (0) -
cmd/erasure-sets_test.go
nDisks := 16 // Maximum disks. var erasureDisks []string for range nDisks { // Do not attempt to create this path, the test validates // so that newErasureSets initializes non existing paths // and successfully returns initialized object layer. disk := filepath.Join(globalTestTmpDir, "minio-"+nextSuffix()) erasureDisks = append(erasureDisks, disk) defer os.RemoveAll(disk) }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 6.8K bytes - Viewed (0) -
cmd/metrics.go
// Populates prometheus with bucket usage metrics, this metrics // is only enabled if scanner is enabled. func bucketUsageMetricsPrometheus(ch chan<- prometheus.Metric) { objLayer := newObjectLayerFn() // Service not initialized yet if objLayer == nil { return } dataUsageInfo, err := loadDataUsageFromBackend(GlobalContext, objLayer) if err != nil { return } // data usage has not captured any data yet.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Aug 15 12:04:40 UTC 2024 - 16.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exec/SuggestCreatorTest.java
// Any result is acceptable as long as no unexpected exception assertNotNull(result); } catch (Exception e) { // Expected behavior when components are not fully initialized Throwable cause = e.getCause(); assertNotNull(cause); } } catch (Exception e) { // Test setup exception is acceptable assertNotNull(e);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/SmbComTransactionTest.java
assertEquals(SmbComTransaction.TRANS2_FIND_FIRST2, transaction.getSubCommand()); // Verify maxDataCount and maxParameterCount are initialized assertTrue(transaction.maxDataCount > 0); assertTrue(transaction.maxParameterCount > 0); } @Test @DisplayName("Test setMaxBufferSize") void testSetMaxBufferSize() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.7K bytes - Viewed (0)