Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 31 - 40 of 451 for EMPTY (0.02 seconds)

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

            String value;
            String[] result;
    
            // Empty fields between commas
            value = ",,";
            result = KuromojiCSVUtil.parse(value);
            assertEquals(3, result.length);
            assertEquals("", result[0]);
            assertEquals("", result[1]);
            assertEquals("", result[2]);
    
            // Mixed empty and non-empty
            value = "first,,third,";
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 18.9K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/entity/FacetInfoTest.java

            assertEquals(Long.valueOf(5), facetInfo.minDocCount);
            assertEquals("count.desc", facetInfo.sort);
            assertEquals("unknown", facetInfo.missing);
        }
    
        // Test init with empty fields
        @Test
        public void test_init_withEmptyFields() {
            FessConfig fessConfig = new FessConfig.SimpleImpl() {
                @Override
                public String getQueryFacetFields() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 13.4K bytes
    - Click Count (0)
  3. src/main/webapp/WEB-INF/view/admin/storage/admin_storage.jsp

                                                </tr>
                                                </thead>
                                                <tbody>
                                                <c:if test="${not empty path and not empty parentId}">
                                                    <tr data-href="${contextPath}/admin/storage/list/${f:u(data.parentId)}/" role="button" tabindex="0">
                                                        <td>..</td>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 20.7K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessUserLocaleProcessProviderTest.java

            // Execute
            OptionalThing<Locale> result = provider.findBusinessLocale(null, mockRequestManager);
    
            // Verify - should return empty when parameter name is blank
            assertFalse(result.isPresent());
        }
    
        // Test findBusinessLocale with null parameter name
        @Test
        public void test_findBusinessLocale_withNullParameterName() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 11.1K bytes
    - Click Count (0)
  5. src/main/webapp/WEB-INF/view/admin/fileconfig/admin_fileconfig.jsp

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

            assertNotNull(target);
        }
    
        @Test
        public void test_expired_emptyBuffer() {
            // expired() with empty buffer is no-op (no exception)
            logNotificationTarget.expired();
        }
    
        @Test
        public void test_flush_callsExpired() {
            // flush() delegates to expired(); with empty buffer, no-op (no exception)
            logNotificationTarget.flush();
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 4.7K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/helper/RelatedContentHelper.java

         * Extracts the virtual host key from a RelatedContent entity.
         * If the virtual host is blank or null, returns an empty string.
         * This key is used to organize related content by virtual host.
         *
         * @param entity the RelatedContent entity to extract the host key from
         * @return the virtual host key, or empty string if not specified
         */
        protected String getHostKey(final RelatedContent entity) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 8.2K bytes
    - Click Count (0)
  8. src/main/webapp/WEB-INF/view/chat/chat.jsp

    							<div id="emptyState" class="empty-state">
    								<div class="empty-state-icon">
    									<i class="fa fa-comments" aria-hidden="true"></i>
    								</div>
    								<h5 class="empty-state-title"><la:message key="labels.chat_welcome_title" /></h5>
    								<p class="empty-state-description"><la:message key="labels.chat_welcome_description" /></p>
    							</div>
    						</div>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 01:36:02 GMT 2026
    - 10.8K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java

         *
         * @param u the URL string to extract host from
         * @return the host name, or empty string if URL is blank, or unknown hostname if parsing fails
         */
        default String getHost(final String u) {
            if (StringUtil.isBlank(u)) {
                return StringUtil.EMPTY; // empty
            }
    
            String url = u;
            final String originalUrl = url;
    
            int idx = url.indexOf("://");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Dec 11 09:47:03 GMT 2025
    - 14.1K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/app/web/base/login/FessLoginAssist.java

            return new FessUserBean(user);
        }
    
        /**
         * Gets the cookie remember-me key for persistent login.
         * Currently returns empty as remember-me functionality is not enabled.
         *
         * @return an optional thing containing the remember-me key, or empty if not configured
         */
        @Override
        protected OptionalThing<String> getCookieRememberMeKey() {
            // example to use remember-me
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 12.1K bytes
    - Click Count (0)
Back to Top