Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 21 - 30 of 451 for EMPTY (0.01 seconds)

  1. src/test/java/org/codelibs/fess/util/WebApiUtilTest.java

            }
        }
    
        @Test
        public void test_setObject_withEmptyName() {
            // Test setObject with empty name
            try {
                WebApiUtil.setObject("", "testValue");
            } catch (Exception e) {
                fail("setObject should handle empty name gracefully: " + e.getMessage());
            }
        }
    
        @Test
        public void test_getObject_noRequest() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 17.4K bytes
    - Click Count (0)
  2. src/main/webapp/css/admin/style.css

    textarea.systemInfoData {
    	height: 22em;
    	line-height: 1.5em;
    }
    
    .login-box {
    	height: 500px;
    }
    
    .empty-list-placeholder {
    	text-align: center;
    	padding: 2em 1em;
    }
    
    .empty-list-placeholder .fa {
    	font-size: 2.5em;
    	margin-bottom: 0.5em;
    	display: block;
    }
    
    .empty-list-placeholder p {
    	color: #6c757d;
    	margin-top: 0.5em;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 1.3K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

         * Processes collection definitions and tracks the element hierarchy.
         *
         * @param uri the namespace URI, or empty string if none
         * @param localName the local name without prefix, or empty string if namespace processing is not performed
         * @param qName the qualified name with prefix, or empty string if qualified names are not available
         * @param attributes the attributes attached to the element
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 21.6K bytes
    - Click Count (0)
  4. src/main/webapp/css/chat.css

        .message-actions {
            opacity: 1;
        }
    
        .empty-state {
            padding: 2rem 1rem;
        }
    
        .empty-state-icon {
            width: 64px;
            height: 64px;
        }
    
        .empty-state-icon i {
            font-size: 1.5rem;
        }
    
        .empty-state-title {
            font-size: 1.125rem;
        }
    
        .empty-state-description {
            font-size: 0.875rem;
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:21:57 GMT 2026
    - 19.4K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java

         * If the virtual host is blank or null, returns an empty string.
         *
         * @param entity the RelatedQuery entity to extract the host key from
         * @return the virtual host key, or empty string if blank or null
         */
        protected String getHostKey(final RelatedQuery entity) {
            final String key = entity.getVirtualHost();
            return StringUtil.isBlank(key) ? StringUtil.EMPTY : key;
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 5.1K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/helper/FileTypeHelperTest.java

            fileTypeHelper.add(null, "test");
            assertEquals("test", fileTypeHelper.get(null));
        }
    
        @Test
        public void test_add_withEmptyMimetype() {
            fileTypeHelper.add("", "empty");
            assertEquals("empty", fileTypeHelper.get(""));
        }
    
        @Test
        public void test_add_withNullFiletype() {
            fileTypeHelper.add("test/null", null);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 5.6K bytes
    - Click Count (0)
  7. src/main/webapp/WEB-INF/view/admin/relatedcontent/admin_relatedcontent.jsp

                                   aria-controls="listSearchForm"><i class="fas fa-search" aria-hidden="true"></i></a>
                                <div class="collapse <c:if test="${!empty term || !empty content}">show</c:if>" id="listSearchForm">
                                    <la:form action="/admin/relatedcontent/">
                                        <div class="form-group row">
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 7.5K bytes
    - Click Count (0)
  8. src/main/webapp/WEB-INF/view/admin/keymatch/admin_keymatch.jsp

                                   aria-controls="listSearchForm"><i class="fas fa-search" aria-hidden="true"></i></a>
                                <div class="collapse <c:if test="${!empty term || !empty query}">show</c:if>" id="listSearchForm">
                                    <la:form action="/admin/keymatch/">
                                        <div class="form-group row">
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 7.5K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java

            generator.setCommandList(commands);
            assertTrue("Multiple commands should be settable", true);
    
            // Test with empty list
            generator.setCommandList(new ArrayList<>());
            assertTrue("Empty command list should be settable", true);
    
            // Test with single command
            generator.setCommandList(Collections.singletonList("single_command"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 27.8K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/validation/CustomSizeTest.java

            };
    
            assertEquals("Empty minKey should be empty string", "", emptyKeysAnnotation.minKey());
            assertEquals("Empty maxKey should be empty string", "", emptyKeysAnnotation.maxKey());
            assertTrue("Empty minKey should match StringUtil.EMPTY", StringUtil.EMPTY.equals(emptyKeysAnnotation.minKey()));
            assertTrue("Empty maxKey should match StringUtil.EMPTY", StringUtil.EMPTY.equals(emptyKeysAnnotation.maxKey()));
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 17.4K bytes
    - Click Count (0)
Back to Top