- Sort Score
- Result 10 results
- Languages All
Results 301 - 310 of 475 for initializer (0.07 sec)
-
src/main/java/org/codelibs/fess/app/pager/DuplicateHostPager.java
public String createdTime; /** Search/filter parameter for duplicate host version number. */ public String versionNo; /** * Creates a new DuplicateHostPager with default values. * Initializes pagination settings and clears all search parameters. */ public DuplicateHostPager() { // Default constructor with explicit documentation } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.5K 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 try {
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/test/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformationResponseTest.java
response = new Trans2QueryFSInformationResponse(config, FileSystemInformation.SMB_INFO_ALLOCATION); byte[] buffer = new byte[100]; // Initialize buffer with zeros to avoid random data java.util.Arrays.fill(buffer, (byte) 0); // Set dataCount to 0 - but decode still runs setDataCount(response, 0);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
/** * Initializes the SystemHelper. * This method sets up system properties, caches, and other initial configurations. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) { logger.debug("Initialize {}", this.getClass().getSimpleName()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 36.6K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/ws/WebSocketReader.kt
private var isControlFrame = false private var readingCompressedMessage = false private val controlFrameBuffer = Buffer() private val messageFrameBuffer = Buffer() /** Lazily initialized on first use. */ private var messageInflater: MessageInflater? = null // Masks are only a concern for server writers. private val maskKey: ByteArray? = if (isClient) null else ByteArray(4)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue Jul 29 22:04:11 UTC 2025 - 9.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionTest.java
void testConstructorInitialization() { // Verify that the transaction is properly initialized assertEquals(ServerMessageBlock.SMB_COM_NT_TRANSACT, transaction.getCommand()); // Verify that transaction is properly initialized assertNotNull(transaction); // Verify primary setup offset (should be 71 as per NTT_PRIMARY_SETUP_OFFSET)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CurlHelper.java
} private static final Logger logger = LogManager.getLogger(CurlHelper.class); private SSLSocketFactory sslSocketFactory; private NodeManager nodeManager; /** * Initializes the CurlHelper with SSL configuration and node manager. */ @PostConstruct public void init() { final FessConfig fessConfig = ComponentUtil.getFessConfig();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbComWriteTest.java
return field.get(obj); } catch (Exception e) { throw new RuntimeException("Failed to access field " + fieldName, e); } } /** * Test that the constructor initializes all fields correctly */ @Test public void testConstructor() { // Arrange int fid = 0x1234; int offset = 100; int remaining = 50;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.8K bytes - Viewed (0) -
src/test/java/jcifs/smb1/util/HMACT64Test.java
private static final byte[] SHORT_TEST_KEY = "short".getBytes(); private static final byte[] TEST_DATA = "testdata".getBytes(); private static final byte[] EMPTY_DATA = new byte[0]; static { // Initialize long key with predictable data Arrays.fill(LONG_TEST_KEY, (byte) 0xAB); } @Test void testConstructorWithNormalKey() { // Test constructor with a normal length key
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/ExecJob.java
protected int timeout = -1; // sec /** Flag indicating whether the process has timed out */ protected boolean processTimeout = false; /** * Default constructor for ExecJob. * Initializes default values for job configuration. */ protected ExecJob() { // Default constructor } /** * Executes the job and returns the result as a string.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14.2K bytes - Viewed (0)