Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 111 for independiente (0.11 sec)

  1. src/main/java/jcifs/smb/Kerb5Context.java

             * The kerberos session key is not accessible via the JGSS API. IBM and
             * Oracle both implement a similar API to make an ExtendedGSSContext
             * available. That API is accessed via reflection to make this independent
             * of the runtime JRE
             */
            if (EXT_GSS_CONTEXT_CLASS == null || INQUIRE_SEC_CONTEXT == null || INQUIRE_TYPE_SESSION_KEY == null) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 13.5K bytes
    - Viewed (1)
  2. src/test/java/jcifs/internal/smb1/trans/TransWaitNamedPipeResponseTest.java

            assertTrue(result.length() > "TransWaitNamedPipeResponse[]".length());
        }
    
        @Test
        @DisplayName("Multiple instances should be independent")
        void testMultipleInstances() {
            // Arrange
            TransWaitNamedPipeResponse response1 = new TransWaitNamedPipeResponse(mockConfig);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb1/trans/nt/NtTransQuerySecurityDescTest.java

            for (int i = startIndex + bytesWritten; i < dst.length; i++) {
                assertEquals((byte) (i & 0xFF), dst[i]);
            }
        }
    
        @Test
        @DisplayName("Test multiple instances independence")
        void testMultipleInstancesIndependence() {
            NtTransQuerySecurityDesc desc1 = new NtTransQuerySecurityDesc(mockConfig, 0x1111, OWNER_SECURITY_INFORMATION);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.9K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/exception/InvalidAccessTokenExceptionTest.java

                assertEquals(type, iate.getType());
                assertEquals(message, e.getMessage());
            }
        }
    
        public void test_multipleExceptionInstances() {
            // Test multiple instances are independent
            InvalidAccessTokenException exception1 = new InvalidAccessTokenException("Type1", "Message1");
            InvalidAccessTokenException exception2 = new InvalidAccessTokenException("Type2", "Message2");
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/SmbNegotiationTest.java

            SmbNegotiation anotherNegotiation =
                    new SmbNegotiation(anotherRequest, anotherResponse, anotherRequestBuffer, anotherResponseBuffer);
    
            // Verify the instances are independent
            assertNotSame(negotiation.getRequest(), anotherNegotiation.getRequest());
            assertNotSame(negotiation.getResponse(), anotherNegotiation.getResponse());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  6. okhttp/src/commonJvmAndroid/kotlin/okhttp3/MultipartBody.kt

            return MultipartBody(boundary, type, parts.toImmutableList())
          }
        }
    
      companion object {
        /**
         * The "mixed" subtype of "multipart" is intended for use when the body parts are independent
         * and need to be bundled in a particular order. Any "multipart" subtypes that an implementation
         * does not recognize must be treated as being of subtype "mixed".
         */
        @JvmField
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/smb2/lease/DirectoryLeasingIntegrationTest.java

            // Update second directory cache
            List<SmbFile> files2 = Arrays.asList(mockFile2);
            directoryLeaseManager.updateDirectoryCache(dir2, files2);
    
            // Verify both caches are independent
            assertTrue(entry1.isComplete());
            assertTrue(entry2.isComplete());
            assertTrue(entry1.hasChild("document.txt"));
            assertFalse(entry1.hasChild("subfolder"));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 01:47:47 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChangeTest.java

            // Verify that the configuration was queried for notify buffer size
            verify(mockConfig, atLeastOnce()).getNotifyBufferSize();
        }
    
        @Test
        @DisplayName("Test multiple instances independence")
        void testMultipleInstancesIndependence() {
            NtTransNotifyChange notify1 = new NtTransNotifyChange(mockConfig, 0x1111, FILE_NOTIFY_CHANGE_FILE_NAME, false);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.4K bytes
    - Viewed (0)
  9. docs/pt/docs/advanced/settings.md

    ```console
    $ pip install "fastapi[all]"
    ---> 100%
    ```
    
    </div>
    
    /// info
    
    Na v1 do Pydantic ele estava incluído no pacote principal. Agora ele está distribuido como um pacote independente para que você possa optar por instalar ou não caso você não precise dessa funcionalidade.
    
    ///
    
    ### Criando o objeto `Settings`
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Wed Jan 15 20:17:23 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  10. src/test/java/jcifs/util/AuthenticationRateLimiterTest.java

            assertFalse(rateLimiter.checkAttempt("user6", ip), "Should block after IP rate limit");
        }
    
        @Test
        public void testDifferentIpsIndependent() throws Exception {
            // Different IPs should have independent limits
            for (int i = 1; i <= 3; i++) {
                assertTrue(rateLimiter.checkAttempt("user1", "192.168.1." + i));
                rateLimiter.recordFailure("user1", "192.168.1." + i);
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 15.8K bytes
    - Viewed (0)
Back to top