Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 180 for scenarios (0.27 sec)

  1. src/test/java/jcifs/smb1/smb1/SmbComNegotiateResponseTest.java

            assertEquals(11, response.dialectIndex);
        }
    
        @Test
        void testReadBytesWireFormat_NoExtendedSecurity() throws UnsupportedEncodingException {
            // Setup server data for this scenario
            serverData.capabilities = 0; // No extended security
            serverData.encryptionKeyLength = 8;
            response.byteCount = 15; // 8 bytes key + 6 bytes "DOMAIN" + 1 null terminator
    
            // Prepare byte array
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb1/smb1/SmbComTransactionResponseTest.java

        }
    
        /**
         * Test partial read scenario where parameters are not fully read
         */
        @Test
        public void readBytesWireFormat_partialRead_doesNotSetFlags() {
            DummyResponse d = new DummyResponse();
            byte[] tx = new byte[100];
            d.txn_buf = tx;
    
            // Set up a partial read scenario
            d.bufParameterStart = 0;
            d.bufDataStart = 20;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.19.md

    - Cleanup subnet in frontend IP configs to prevent huge subnet request bodies in some scenarios. ([#98288](https://github.com/kubernetes/kubernetes/pull/98288), [@nilo19](https://github.com/nilo19)) [SIG Cloud Provider]
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Jan 05 05:42:32 UTC 2022
    - 489.7K bytes
    - Viewed (0)
  4. docs/extensions/fan-out/README.md

    ## Overview
    
    MinIO implements an S3 extension to perform multiple concurrent fan-out upload operations. A perfect use case scenario for performing fan-out operations of incoming TSB (Time Shift Buffer's). TSBs are a method of facilitating time-shifted playback of television signaling, and media content.
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Thu May 25 05:51:07 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. docs/debugging/README.md

    Example:
    
    ```sh
    minio server /data{1...4}
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  6. docs/es/docs/async.md

    ### ¿Es la concurrencia mejor que el paralelismo?
    
    ¡No! Esa no es la moraleja de la historia.
    
    La concurrencia es diferente del paralelismo. Y es mejor en escenarios **específicos** que implican mucha espera. Debido a eso, generalmente es mucho mejor que el paralelismo para el desarrollo de aplicaciones web. Pero no para todo.
    
    Así que, para equilibrar eso, imagina la siguiente historia corta:
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:56:21 UTC 2025
    - 24.7K bytes
    - Viewed (0)
  7. src/test/java/jcifs/SmbWatchHandleTest.java

        }
    
        /**
         * Test watch() method returning empty list when buffer overflow
         */
        @Test
        void testWatchBufferOverflow() throws CIFSException {
            // Setup mock behavior for buffer overflow scenario
            when(watchHandle.watch()).thenReturn(Collections.emptyList());
    
            // Execute
            List<FileNotifyInformation> result = watchHandle.watch();
    
            // Verify
            assertNotNull(result);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.2K bytes
    - Viewed (0)
  8. docs/resiliency/resiliency-verify-failure-script.sh

    ALIAS_NAME=myminio
    BUCKET="test-bucket"
    DEST_DIR="/tmp/dest"
    
    OUT=$(./mc cp --quiet --recursive "${ALIAS_NAME}"/"${BUCKET}"/initial-data/ "${DEST_DIR}"/)
    RET=${?}
    if [ ${RET} -ne 0 ]; then
    	# It is a success scenario as get objects should fail
    	echo "GET objects failed as expected"
    	echo "script passed" >resiliency-verify-failure.log
    	exit 0
    else
    	echo "GET objects expected to fail, but succeeded: ${OUT}"
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sat Dec 21 04:24:45 UTC 2024
    - 509 bytes
    - Viewed (0)
  9. docs/pt/docs/tutorial/encoder.md

    /// note | Nota
    
    `jsonable_encoder` é realmente usado pelo **FastAPI** internamente para converter dados. Mas também é útil em muitos outros cenários.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/dependencies/sub-dependencies.md

    In an advanced scenario where you know you need the dependency to be called at every step (possibly multiple times) in the same request instead of using the "cached" value, you can set the parameter `use_cache=False` when using `Depends`:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 3.7K bytes
    - Viewed (0)
Back to top