Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 171 - 180 of 451 for EMPTY (0.02 seconds)

  1. src/test/resources/thumbnail/test_generate_thumbnail.sh

    # Make sure the script is executable
    chmod +x "${GENERATE_THUMBNAIL}"
    
    echo "--- Basic argument tests ---"
    
    # Test: No arguments
    run_test "no arguments" 1 "${GENERATE_THUMBNAIL}"
    
    # Test: Empty command type
    run_test "empty command type" 1 "${GENERATE_THUMBNAIL}" "" "file:/tmp/test" "/tmp/out.png"
    
    # Test: Unsupported command type
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Dec 04 08:02:36 GMT 2025
    - 7.9K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/util/PrunedTagTest.java

            assertEquals(3, tags.length);
    
            // Test with empty entries
            tags = PrunedTag.parse("div,,span,");
            assertEquals(2, tags.length);
        }
    
        @Test
        public void test_parse_edgeCases() {
            // Test empty string
            PrunedTag[] tags = PrunedTag.parse("");
            assertEquals(0, tags.length);
    
            // Test null
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 21.1K bytes
    - Click Count (0)
  3. src/main/webapp/WEB-INF/view/admin/group/admin_group.jsp

                                </div>
                                <%-- List --%>
                                <c:if test="${groupPager.allRecordCount == 0}">
                                    <div class="row top10"><div class="col-sm-12 empty-list-placeholder"><i class="fa fa-info-circle text-primary" aria-hidden="true"></i>
                                            <la:message key="labels.list_could_not_find_crud_table"/>
                                        </div>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 4.6K bytes
    - Click Count (0)
  4. src/main/webapp/WEB-INF/view/admin/role/admin_role.jsp

                                </div>
                                <%-- List --%>
                                <c:if test="${rolePager.allRecordCount == 0}">
                                    <div class="row top10"><div class="col-sm-12 empty-list-placeholder"><i class="fa fa-info-circle text-primary" aria-hidden="true"></i>
                                            <la:message key="labels.list_could_not_find_crud_table"/>
                                        </div>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 4.6K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/helper/WebFsIndexHelperTest.java

            }
        }
    
        @Test
        public void test_crawl_withValidWebConfig() {
            List<String> webConfigIds = Arrays.asList("webConfig1");
    
            // Mock CrawlingConfigHelper that returns non-empty web config
            CrawlingConfigHelper crawlingConfigHelper = new CrawlingConfigHelper() {
                @Override
                public List<WebConfig> getWebConfigListByIds(List<String> webConfigIdList) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 15.6K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/exception/DataStoreCrawlingExceptionTest.java

            assertEquals(message, exception.getMessage());
            assertFalse(exception.aborted());
        }
    
        @Test
        public void test_getUrl_withEmptyUrl() {
            // Test with empty URL
            String url = "";
            String message = "Error with empty URL";
            Exception cause = new RuntimeException("Error cause");
    
            DataStoreCrawlingException exception = new DataStoreCrawlingException(url, message, cause);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 16.6K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java

                                groupList.add(id);
                            }
                            processParentGroup(user, groupList, roleList, id);
                        } else {
                            logger.warn("id is empty: {}", memberOf);
                        }
                        final String[] names = fessConfig.getEntraIdPermissionFields();
                        final boolean useDomainServices = fessConfig.isEntraIdUseDomainServices();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 08:03:27 GMT 2026
    - 56.8K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/entity/DataStoreParamsTest.java

            assertEquals("value1", dataStoreParams.get("key1"));
            assertEquals("value2", dataStoreParams.get("key2"));
            assertEquals("value3", dataStoreParams.get("key3"));
        }
    
        // Test putAll with empty map
        @Test
        public void test_putAllEmptyMap() {
            dataStoreParams.put("existingKey", "existingValue");
    
            Map<String, String> emptyMap = new HashMap<>();
            dataStoreParams.putAll(emptyMap);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 10.9K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java

            assertEquals(result1, result2);
            assertEquals(128, result1.length());
        }
    
        @Test
        public void test_generateId_emptyAndNull() {
            // Test with empty string
            String emptyResult = crawlingInfoHelper.generateId("");
            assertNotNull(emptyResult);
            assertEquals(128, emptyResult.length());
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 12 01:46:45 GMT 2026
    - 28.7K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiFile.java

                String line = null;
                while ((line = reader.readLine()) != null) {
                    // Remove comments
                    final String replacedLine = line.replaceAll("#.*$", StringUtil.EMPTY).trim();
    
                    // Skip empty lines or comment lines
                    if (replacedLine.length() == 0) {
                        if (updater != null) {
                            updater.write(line);
                        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 07:09:00 GMT 2025
    - 11.7K bytes
    - Click Count (0)
Back to Top