Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for BOTH (0.14 sec)

  1. src/main/java/org/codelibs/fess/ds/DataStoreFactory.java

        }
    
        /**
         * Registers a data store instance with the factory using the specified name.
         * The data store will be accessible by both the provided name and its class simple name,
         * both converted to lowercase for case-insensitive lookup.
         *
         * @param name the name to register the data store under, must not be null
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 9K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/suggest/index/SuggestIndexerTest.java

                    new String[] { SuggestConstants.DEFAULT_ROLE }, null, SuggestItem.Kind.QUERY);
    
            // Both Document and Query (simulated by setting both frequencies)
            String[][] readings3 = new String[1][];
            readings3[0] = new String[] { "both" };
            items[2] = new SuggestItem(new String[] { "両方" }, readings3, new String[] { "content" }, 1L, 1L, -1.0f, new String[] { "tag1" },
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 28.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/script/ScriptEngineFactory.java

         */
        public void add(final String name, final ScriptEngine scriptEngine) {
            if (name == null || scriptEngine == null) {
                throw new IllegalArgumentException(
                        "Both name and scriptEngine parameters are required. name: " + name + ", scriptEngine: " + scriptEngine);
            }
            if (logger.isDebugEnabled()) {
                logger.debug("Loaded ScriptEngine: {}", name);
            }
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/query/TermRangeQueryCommand.java

                    "Unknown q: " + query.getClass() + " => " + query);
        }
    
        /**
         * Converts a TermRangeQuery to a QueryBuilder with the given boost value.
         * Handles both search fields and default field queries with proper range semantics.
         *
         * @param context the query context
         * @param termRangeQuery the term range query to convert
         * @param boost the boost value to apply
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 4.9K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/suggest/SuggesterResourceLoadingTest.java

        }
    
        /**
         * Test that both mapping and settings resources can be loaded simultaneously.
         * Verifies no resource contention or locking issues.
         */
        @Test
        public void testResourceLoading_simultaneousAccess() throws Exception {
            String mappings;
            String settings;
    
            // Load both resources
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 9.6K bytes
    - Viewed (0)
  6. src/main/assemblies/files/fess.in.bat

    )
    if NOT "%FESS_PROXY_PORT%" == "" (
    set FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -Dhttp.proxyPort=%FESS_PROXY_PORT%
    set FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -Dhttps.proxyPort=%FESS_PROXY_PORT%
    )
    REM http.nonProxyHosts applies to both HTTP and HTTPS connections.
    REM There is no https.nonProxyHosts property in Java.
    if NOT "%FESS_NON_PROXY_HOSTS%" == "" (
    set FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -Dhttp.nonProxyHosts=%FESS_NON_PROXY_HOSTS%
    )
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 27 03:48:59 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/RobotsTxt.java

            /**
             * Checks if the given path is allowed according to this directive.
             * According to RFC 9309:
             * 1. Find the longest matching pattern (by priority length)
             * 2. If both Allow and Disallow patterns match with the same length, Allow takes precedence
             * 3. If no pattern matches, the path is allowed by default
             *
             * @param path the path to check
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 18.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/UserService.java

                        e.getMessage(), e);
                throw e;
            }
        }
    
        /**
         * Changes the password for a user identified by username.
         * Updates both the authentication manager and the database with the new encrypted password.
         *
         * @param username the username of the user
         * @param password the new password in plain text
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Mon Nov 24 02:07:40 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/util/FacetResponse.java

         */
        protected List<Field> fieldList = new ArrayList<>();
    
        /**
         * Constructs a FacetResponse from OpenSearch aggregations.
         * Processes both field facets and query facets from the aggregation results.
         *
         * @param aggregations the OpenSearch aggregations containing facet data, may be null
         */
        public FacetResponse(final Aggregations aggregations) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sun Nov 23 11:39:05 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  10. fess-crawler-opensearch/src/test/java/org/codelibs/fess/crawler/service/impl/OpenSearchUrlFilterServiceTest.java

            urlFilterService.addIncludeUrlFilter(sessionId1, "http://example.com/.*");
            urlFilterService.addIncludeUrlFilter(sessionId2, "http://test.com/.*");
    
            // Verify both are stored
            assertTrue(fesenClient.prepareSearch("fess_crawler.filter")
                    .setQuery(QueryBuilders.termQuery("sessionId", sessionId1))
                    .setSize(0)
                    .execute()
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 11.4K bytes
    - Viewed (0)
Back to top