- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 557 for Constant (0.04 sec)
-
src/test/java/jcifs/internal/smb2/nego/NegotiateContextResponseTest.java
Arrays.copyOfRange(largeBuffer, 500, 500 + largeEncodedSize)); } } @Nested @DisplayName("Constants Tests") class ConstantsTest { @Test @DisplayName("Should have correct constant values for PreauthIntegrityNegotiateContext") void testPreauthConstants() { assertEquals(0x1, PreauthIntegrityNegotiateContext.NEGO_CTX_PREAUTH_TYPE);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 19.4K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbComTransactionTest.java
} @Test @DisplayName("Test default buffer size constant") void testBufferSizeConstant() { assertEquals(0xFFFF, SmbComTransaction.TRANSACTION_BUF_SIZE, "TRANSACTION_BUF_SIZE should be 0xFFFF"); } @Test @DisplayName("Test transaction subcommand constants") void testSubcommandConstants() { // Test Trans2 subcommands
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.9K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTreeInternalTest.java
verify(tree).send(eq(request), isNull()); } @ParameterizedTest(name = "send with single param: {0}") @EnumSource(RequestParam.class) @DisplayName("send handles each RequestParam enum constant") void send_eachRequestParam_isAccepted(RequestParam param) throws Exception { // Arrange: stub per-call return to ensure interaction with the exact enum
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java
* including authentication, authorization, and HTML data setup. * </p> * */ public abstract class FessAdminAction extends FessBaseAction { /** Constant suffix for view names. */ public static final String VIEW = "-view"; /** * Default constructor. */ public FessAdminAction() { super(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/ServerMessageBlockTest.java
assertEquals("Test", result); } } @Nested @DisplayName("SMB Command Constant Tests") class SMBCommandConstantTests { @Test @DisplayName("Test SMB command constants have correct values") void testSMBCommandConstants() { assertEquals((byte) 0x00, ServerMessageBlock.SMB_COM_CREATE_DIRECTORY);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 36.2K bytes - Viewed (0) -
src/test/java/jcifs/SmbConstantsTest.java
} @Test @DisplayName("Should validate constants are immutable interface values") void testConstantNature() { // SmbConstants is an interface with static final fields // Verify constants maintain their values assertEquals(445, SmbConstants.DEFAULT_PORT); // Test that the constant values are as expected for protocol compliance
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/sso/SsoAction.java
*/ public class SsoAction extends FessLoginAction { // =================================================================================== // Constant // private static final Logger logger = LogManager.getLogger(SsoAction.class); /** * Constructs a new SSO action. */ public SsoAction() { // do nothing }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/documents/ApiAdminDocumentsAction.java
*/ public class ApiAdminDocumentsAction extends FessApiAdminAction { // =================================================================================== // Constant // private static final Logger logger = LogManager.getLogger(ApiAdminSearchlistAction.class); // =================================================================================== // Constructor
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.3K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/HashCode.java
return bytes; } @Override boolean equalsSameBits(HashCode that) { // We don't use MessageDigest.isEqual() here because its contract does not guarantee // constant-time evaluation (no short-circuiting). if (this.bytes.length != that.getBytesInternal().length) { return false; } boolean areEqual = true;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 12.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/SystemUtilTest.java
import org.codelibs.fess.Constants; import org.codelibs.fess.unit.UnitFessTestCase; public class SystemUtilTest extends UnitFessTestCase { public void test_getSearchEngineHttpAddress_null() { // Clear the system property to test null case String originalValue = System.getProperty(Constants.FESS_SEARCH_ENGINE_HTTP_ADDRESS); System.clearProperty(Constants.FESS_SEARCH_ENGINE_HTTP_ADDRESS);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 12.9K bytes - Viewed (0)