Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 183 for machine (0.03 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/boostdoc/CreateForm.java

        public Integer crudMode;
    
        /** URL expression pattern to match documents for boosting */
        @Required
        @Size(max = 10000)
        public String urlExpr;
    
        /** Boost expression to apply to matching documents */
        @Required
        @Size(max = 10000)
        public String boostExpr;
    
        /** Sort order for displaying boost configurations */
        @Required
        @Min(value = 0)
        @Max(value = 2147483647)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java

        }
    
        /**
         * Retrieves related queries for a given search term.
         * The search is performed using the current virtual host context and
         * the query term is converted to lowercase for case-insensitive matching.
         *
         * @param query the search term to find related queries for
         * @return an array of related query strings, or empty array if none found
         */
        public String[] getRelatedQueries(final String query) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/service/RelatedContentService.java

        /**
         * Retrieves a paginated list of related content entities.
         *
         * @param relatedContentPager the pager object containing pagination and search parameters
         * @return a list of RelatedContent entities matching the specified criteria
         */
        public List<RelatedContent> getRelatedContentList(final RelatedContentPager relatedContentPager) {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  4. .github/workflows/build.yml

            id: avd-cache
            with:
              path: |
                ~/.android/avd/*
                ~/.android/adb*
              key: avd-${{ matrix.api-level }}
    
          - name: Create AVD and generate snapshot for caching
            if: steps.avd-cache.outputs.cache-hit != 'true'
            uses: reactivecircus/android-emulator-runner@v2
            with:
              api-level: ${{ matrix.api-level }}
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Aug 21 07:15:58 UTC 2025
    - 18.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/query/TermQueryCommand.java

            context.addHighlightedQuery(text);
            return QueryBuilders.termQuery(field, text).boost(boost);
        }
    
        /**
         * Converts a term query to a wildcard query for URL field matching.
         *
         * @param fessConfig the Fess configuration
         * @param context the query context
         * @param termQuery the term query to convert
         * @param boost the boost value to apply
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  6. src/main/webapp/js/admin/plugins/form-validator/lang/de.js

    hochzuladen versuchen, ist zu groß (max %s)",wrongFileType:"Nur Dateien vom Typ %s sind zulässig",groupCheckedRangeStart:"Wählen Sie zwischen",groupCheckedTooFewStart:"Dann müssen Sie zumindest sicher,",groupCheckedTooManyStart:"Sie können nicht mehr als zu machen",groupCheckedEnd:" Auswahl",badCreditCard:"Sie haben eine ungültige Kreditkartennummer eingegeben",badCVV:"Sie haben eine falsche CVV eingegeben",wrongFileDim:"Illegale Bildgröße,",imageTooTall:"Bild kann nicht größer sein als",imageTooWide:"Bild...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 2.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/service/BoostDocumentRuleService.java

        /**
         * Gets a paginated list of boost document rules.
         * @param boostDocumentRulePager The pager with search criteria and pagination settings.
         * @return List of boost document rules matching the criteria.
         */
        public List<BoostDocumentRule> getBoostDocumentRuleList(final BoostDocPager boostDocumentRulePager) {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/GroupService.java

         * Updates the pager with pagination information including page numbers and ranges.
         *
         * @param groupPager the pager containing pagination and search criteria
         * @return a list of groups matching the criteria
         */
        public List<Group> getGroupList(final GroupPager groupPager) {
    
            final PagingResultBean<Group> groupList = groupBhv.selectPage(cb -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/ViewHelper.java

        /** Cache key for cache message */
        protected static final String CACHE_MSG = "cache_msg";
    
        /** Pattern for matching local file paths */
        protected static final Pattern LOCAL_PATH_PATTERN = Pattern.compile("^file:/+[a-zA-Z]:");
    
        /** Pattern for matching shared folder paths */
        protected static final Pattern SHARED_FOLDER_PATTERN = Pattern.compile("^file:/+[^/]\\.");
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 52.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/crawler/util/FieldConfigs.java

             * Returns true if "cache" is present in the values or if there's a single "true" value
             * for backward compatibility.
             *
             * @return true if caching is enabled, false otherwise
             */
            public boolean isCache() {
                for (final String value : values) {
                    if ("cache".equalsIgnoreCase(value)) {
                        return true;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.3K bytes
    - Viewed (0)
Back to top