Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 51 - 60 of 451 for EMPTY (0.02 seconds)

  1. src/test/java/org/codelibs/fess/helper/DataIndexHelperTest.java

                public List<DataConfig> getAllDataConfigList() {
                    return new ArrayList<>(); // Always return empty for fast tests
                }
    
                @Override
                public List<DataConfig> getDataConfigListByIds(List<String> configIdList) {
                    return new ArrayList<>(); // Always return empty for fast tests
                }
    
                public String store(String sessionId, DataConfig dataConfig) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 12.9K bytes
    - Click Count (0)
  2. src/main/webapp/WEB-INF/orig/view/searchNoResult.jsp

    			<p class="mb-2"><la:message key="labels.did_not_match" arg0="${displayQuery}" /></p>
    			<p class="text-muted"><la:message key="labels.did_not_match_suggestion" /></p>
    			<c:if test="${!empty popularWords}">
    				<div class="mt-3">
    					<p class="mb-1"><la:message key="labels.search_popular_word_word" /></p>
    					<p>
    						<c:forEach var="item" varStatus="s" items="${popularWords}">
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 969 bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/ldap/LdapManagerTest.java

            // Null bindDn should return empty
            OptionalEntity<String> result = ldapManager.getSAMAccountGroupName(null, "testGroup");
            assertFalse(result.isPresent());
        }
    
        @Test
        public void test_getSAMAccountGroupName_withBlankBindDn() {
            LdapManager ldapManager = new LdapManager();
            ldapManager.init();
    
            // Blank bindDn should return empty
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 17.9K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/crawler/transformer/FessTransformerTest.java

        }
    
        /**
         * Test putResultDataBody with empty array
         */
        @Test
        public void test_putResultDataBody_withEmptyArray() {
            TestFessTransformer transformer = new TestFessTransformer();
            Map<String, Object> dataMap = new HashMap<>();
    
            transformer.putResultDataBody(dataMap, "empty", "value1");
    
            String[] emptyArray = new String[] {};
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 10.8K bytes
    - Click Count (0)
  5. .teamcity/scripts/FindCommits.java

                System.exit(2);
            }
    
            String targetBranch = args[0].trim();
            if (targetBranch.isEmpty()) {
                System.err.println("target_branch_name must not be empty");
                System.exit(2);
            }
    
            String targetRef = "refs/remotes/origin/" + targetBranch;
    
            if (!refExists(targetRef)) {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Jan 20 03:53:25 GMT 2026
    - 5.5K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/dict/protwords/ProtwordsItem.java

         */
        public String getInput() {
            return input;
        }
    
        /**
         * Gets the input value or empty string if null.
         * @return the input value or empty string
         */
        public String getInputValue() {
            if (input == null) {
                return StringUtil.EMPTY;
            }
            return input;
        }
    
        /**
         * Checks if this item has been updated.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 07:09:00 GMT 2025
    - 3.4K bytes
    - Click Count (0)
  7. src/main/webapp/WEB-INF/view/common/admin/header.jsp

    		</c:if>
    		<c:if test="${not empty forumLink}">
    			<li class="nav-item" data-toggle="tooltip" data-placement="left"
    				title="<la:message key="labels.tooltip_forum" />"><a class="nav-link" href="${forumLink}" target="_forum" aria-label="<la:message key="labels.tooltip_forum" />"><i class="fas fa-comments" aria-hidden="true"></i></a></li>
    		</c:if>
    		<c:if test="${not empty helpLink}">
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 2.7K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/thumbnail/ThumbnailGeneratorTest.java

            assertFalse(thumbnailGenerator.generate(null, tempOutputFile));
        }
    
        @Test
        public void test_generate_withEmptyThumbnailId() {
            // Test generation with empty thumbnail ID
            assertFalse(thumbnailGenerator.generate("", tempOutputFile));
        }
    
        @Test
        public void test_generate_withNullOutputFile() {
            // Test generation with null output file
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 11.7K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java

                        logger.warn("Thumbnail file is empty: id={}", thumbnailId);
                        try {
                            if (Files.deleteIfExists(outputPath2)) {
                                logger.info("Deleted empty thumbnail file: {}", outputFile.getAbsolutePath());
                            }
                        } catch (final IOException e) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jan 01 12:47:47 GMT 2026
    - 16.6K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/exception/InvalidAccessTokenExceptionTest.java

            assertNull(exception.getCause());
        }
    
        @Test
        public void test_constructor_withEmptyType() {
            // Test constructor with empty type string
            String type = "";
            String message = "Empty token type error";
            InvalidAccessTokenException exception = new InvalidAccessTokenException(type, message);
    
            assertEquals("", exception.getType());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 10.7K bytes
    - Click Count (0)
Back to Top