- Sort Score
- Result 10 results
- Languages All
Results 461 - 470 of 1,373 for Constructor (0.3 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/webconfig/ApiAdminWebconfigAction.java
// =================================================================================== // Constructor // =========== /** * Default constructor. */ public ApiAdminWebconfigAction() { super(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/SamlCredential.java
private final String nameIdFormat; private final String sessionIndex; private final String nameidNameQualifier; private final String nameidSPNameQualifier; /** * Constructor. * @param auth The SAML authentication. */ public SamlCredential(final Auth auth) { attributes = auth.getAttributes(); nameId = auth.getNameId();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.4K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/DcerpcBindingTest.java
} @Test void testConstructorAndGetters() { assertEquals(PROTO, dcerpcBinding.getProto(), "Protocol should match the constructor argument."); assertEquals(SERVER, dcerpcBinding.getServer(), "Server should match the constructor argument."); assertNull(dcerpcBinding.getOptions(), "Options should be null initially.");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.5K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Response.kt
internal var receivedResponseAtMillis: Long = 0 internal var exchange: Exchange? = null internal var trailersSource: TrailersSource = TrailersSource.EMPTY constructor() { headers = Headers.Builder() } internal constructor(response: Response) { this.request = response.request this.protocol = response.protocol this.code = response.code this.message = response.message
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 28 14:39:28 UTC 2025 - 18.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/TransPeekNamedPipeTest.java
private static final int TEST_FID = 0x1234; @BeforeEach void setUp() { MockitoAnnotations.openMocks(this); } @Test @DisplayName("Constructor should initialize with correct values") void testConstructor() { // Act transPeekNamedPipe = new TransPeekNamedPipe(mockConfig, TEST_PIPE_NAME, TEST_FID); // Assert
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/LabelTypeHelperTest.java
assertNotNull(pattern); assertEquals("test", pattern.getValue()); } catch (Exception e) { fail("LabelTypePattern constructor should not throw an exception: " + e.getMessage()); } } public void test_labelTypePattern_constructor_nullPaths() { try {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 12.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/net/SmbShareInfoTest.java
private static final int TEST_TYPE = 0x00000000; // Standard share type @BeforeEach void setUp() { shareInfo = new SmbShareInfo(); } @Test @DisplayName("Test default constructor") void testDefaultConstructor() { // Verify default values assertNull(shareInfo.getName()); assertEquals(SmbConstants.TYPE_SHARE, shareInfo.getType());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/SmbComTransactionResponseTest.java
} @Test @DisplayName("Test constructor initialization with config only") void testConstructorWithConfigOnly() { TestSmbComTransactionResponse resp = new TestSmbComTransactionResponse(mockConfig); assertNotNull(resp); assertEquals(0, resp.getSubCommand()); } @Test @DisplayName("Test constructor initialization with command and subcommand")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/SearchForm.java
*/ package org.codelibs.fess.app.web.admin.dict.mapping; import org.lastaflute.web.validation.Required; /** * The search form for Mapping. */ public class SearchForm { /** * Default constructor for SearchForm. */ public SearchForm() { } /** * The dictionary ID field for mapping dictionary operations. */ @Required public String dictId;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1007 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/relatedquery/SearchForm.java
*/ package org.codelibs.fess.app.web.admin.relatedquery; /** * The search form for Related Query. */ public class SearchForm { /** * Default constructor for SearchForm. */ public SearchForm() { } /** * The search term field for related queries. */ public String term; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1K bytes - Viewed (0)