- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 446 for initially (0.07 sec)
-
src/test/java/jcifs/spnego/NegTokenInitTest.java
@DisplayName("Individual flag values are correctly set and retrieved") void testIndividualFlagValues(int flag) { NegTokenInit init = new NegTokenInit(); // Initially false assertFalse(init.getContextFlag(flag)); // Set to true init.setContextFlag(flag, true); assertTrue(init.getContextFlag(flag));Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 21K bytes - Viewed (0) -
src/test/java/jcifs/ntlmssp/Type2MessageTest.java
assertEquals(expectedFlags, message.getFlags(), "Default flags should be set correctly"); assertNull(message.getChallenge(), "Challenge should initially be null"); assertNull(message.getTarget(), "Target should initially be null"); assertNull(message.getTargetInformation(), "Target information should be null when no target is set"); } @Test
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 38.9K bytes - Viewed (0) -
src/test/java/jcifs/smb/NtlmPasswordAuthenticatorTest.java
public void testAuthenticationTTL() throws InterruptedException { NtlmPasswordAuthenticator auth = new NtlmPasswordAuthenticator("user", "TTLTestPass123!"); // Initially not expired assertFalse(auth.isExpired()); // Set short TTL auth.setAuthenticationTTL(100); // 100 milliseconds assertEquals(100, auth.getAuthenticationTTL());
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 23.3K bytes - Viewed (0) -
fess-crawler-opensearch/src/test/java/org/codelibs/fess/crawler/service/impl/OpenSearchDataServiceTest.java
} dataService.delete(sessionId); } public void test_getCount_Tx() { final String sessionId = "count_session1"; // Initially no data assertEquals(0, dataService.getCount(sessionId)); // Insert test data for (int i = 1; i <= 5; i++) { final OpenSearchAccessResult accessResult = new OpenSearchAccessResult();Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 20 08:40:57 UTC 2025 - 15.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionResponseTest.java
void testBufDataStartInitialization() throws Exception { byte[] buffer = new byte[100]; int bufferIndex = 0; // Set bufDataStart to 0 initially Field bufDataStartField = response.getClass().getSuperclass().getSuperclass().getDeclaredField("bufDataStart"); bufDataStartField.setAccessible(true); bufDataStartField.set(response, 0);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 16.3K bytes - Viewed (0) -
src/test/java/jcifs/util/AuthenticationRateLimiterTest.java
assertTrue(rateLimiter.checkAttempt("user1", "192.168.1.9"), "Should still track account"); } @Test public void testStatistics() throws Exception { // Initially stats should be zero AuthenticationRateLimiter.RateLimiterStats stats = rateLimiter.getStats(); assertEquals(0, stats.getTotalBlocked()); assertEquals(0, stats.getAccountsLocked());
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.8K bytes - Viewed (0) -
apache-maven/src/assembly/maven/conf/settings.xml
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jan 22 07:44:50 UTC 2025 - 11.1K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/net/protocol/storage/HandlerTest.java
assertEquals("my.bucket.name", getField(storageConn, "bucketName")); assertEquals("object.txt", getField(storageConn, "objectName")); } /** * Test that MinIO client is initially null before connection. */ public void test_connectionState_initiallyNotConnected() throws Exception { URL url = new URL("storage://mybucket/object.txt"); Handler handler = new Handler();Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 14.4K bytes - Viewed (0) -
cmd/object-api-datatypes.go
// 1 and 10,000. PartNumber int // Date and time at which the part was uploaded. LastModified time.Time // Entity tag returned when the part was initially uploaded. ETag string // Size in bytes of the part. Size int64 // Real size of the object uploaded by client. ActualSize int64 // Checksum values ChecksumCRC32 string
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 21.2K bytes - Viewed (0) -
internal/config/config.go
func (c Config) ResolveConfigParam(subSys, target, cfgParam string, redactSecrets bool, ) (value string, cs ValueSource, isRedacted bool) { // cs = ValueSourceAbsent initially as it is iota by default. // Initially only support OpenID if !resolvableSubsystems.Contains(subSys) { return value, cs, isRedacted } // Check if config param requested is valid. defKVS, ok := DefaultKVS[subSys]
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Sun Sep 28 20:59:21 UTC 2025 - 37.7K bytes - Viewed (0)