- Sort Score
- Result 10 results
- Languages All
Results 231 - 240 of 376 for initialAge (0.11 sec)
-
src/test/java/org/codelibs/fess/filter/CorsFilterTest.java
@Override public void setUp() throws Exception { super.setUp(); corsFilter = new CorsFilter(); corsHandlerFactory = new TestCorsHandlerFactory(); // Initialize mocks mockRequest = new TestHttpServletRequest(); mockResponse = new TestHttpServletResponse(); mockFilterChain = new TestFilterChain();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 22.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateRequestTest.java
@BeforeEach void setUp() { mockConfig = mock(Configuration.class); mockContext = mock(CIFSContext.class); mockRandom = mock(SecureRandom.class); // Initialize test data for (int i = 0; i < 16; i++) { testMachineId[i] = (byte) (i + 1); } for (int i = 0; i < 32; i++) { testSalt[i] = (byte) (i + 0x10); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.7K bytes - Viewed (0) -
misc/cgo/gmp/gmp.go
If xxx is data, cgo arranges for C.xxx to refer to the C variable, with the type translated as described above. To do this, cgo must introduce a Go variable that points at the C variable (the linker can be told to initialize this pointer). For example, if the gmp library provided mpz_t zero; then cgo would rewrite a reference to C.zero by introducing var _C_zero *C.mpz_t
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon Apr 11 16:34:30 UTC 2022 - 9.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/BooleanQueryCommandTest.java
protected void setUpChild() throws Exception { // Register other query commands that might be needed new TermQueryCommand().register(); new MatchAllQueryCommand().register(); // Initialize and register BooleanQueryCommand booleanQueryCommand = new BooleanQueryCommand(); booleanQueryCommand.register(); } // Test getQueryClassName method public void test_getQueryClassName() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 14.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/pathmap/AdminPathmapAction.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 16K bytes - Viewed (0) -
src/main/java/jcifs/smb/Kerb5Context.java
try { krbNameOid = new Oid("1.2.840.113554.1.2.2.1"); krbMechOid = new Oid("1.2.840.113554.1.2.2"); } catch (Exception e) { log.error("Failed to initialize kerberos OIDs", e); } JGSS_KRB5_NAME_OID = krbNameOid; JGSS_KRB5_MECH_OID = krbMechOid; } private final GSSContext gssContext; private final GSSName clientName;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 13.5K bytes - Viewed (1) -
src/test/java/jcifs/internal/smb1/trans/TransWaitNamedPipeResponseTest.java
@BeforeEach void setUp() { MockitoAnnotations.openMocks(this); response = new TransWaitNamedPipeResponse(mockConfig); } @Test @DisplayName("Constructor should initialize TransWaitNamedPipeResponse") void testConstructor() { // Assert assertNotNull(response); // Verify parent class is properly initialized
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.1K bytes - Viewed (0) -
src/test/java/jcifs/MsrpcDfsRootEnumTest.java
private MsrpcDfsRootEnum dfsRootEnum; @BeforeEach void setUp() { dfsRootEnum = new MsrpcDfsRootEnum(TEST_SERVER); } @Test @DisplayName("Constructor should initialize all fields correctly") void testConstructorInitialization() { // Verify level is set to 200 for DFS root enumeration assertEquals(200, dfsRootEnum.level); // Verify DCE/RPC message properties
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/badword/AdminBadwordAction.java
@Execute @Secured({ ROLE }) public HtmlResponse createnew() { saveToken(); return asEditHtml().useForm(CreateForm.class, op -> { op.setup(form -> { form.initialize(); form.crudMode = CrudMode.CREATE; }); }); } /** * Show the edit page. * @param form The edit form. * @return The HTML response.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 18.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/RoleQueryHelper.java
/** * Initializes the RoleQueryHelper. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) { logger.debug("Initialize {}", this.getClass().getSimpleName()); } stream(ComponentUtil.getFessConfig().getSearchDefaultPermissionsAsArray()).of(stream -> stream.forEach(name -> { defaultRoleList.add(name); }));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15.1K bytes - Viewed (0)