Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 815 for Multiply (0.3 sec)

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

            // Then
            assertFalse(result, "isSigningEnforced should return false when signing is not enforced");
            verify(negotiationRequest, times(1)).isSigningEnforced();
        }
    
        @Test
        @DisplayName("Test multiple calls to isSigningEnforced")
        void testMultipleCallsToIsSigningEnforced() {
            // Given
            when(negotiationRequest.isSigningEnforced()).thenReturn(true).thenReturn(false).thenReturn(true);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/script/AbstractScriptEngineTest.java

            assertNotNull(retrievedByClassName);
            assertEquals(testScriptEngine, retrievedByClassName);
        }
    
        // Test register method with multiple engines
        public void test_register_multipleEngines() {
            TestScriptEngine engine1 = new TestScriptEngine("engine1");
            TestScriptEngine engine2 = new TestScriptEngine("engine2");
    
            engine1.register();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  3. src/main/webapp/css/admin/adminlte.min.css.map

    .select2-selection__arrow {\n  top: -.12rem;\n}\n\n.text-sm .select2-container--default .select2-selection--multiple,\nselect.form-control-sm ~ .select2-container--default .select2-selection--multiple {\n  min-height: calc(1.8125rem + 2px);\n}\n\n.text-sm .select2-container--default .select2-selection--multiple .select2-selection__rendered,\nselect.form-control-sm ~ .select2-container--default .select2-selection--multiple .select2-selection__rendered {\n  padding: 0 0.25rem 0.25rem;\n  margin-top: -0.1rem;\n}\n\n.text-sm...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 3.7M bytes
    - Viewed (1)
  4. src/test/java/jcifs/internal/smb2/lock/Smb2LockRequestTest.java

                Smb2Lock[] emptyLocks = new Smb2Lock[0];
                assertDoesNotThrow(() -> new Smb2LockRequest(mockConfig, testFileId, emptyLocks));
            }
    
            @Test
            @DisplayName("Should accept multiple locks")
            void testConstructorWithMultipleLocks() {
                Smb2Lock[] multipleLocks = new Smb2Lock[] { new Smb2Lock(0L, 100L, 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)
  5. android/guava/src/com/google/common/eventbus/EventBus.java

     *       <a href="https://developer.android.com/studio/build/shrink-code">R8 and Proguard</a>.
     *   <li>It doesn't offer a way to wait for multiple events before taking action. For example, it
     *       doesn't offer a way to wait for multiple producers to all report that they're "ready," nor
     *       does it offer a way to batch multiple events from a single producer together.
     *   <li>It doesn't support backpressure and other features needed for resilience.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 03:10:51 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. src/test/java/jcifs/internal/smb2/multichannel/ChannelLoadBalancerTest.java

            loadBalancer.setStrategy(LoadBalancingStrategy.WEIGHTED_RANDOM);
            when(mockChannelManager.getHealthyChannels()).thenReturn(Arrays.asList(channel1, channel2));
    
            // Test multiple selections to ensure it works
            for (int i = 0; i < 10; i++) {
                ChannelInfo selected = loadBalancer.selectChannel(mockMessage);
                assertTrue(Arrays.asList(channel1, channel2).contains(selected));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  7. src/main/webapp/css/admin/adminlte.min.css

    .select2-selection--multiple .select2-search.select2-search--inline .select2-search__field{margin-top:8px}.select2-container--default .select2-selection--multiple.text-sm .select2-selection__choice,.text-sm .select2-container--default .select2-selection--multiple .select2-selection__choice{margin-top:.4rem}.select2-container--default.select2-container--focus .select2-selection--multiple,.select2-container--default.select2-container--focus .select2-selection--single{border-color:#80bdff}.select2-container--de...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 1.3M bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb2/Smb2EncryptionContextTest.java

        }
    
        @Test
        @DisplayName("Should handle multiple close() calls gracefully")
        void testMultipleCloseCallsSafe() {
            // Given
            Smb2EncryptionContext closeableContext = new Smb2EncryptionContext(EncryptionNegotiateContext.CIPHER_AES128_CCM,
                    DialectVersion.SMB302, testEncryptionKey, testDecryptionKey);
    
            // When/Then - Multiple close calls should not throw
            assertDoesNotThrow(() -> {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 44.1K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/smb2/lock/Smb2LockResponseTest.java

                assertNull(response.getExpiration());
            }
    
            @Test
            @DisplayName("Should handle multiple configurations")
            void testMultipleConfigurations() throws SMBProtocolDecodingException {
                // Given - create multiple configurations
                Configuration config1 = mock(Configuration.class);
                Configuration config2 = mock(Configuration.class);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17.1K bytes
    - Viewed (0)
  10. src/test/java/jcifs/util/SecureKeyManagerTest.java

            assertFalse(Arrays.equals(retrieved1, retrieved2), "Keys should be different");
        }
    
        @Test
        public void testClearAllKeys() {
            // Store multiple keys
            for (int i = 0; i < 5; i++) {
                byte[] key = new byte[16];
                new SecureRandom().nextBytes(key);
                keyManager.storeSessionKey("session-" + i, key, "AES");
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 14.2K bytes
    - Viewed (0)
Back to top