Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 18 for EMPTY (0.02 seconds)

  1. src/main/java/org/codelibs/fess/chat/ChatClient.java

        }
    
        /**
         * Builds the source titles suffix string (e.g., "\n[Referenced documents: Title1, Title2]").
         * Returns an empty string if no sources or titles are available.
         *
         * @param sources the source documents
         * @return the source titles suffix, or empty string
         */
        private String buildSourceTitlesSuffix(final List<ChatSource> sources) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 56.6K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                logger.debug("Login failed for user: {}", username, e);
            }
            return OptionalEntity.empty();
        }
    
        /**
         * Checks if the specified LDAP user is allowed to have empty group and role permissions.
         *
         * @param ldapUser the LDAP user to check
         * @return true if empty permissions are allowed, false otherwise
         */
        protected boolean allowEmptyGroupAndRole(final LdapUser ldapUser) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Jan 02 08:06:20 GMT 2026
    - 85.2K bytes
    - Click Count (0)
  3. 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)
  4. src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java

         *
         * @return the language instruction string, or empty string if locale is English
         */
        protected String getLanguageInstruction() {
            final Locale locale = getUserLocale();
            final String language = locale.getLanguage();
            if ("en".equals(language)) {
                return StringUtil.EMPTY;
            }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 72K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/job/IndexExportJobTest.java

            assertEquals("Exported 0 documents.", result);
        }
    
        // --- Edge cases ---
    
        @Test
        public void test_buildFilePath_emptyString() {
            // Empty string is a valid relative URI with null host and empty path
            final Path result = indexExportJob.buildFilePath("/export", "", new HtmlIndexExportFormatter());
            assertEquals(Path.of("/export/_local/index.html"), result);
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 09:08:38 GMT 2026
    - 66.1K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                    } catch (final IOException e) {
                        throw new IORuntimeException(e);
                    }
                    return true;
                }, OptionalThing.empty());
                response.flushBuffer();
                if (logger.isDebugEnabled()) {
                    logger.debug("Loaded {} documents", count);
                }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 27 13:56:32 GMT 2026
    - 55.4K bytes
    - Click Count (1)
  7. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        }
    
        default void setDefaultLabelValue(final String value) {
            setSystemProperty(Constants.DEFAULT_LABEL_VALUE_PROPERTY, value);
            propMap.remove(DEFAULT_LABEL_VALUES);
        }
    
        default String getDefaultLabelValue() {
            return getSystemProperty(Constants.DEFAULT_LABEL_VALUE_PROPERTY, StringUtil.EMPTY);
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 92.3K bytes
    - Click Count (0)
  8. src/main/resources/fess_config.properties

    # Encoding for file names in documents.
    crawler.document.file.name.encoding=
    # Label to use when a file has no title.
    crawler.document.file.no.title.label=No title.
    # Whether to ignore files with empty content.
    crawler.document.file.ignore.empty.content=false
    # Maximum length of file title in documents.
    crawler.document.file.max.title.length=100
    # Maximum length of file digest in documents.
    crawler.document.file.max.digest.length=200
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 59.3K bytes
    - Click Count (0)
  9. pom.xml

    								</source>
    							</sources>
    						</mapping>
    						<!-- logs (empty) -->
    						<mapping>
    							<directory>${packaging.fess.log.dir}</directory>
    						</mapping>
    						<!-- temp (empty) -->
    						<mapping>
    							<directory>${packaging.fess.temp.dir}</directory>
    						</mapping>
    						<!-- dictionary (empty) -->
    						<mapping>
    							<directory>${packaging.fess.dictionary.dir}</directory>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 07:04:54 GMT 2026
    - 49.9K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/helper/QueryHelperTest.java

        @Test
        public void test_buildRoleQuery_emptyRoleSet() {
            BoolQueryBuilder boolQuery = QueryBuilders.boolQuery();
            queryHelper.buildRoleQuery(Set.of(), boolQuery);
    
            // Should add empty role query filter
            assertTrue(boolQuery.toString().contains("filter"));
        }
    
        @Test
        public void test_buildRoleQuery_withRoles() {
            BoolQueryBuilder boolQuery = QueryBuilders.boolQuery();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 53.2K bytes
    - Click Count (0)
Back to Top