Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 51 - 60 of 156 for worden (0.03 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java

        protected UserInfoHelper userInfoHelper;
    
        /** Helper for OpenSearch Description Document (OSDD) functionality. */
        @Resource
        protected OsddHelper osddHelper;
    
        /** Helper for managing popular search words and suggestions. */
        @Resource
        protected PopularWordHelper popularWordHelper;
    
        /** Client for RAG chat functionality. */
        @Resource
        protected ChatClient chatClient;
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 18 04:42:56 GMT 2026
    - 14K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/it/search/PopularWordsApiTests.java

    import org.junit.jupiter.api.Tag;
    import org.junit.jupiter.api.Test;
    
    import io.restassured.RestAssured;
    import io.restassured.path.json.JsonPath;
    
    /**
     * Integration tests for the Popular Words API (/api/v1/popular-words)
     */
    @Tag("it")
    public class PopularWordsApiTests extends ITBase {
    
        @BeforeAll
        protected static void initAll() {
            RestAssured.baseURI = getFessUrl();
            settingTestToken();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 03:03:44 GMT 2025
    - 3.6K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/it/admin/CrawlerLogTests.java

        }
    
        @Test
        @Order(3)
        void crawlingInfoDeleteAllTest() {
            logger.info("start crawlingInfoDeleteAllTest");
            testDeleteAllCrawlingInfo();
        }
    
        @Test
        @Order(4)
        void failureUrlTest() {
            logger.info("start failureUrlTest");
            testReadFailureUrl();
            testDeleteFailureUrl();
        }
    
        @Test
        @Order(5)
        void searchListTest() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Mar 30 14:01:34 GMT 2026
    - 13.4K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/crawler/service/FessUrlQueueService.java

        private static final Logger logger = LogManager.getLogger(FessUrlQueueService.class);
    
        /** Configuration value for sequential URL processing order */
        protected static final String ORDER_SEQUENTIAL = "sequential";
    
        /** Configuration value for random URL processing order */
        protected static final String ORDER_RANDOM = "random";
    
        /**
         * Constructs a new FessUrlQueueService with the specified crawler configuration.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 4K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/dict/stopwords/StopwordsFileTest.java

            assertEquals("word3", stopwordsFile.stopwordsItemList.get(2).getInput());
        }
    
        @Test
        public void test_reload_withEscapedCharacters() {
            String content = "word\\\\1\n" + // word\1
                    "word\\\\\\\\2\n" + // word\\2
                    "word3\n";
    
            InputStream is = new ByteArrayInputStream(content.getBytes(StandardCharsets.UTF_8));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 18K bytes
    - Click Count (0)
  6. architecture/standards/0007-java-pre-requisite.md

    ## Decision
    
    1. The Gradle distribution will never include a Java runtime.
       Instead, Gradle will leverage Java toolchains for the Daemon and worker processes.
    2. The Gradle Daemon, Worker processes, and Tooling API client will continue to support running on different Java versions during a single Gradle invocation.
       The exact versions supported will be determined by the Gradle version.
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 12:39:41 GMT 2026
    - 3.2K bytes
    - Click Count (0)
  7. build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-identity.gradle.kts

        published = false
    
        requiredRuntimes {
            client = false
            daemon = false
            worker = false
        }
    
        computedRuntimes {
            client = false
            daemon = false
            worker = false
        }
    
        // TODO: Most of these properties are the same across projects. We should
        // compute these at the settings-level instead of the project-level.
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Mar 11 22:46:35 GMT 2026
    - 5.8K bytes
    - Click Count (0)
  8. src/main/webapp/js/admin/jquery-3.7.1.min.js

    r?Math.max(0,r[2]-(n||0))+(r[3]||"px"):t}function it(e,t,n,r,i,o){var a="width"===t?1:0,s=0,u=0,l=0;if(n===(r?"border":"content"))return 0;for(;a<4;a+=2)"margin"===n&&(l+=ce.css(e,n+Q[a],!0,i)),r?("content"===n&&(u-=ce.css(e,"padding"+Q[a],!0,i)),"margin"!==n&&(u-=ce.css(e,"border"+Q[a]+"Width",!0,i))):(u+=ce.css(e,"padding"+Q[a],!0,i),"padding"!==n?u+=ce.css(e,"border"+Q[a]+"Width",!0,i):s+=ce.css(e,"border"+Q[a]+"Width",!0,i));return!r&&0<=o&&(u+=Math.max(0,Math.ceil(e["offset"+t[0].toUpperCase()+t.slice...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 26 01:07:52 GMT 2024
    - 85.5K bytes
    - Click Count (1)
  9. src/main/resources/fess_indices/fess/zh-tw/stopwords.txt

    —
    -
    ,
    。
    、
    :
    ;
    !
    ·
    ?
    “
    ”
    )
    (
    【
    】
    [
    ]
    ●
    # the line below contains an IDEOGRAPHIC SPACE character (Used as a space in Chinese)
     
    
    # English Stop Words
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Jun 17 08:00:22 GMT 2017
    - 310 bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/opensearch/log/exentity/ClickLog.java

            return "ClickLog [queryRequestedAt=" + queryRequestedAt + ", requestedAt=" + requestedAt + ", queryId=" + queryId + ", docId="
                    + docId + ", userSessionId=" + userSessionId + ", url=" + url + ", order=" + order + ", docMeta=" + docMeta + "]";
        }
    
        @Override
        public String getEventType() {
            return "click";
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 2.7K bytes
    - Click Count (0)
Back to Top