Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 21 - 30 of 363 for tine (0.01 seconds)

  1. src/main/java/org/codelibs/fess/auth/chain/CommandChain.java

                for (;;) {
                    try {
                        final String line = br.readLine();
                        if (line == null) {
                            break;
                        }
                        if (logger.isDebugEnabled()) {
                            logger.debug(line);
                        }
                        list.add(line);
                        if (list.size() > maxLineBuffer) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 14.4K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/helper/NotificationHelperTest.java

            StringBuilder longSubject = new StringBuilder();
            StringBuilder longContent = new StringBuilder();
            for (int i = 0; i < 100; i++) {
                longSubject.append("Subject Line ").append(i).append(" ");
                longContent.append("Content Line ").append(i).append(" with more text. ");
            }
    
            discloser.setSubject(longSubject.toString());
            discloser.setPlainText(longContent.toString());
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 20K bytes
    - Click Count (0)
  3. dbflute_fess/dfprop/databaseInfoMap.dfprop

    # | FLOAT         | java.math.BigDecimal | decimal?      |
    # | DOUBLE        | java.math.BigDecimal | decimal?      |
    # | DATE          | java.util.Date       | DateTime?     |
    # | TIME          | java.sql.Time        | DateTime?     |
    # | TIMESTAMP     | java.sql.Timestamp   | DateTime?     |
    # | BIT           | java.lang.Boolean    | bool?         |
    # | BOOLEAN       | java.lang.Boolean    | bool?         |
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 7.3K bytes
    - Click Count (0)
  4. MIGRATION.md

    ```python
    import json
    
    with open('documents.json', 'r') as infile, \
         open('fess-documents.json', 'w') as outfile:
        for line in infile:
            doc = json.loads(line)
    
            # Transform to Fess format
            fess_doc = {
                "url": doc.get("url", ""),
                "title": doc.get("title", ""),
                "content": doc.get("content", ""),
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 06 12:40:11 GMT 2025
    - 23.2K bytes
    - Click Count (0)
  5. src/main/resources/fess_label_en.properties

    labels.crawling_info_CrawlerStartTime=Crawler Start Time
    labels.crawling_info_CrawlerEndTime=Crawler End Time
    labels.crawling_info_CrawlerExecTime=Crawler Execution Time
    labels.crawling_info_CrawlerStatus=Crawler Status
    labels.crawling_info_WebFsCrawlExecTime=Crawl Execution Time (Web/File)
    labels.crawling_info_WebFsCrawlStartTime=Crawl Start Time (Web/File)
    labels.crawling_info_WebFsCrawlEndTime=Crawl End Time (Web/File)
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 48.9K bytes
    - Click Count (0)
  6. CLAUDE.md

    | Testing | JUnit 4/5, UTFlute, REST Assured |
    
    ## Development Commands
    
    ### Setup
    ```bash
    mvn antrun:run          # Download OpenSearch plugins (required before first build)
    mvn dbflute:download    # One-time setup for DBFlute
    mvn dbflute:freegen     # Generate DBFlute source code
    mvn license:format      # Add license headers
    ```
    
    ### Build
    ```bash
    mvn package             # Standard build
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 09:48:10 GMT 2026
    - 7.8K bytes
    - Click Count (0)
  7. .teamcity/scripts/CheckRemoteProjectRef.java

            Map<String, String> out = new LinkedHashMap<>();
            List<String> lines = Files.readAllLines(file, StandardCharsets.UTF_8);
            for (String line : lines) {
                String trimmed = line.trim();
                if (trimmed.isEmpty() || trimmed.startsWith("#") || trimmed.startsWith("!")) {
                    continue;
                }
                int idx = trimmed.indexOf('=');
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Jan 20 03:53:25 GMT 2026
    - 3.4K bytes
    - Click Count (0)
  8. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildEnvironment.kt

            else -> parent.parentOrRoot()
        }
    }
    
    
    fun Project.releasedVersionsFile() = repoRoot().file("released-versions.json")
    
    
    /**
     * We use command line Git instead of JGit, because JGit's `Repository.resolve` does not work with worktrees.
     */
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Mar 25 08:51:12 GMT 2026
    - 4.9K bytes
    - Click Count (1)
  9. src/main/resources/fess_indices/fess/zh-cn/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. CONTRIBUTING.md

    This can save everyone a lot of time and frustration.
    
    For any non-trivial change, we need to be able to answer these questions:
    
    * Why is this change done? What's the use case?
    * For user-facing features, what will the API look like?
    * What test cases should it have? What could go wrong?
    * How will it roughly be implemented? We'll happily provide code pointers to save you time.
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 27 18:43:39 GMT 2026
    - 19.1K bytes
    - Click Count (0)
Back to Top