- Sort Score
- Result 10 results
- Languages All
Results 321 - 330 of 485 for initializer (0.06 sec)
-
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/jcifs/internal/smb2/rdma/tcp/TcpRdmaConnection.java
response.setMaxReadWriteSize(0); // No RDMA read/write support response.setMaxFragmentedSize(request.getMaxFragmentedSize()); state = RdmaConnectionState.ESTABLISHED; // Initialize credits sendCredits.set(response.getCreditsGranted()); log.debug("TCP RDMA negotiation completed with {} credits", response.getCreditsGranted()); return response; } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/jcifs/http/NtlmServlet.java
} this.transportContext = new BaseContext(new PropertyConfiguration(p)); } catch (final CIFSException ex) { throw new ServletException("Failed to initialize config", ex); } } @Override protected void service(final HttpServletRequest request, final HttpServletResponse response) throws ServletException, IOException { Address dc;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.1K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/app/web/admin/dataconfig/AdminDataconfigAction.java
@Execute @Secured({ ROLE }) public HtmlResponse createnew() { saveToken(); return asEditHtml().useForm(CreateForm.class, op -> { op.setup(form -> { form.initialize(); ComponentUtil.getCrawlingConfigHelper().getDefaultConfig(ConfigType.DATA).ifPresent(entity -> { copyBeanToBean(entity, form, copyOp -> { copyOp.excludeNull();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 19.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/AdminDictStopwordsAction.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 20.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/BoostQueryCommandTest.java
new BooleanQueryCommand().register(); new PrefixQueryCommand().register(); new WildcardQueryCommand().register(); new FuzzyQueryCommand().register(); // Initialize BoostQueryCommand boostQueryCommand = new BoostQueryCommand(); boostQueryCommand.register(); } public void test_getQueryClassName() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/parser/QueryParser.java
/** List of filters to apply to queries */ protected List<Filter> filterList = new ArrayList<>(); /** The filter chain used to process queries */ protected FilterChain filterChain; /** * Initializes the query parser by creating the filter chain. * This method is called automatically after construction. */ @PostConstruct public void init() { createFilterChain(); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.2K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/TestLockingTest.java
} @AfterEach void restoreStreams() { System.setOut(originalOut); System.setErr(originalErr); } @Test @DisplayName("TestLocking fields are properly initialized") void testFieldInitialization() { TestLocking t = new TestLocking(); // Check default field values assertEquals(1, t.numThreads, "Default numThreads should be 1");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/RequestTest.java
@BeforeEach void setUp() { // Reset mocks before each test reset(request, response, context, disconnectRequest, nextRequest); } @Test @DisplayName("Test initResponse returns initialized response") void testInitResponse() { // Given when(request.initResponse(context)).thenReturn(response); // When
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcMessage.java
*/ public abstract class DcerpcMessage extends NdrObject implements DcerpcConstants { /** * Default constructor for DcerpcMessage. * Initializes the DCE/RPC message structure for SMB1 protocol. */ protected DcerpcMessage() { // Default constructor } /** * The packet type of this DCERPC message */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6K bytes - Viewed (0)