Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for guinea (0.06 sec)

  1. README.md

    Fess also contains a Crawler, which can crawl documents on a [web server](https://fess.codelibs.org/15.3/admin/webconfig-guide.html), [file system](https://fess.codelibs.org/15.3/admin/fileconfig-guide.html), or [Data Store](https://fess.codelibs.org/15.3/admin/dataconfig-guide.html) (such as a CSV or database). Many file formats are supported including (but not limited to): Microsoft Office, PDF, and zip.
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 00:28:33 UTC 2025
    - 7.8K bytes
    - Viewed (2)
  2. .github/workflows/maven.yml

    # This workflow will build a Java project with Maven
    # For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
    
    name: Java CI with Maven
    
    on:
      push:
        branches:
        - master
        - "*.x"
      pull_request:
        branches:
        - master
        - "*.x"
    
    jobs:
      build:
        runs-on: ${{ matrix.os }}
    
        strategy:
          matrix:
    Registered: Sat Dec 20 09:13:53 UTC 2025
    - Last Modified: Thu Nov 20 13:34:13 UTC 2025
    - 677 bytes
    - Viewed (0)
  3. .github/workflows/maven.yml

    # This workflow will build a Java project with Maven
    # For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
    
    name: Java CI with Maven
    
    on:
      push:
        branches:
        - master
        - "*.x"
      pull_request:
        branches:
        - master
        - "*.x"
      workflow_dispatch:
    
    jobs:
      build:
        runs-on: ubuntu-24.04
        env:
          PARENT_BRANCH: main
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sun Nov 23 06:47:15 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  4. CLAUDE.md

    # CLAUDE.md - Fess Suggest Project Guide
    
    > AI assistant guidance for the Fess Suggest project - a Java library providing intelligent search suggestions built on OpenSearch.
    
    ## Project Overview
    
    **Fess Suggest** delivers auto-completion, search suggestions, and popular word analytics with multi-language support.
    
    **Technology Stack:**
    - Java 21+, Maven
    - OpenSearch (provided dependency)
    - Apache Lucene (query parsing, text analysis)
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  5. CLAUDE.md

    # CLAUDE.md - Fess Crawler Development Guide
    
    Quick reference for AI assistants working on the Fess Crawler project.
    
    ## Project Overview
    
    **Fess Crawler** is a Java-based web crawling framework for enterprise content extraction.
    
    ### Essential Info
    
    - **Language**: Java 21+
    - **Build**: Maven 3.x
    - **License**: Apache 2.0
    - **DI**: LastaFlute DI
    - **Repo**: https://github.com/codelibs/fess-crawler
    
    ### Tech Stack
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Fri Nov 28 17:31:34 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  6. src/main/resources/fess_label_it.properties

    labels.facsimileTelephoneNumber=Numero di fax
    labels.user_postOfficeBox=Casella postale
    labels.postOfficeBox=Casella postale
    labels.user_initials=Iniziali
    labels.initials=Iniziali
    labels.user_carLicense=Patente di guida
    labels.carLicense=Patente di guida
    labels.user_mobile=Cellulare
    labels.mobile=Cellulare
    labels.user_postalAddress=Indirizzo postale
    labels.postalAddress=Indirizzo postale
    labels.user_city=Città
    labels.city=Città
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Dec 04 09:16:23 UTC 2025
    - 46.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/SystemHelper.java

         * @param name The name of the help page.
         * @return The help link.
         */
        public String getHelpLink(final String name) {
            final String url = ComponentUtil.getFessConfig().getOnlineHelpBaseLink() + name + "-guide.html";
            return getHelpUrl(url);
        }
    
        /**
         * Gets the help URL for a given base URL.
         *
         * @param url The base URL.
         * @return The localized help URL.
         */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 08:30:43 UTC 2025
    - 36.6K bytes
    - Viewed (0)
  8. src/main/resources/fess_config.properties

    #                                                     ------
    
    # Base link for online help.
    online.help.base.link=https://fess.codelibs.org/{lang}/{version}/admin/
    # Installation guide link for online help.
    online.help.installation=https://fess.codelibs.org/{lang}/{version}/install/install.html
    # End-of-life information link for online help.
    online.help.eol=https://fess.codelibs.org/{lang}/eol.html
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Dec 11 09:47:03 UTC 2025
    - 54.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /**
         * Get the value for the key 'online.help.installation'. <br>
         * The value is, e.g. https://fess.codelibs.org/{lang}/{version}/install/install.html <br>
         * comment: Installation guide link for online help.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getOnlineHelpInstallation();
    
        /**
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 525.7K bytes
    - Viewed (2)
Back to top