Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 196 for scenario (0.05 sec)

  1. src/test/java/jcifs/internal/CommonServerMessageBlockRequestTest.java

            verify(request).size();
            verify(request).getOverrideTimeout();
            verify(request).allowChain(nextRequest);
        }
    
        @Test
        @DisplayName("Test chaining scenario with multiple requests")
        void testChainingScenario() {
            // Given
            CommonServerMessageBlockRequest thirdRequest = mock(CommonServerMessageBlockRequest.class);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  2. src/test/java/jcifs/util/AuthenticationRateLimiterTest.java

                                } catch (SmbException e) {
                                    // Account locked out - this is expected behavior in concurrent scenario
                                    blockedAttempts.incrementAndGet();
                                    break; // Stop trying if account is locked
                                }
    
                                if (!allowed) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb2/Smb2EchoResponseTest.java

                echoResponse.received();
                assertTrue(echoResponse.isReceived());
                assertFalse(echoResponse.isError());
            }
    
            @Test
            @DisplayName("Should handle error scenario")
            void testErrorScenario() {
                byte[] buffer = new byte[1024];
                int bufferIndex = 64;
    
                // Write invalid structure size
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  4. cmd/peer-s3-client.go

    	}
    
    	res := madmin.HealResultItem{
    		Type:     madmin.HealItemBucket,
    		Bucket:   bucket,
    		SetCount: -1, // explicitly set an invalid value -1, for bucket heal scenario
    	}
    
    	for i, err := range errs {
    		if err == nil {
    			res.Before.Drives = append(res.Before.Drives, healBucketResults[i].Before.Drives...)
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 15.6K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/handling-errors.md

    You probably won't need to use it directly in your code.
    
    But in case you needed it for an advanced scenario, you can add custom headers:
    
    {* ../../docs_src/handling_errors/tutorial002.py hl[14] *}
    
    ## Install custom exception handlers { #install-custom-exception-handlers }
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  6. fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerContextTest.java

            executor.shutdown();
    
            assertTrue(exceptions.isEmpty());
            assertEquals(threadCount * operationsPerThread, crawlerContext.getAccessCount());
        }
    
        /**
         * Test complete workflow scenario
         */
        public void test_completeWorkflow() {
            // Initialize context
            crawlerContext.setSessionId("workflow-session");
            crawlerContext.setStatus(CrawlerStatus.INITIALIZING);
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Sep 06 04:15:37 UTC 2025
    - 25.6K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/dfs/DfsReferralDataInternalTest.java

                assertEquals(second, third.next());
                assertEquals(first, second.next());
            }
    
            @Test
            @DisplayName("Should handle cache replacement in complex scenario")
            void testComplexCacheReplacement() {
                Map<String, DfsReferralDataInternal> cache = new HashMap<>();
    
                // Create multiple entries
                for (int i = 0; i < 10; i++) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 28.2K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/util/ParameterUtilTest.java

            assertEquals("30", configMap.get(ConfigName.CONFIG).get("timeout"));
            assertEquals("localhost", configMap.get(ConfigName.CLIENT).get("host"));
    
            // Test loadConfigParams with complex scenario
            Map<String, Object> targetMap = new HashMap<>();
            targetMap.put("existing", "value");
            String configParam = "new.param=value\nconfig.setting=true";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 22.6K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/smb2/lock/Smb2LockRequestTest.java

            }
    
            @Test
            @DisplayName("Should handle mixed lock operations")
            void testMixedLockOperations() {
                // Simulate a complex scenario with mixed lock operations
                Smb2Lock[] locks = new Smb2Lock[] { new Smb2Lock(0L, 512L, Smb2Lock.SMB2_LOCKFLAG_EXCLUSIVE_LOCK),
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 25.3K bytes
    - Viewed (0)
  10. docs/sts/web-identity.md

    ### WebIdentityAccessToken (MinIO Extension)
    
    There are situations when identity provider does not provide user claims in `id_token` instead it needs to be retrieved from UserInfo endpoint, this extension is only useful in this scenario. This is rare so use it accordingly depending on your Identity provider implementation. `access_token` is available as part of the OIDC authentication flow similar to `id_token`.
    
    | Params     | Value    |
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 18.9K bytes
    - Viewed (0)
Back to top