- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 17 for 7890 (0.03 sec)
-
src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackTest.java
// Test with numeric data Map<String, Object> numericData = new HashMap<>(); numericData.put("integer", 123); numericData.put("long", 456L); numericData.put("double", 789.0); callback.store(params, numericData); // Test with boolean data Map<String, Object> booleanData = new HashMap<>(); booleanData.put("flag", true);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ServerMessageBlock2Test.java
@Test @DisplayName("Should get and set session ID") void testSessionIdProperty() { assertEquals(0, testMessage.getSessionId()); testMessage.setSessionId(789L); assertEquals(789L, testMessage.getSessionId()); } @Test @DisplayName("Should propagate session ID to chained message") void testSessionIdPropagation() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 39.5K bytes - Viewed (0) -
src/test/java/jcifs/ConfigTest.java
assertEquals(123, Config.getInt(testProperties, "test.int", 0)); assertEquals(456, Config.getInt(testProperties, "nonexistent.int", 456)); assertEquals(789, Config.getInt(testProperties, "test.invalid.int", 789)); } @Test @DisplayName("Should get integer property") void testGetInt() { assertEquals(123, Config.getInt(testProperties, "test.int"));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.6K bytes - Viewed (0) -
src/test/java/jcifs/spnego/SpnegoTokenTest.java
} @Test @DisplayName("Setter and getter for mechanismListMIC work") void setGetMechanismListMIC() { TestSpnegoToken t = new TestSpnegoToken(); byte[] mic = new byte[] { 7, 8, 9, 10 }; t.setMechanismListMIC(mic); assertArrayEquals(mic, t.getMechanismListMIC(), "mechanismListMIC should round-trip"); // Document current behavior: no defensive copy (reference exposed)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.6K bytes - Viewed (0) -
src/test/java/jcifs/pac/ASN1UtilTest.java
ASN1Integer content = new ASN1Integer(789); ASN1TaggedObject tagged = new DERTaggedObject(true, 1, content); ASN1Integer result = ASN1Util.as(ASN1Integer.class, tagged); assertSame(content, result); } @Test void testAs_ASN1TaggedObject_Failure() { // Test failed casting from tagged object ASN1Integer content = new ASN1Integer(789);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/SmbBasicFileInfoTest.java
private static Stream<Arguments> valueProvider() { return Stream.of(Arguments.of(0, 0L, 0L, 0L, 0L), // all zeros Arguments.of(1, 1L, 1L, 1L, 1L), // ones Arguments.of(123, 456L, 789L, 101112L, 131415L), // arbitrary positives Arguments.of(Integer.MAX_VALUE, Long.MAX_VALUE, Long.MIN_VALUE, 999_999_999_999L, -1L), // extremes Arguments.of(-1, -2L, -3L, -4L, -5L) // negative values
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/internal/smb1/com/SmbComCloseTest.java
*/ @Test public void testWriteParameterWordsWireFormatWithDigest() { // Given int fid = 789; long lastWriteTime = System.currentTimeMillis(); SmbComClose smbComClose = new SmbComClose(config, fid, lastWriteTime); smbComClose.setDigest(mock(SMB1SigningDigest.class));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.4K bytes - Viewed (0) -
docs/lambda/README.md
> Host: localhost:9000 > User-Agent: curl/7.81.0 > Accept: */* >
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 7.7K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/ServerMessageBlockTest.java
} @Test void testEncodeDecode() { // Setup SMB with some data smb.command = ServerMessageBlock.SMB_COM_ECHO; smb.mid = 123; smb.pid = 456; smb.tid = 789; smb.uid = 101; smb.flags2 = ServerMessageBlock.FLAGS2_UNICODE; smb.useUnicode = true; byte[] params = { 0x01, 0x02, 0x03, 0x04 };
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/CommonServerMessageBlockResponseTest.java
concreteResponse.prepare(request); // Test next response chain assertNull(concreteResponse.getNextResponse()); // Test reset functionality concreteResponse.setMid(789L); concreteResponse.setCommand(0x42); concreteResponse.setDigest(digest); concreteResponse.reset(); assertEquals(0L, concreteResponse.getMid());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.3K bytes - Viewed (0)