Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 404 for Multiple (0.1 sec)

  1. 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)
  2. 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)
  3. src/test/java/org/codelibs/fess/job/PurgeThumbnailJobTest.java

            String result = purgeThumbnailJob.execute();
    
            assertEquals("Deleted 1 thumbnail files.", result);
        }
    
        // Test execute with successful purge (multiple files deleted)
        public void test_execute_multipleFilesDeleted() {
            thumbnailManager.setPurgeCallCount(100);
    
            String result = purgeThumbnailJob.execute();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/exception/LdapConfigurationExceptionTest.java

            // Test that serialVersionUID is accessible (inherited from parent)
            assertNotNull(exception);
    
            // Create a new instance to verify it can be created multiple times
            LdapConfigurationException exception2 = new LdapConfigurationException(message);
            assertEquals(exception.getMessage(), exception2.getMessage());
        }
    
        public void test_toString() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/thumbnail/impl/EmptyGeneratorTest.java

            // Initialize without container
            emptyGenerator = new EmptyGenerator();
    
            // Test that destroy method can be called without error
            emptyGenerator.destroy();
            // Call destroy multiple times to ensure it's safe
            emptyGenerator.destroy();
            emptyGenerator.destroy();
        }
    
        public void test_isAvailable() {
            // Initialize without container
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/tomcat/valve/SuppressErrorReportValveTest.java

            // Test toggling ShowReport multiple times
            assertFalse(valve.isShowReport());
    
            valve.setShowReport(true);
            assertTrue(valve.isShowReport());
    
            valve.setShowReport(false);
            assertFalse(valve.isShowReport());
    
            valve.setShowReport(true);
            assertTrue(valve.isShowReport());
    
            // Test toggling ShowServerInfo multiple times
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/validation/UriTypeTest.java

        private String testFieldWithPayload;
    
        // Test field with multiple groups
        @UriType(protocolType = ProtocolType.FILE, groups = { TestGroup.class, AnotherTestGroup.class })
        private String testFieldWithMultipleGroups;
    
        // Test field with multiple payloads
        @UriType(protocolType = ProtocolType.FILE, payload = { TestPayload.class, AnotherTestPayload.class })
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 21K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/opensearch/client/CrawlerEngineClientTest.java

            // Test that CrawlerEngineClient is properly inherited
            assertTrue(crawlerEngineClient instanceof org.codelibs.fess.crawler.client.FesenClient);
        }
    
        // Test multiple instances
        public void test_multipleInstances() {
            // Test that multiple instances can be created independently
            CrawlerEngineClient client1 = new CrawlerEngineClient();
            CrawlerEngineClient client2 = new CrawlerEngineClient();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/exception/ResultOffsetExceededExceptionTest.java

            assertTrue(result.contains(ResultOffsetExceededException.class.getName()));
            assertTrue(result.contains(message));
        }
    
        public void test_multipleInstances() {
            // Test creating multiple instances
            ResultOffsetExceededException exception1 = new ResultOffsetExceededException("First instance");
            ResultOffsetExceededException exception2 = new ResultOffsetExceededException("Second instance");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.6K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/MonitorTestCase.java

      // TODO: Test blocking to re-enter monitor after being signaled.
      // TODO: Test interrupts with both interruptible and uninterruptible monitor.
      // TODO: Test multiple waiters: If guard is still satisfied, signal next waiter.
      // TODO: Test multiple waiters: If guard is no longer satisfied, do not signal next waiter.
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top