Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 907 for iets (0.01 sec)

  1. src/main/java/org/codelibs/fess/app/pager/DataConfigPager.java

            return DEFAULT_CURRENT_PAGE_NUMBER;
        }
    
        /**
         * Gets the total number of records across all pages.
         *
         * @return the total record count
         */
        public int getAllRecordCount() {
            return allRecordCount;
        }
    
        /**
         * Sets the total number of records across all pages.
         *
         * @param allRecordCount the total record count
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/pager/GroupPager.java

            return DEFAULT_CURRENT_PAGE_NUMBER;
        }
    
        /**
         * Gets the total number of records available across all pages.
         *
         * @return the total record count
         */
        public int getAllRecordCount() {
            return allRecordCount;
        }
    
        /**
         * Sets the total number of records available across all pages.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/query/StoredLtrQueryBuilder.java

            return Objects.hash(modelName, featureSetName, storeName, params, activeFeatures);
        }
    
        /**
         * Gets the name of the LTR model.
         *
         * @return The model name.
         */
        public String modelName() {
            return modelName;
        }
    
        /**
         * Sets the name of the LTR model.
         *
         * @param modelName The model name.
         * @return This query builder.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/service/RoleService.java

                op.rangeSize(fessConfig.getPagingPageRangeSizeAsInteger());
            }).createPageNumberList());
    
            return roleList;
        }
    
        /**
         * Gets a role by its ID.
         * @param id The ID of the role.
         * @return An optional entity of the role.
         */
        public OptionalEntity<Role> getRole(final String id) {
            return roleBhv.selectByPK(id);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/crawler/interval/FessIntervalController.java

        public FessIntervalController() {
            super();
        }
    
        /**
         * Gets the delay time in milliseconds after processing a URL.
         *
         * @return the delay time in milliseconds after processing
         */
        public long getDelayMillisAfterProcessing() {
            return delayMillisAfterProcessing;
        }
    
        /**
         * Sets the delay time in milliseconds after processing a URL.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/entity/HighlightInfo.java

            fragmentOffset = fessConfig.getQueryHighlightFragmentOffsetAsInteger();
        }
    
        /**
         * Gets the highlighting type.
         *
         * @return the highlighting type
         */
        public String getType() {
            return type;
        }
    
        /**
         * Sets the highlighting type with fluent interface.
         *
         * @param type the highlighting type to set
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  7. okhttp/src/commonJvmAndroid/kotlin/okhttp3/OkHttpClient.kt

         * the server responds with `HTTP/1.0`, that will be exposed by [Response.protocol].
         *
         * [alpn]: http://tools.ietf.org/html/draft-ietf-tls-applayerprotoneg
         * [rfc_2616]: http://www.w3.org/Protocols/rfc2616/rfc2616.html
         * [rfc_7540]: https://tools.ietf.org/html/rfc7540
         * [rfc_7540_34]: https://tools.ietf.org/html/rfc7540#section-3.4
         *
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon May 05 16:01:00 UTC 2025
    - 51.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/ScheduledJobService.java

                cb.query().setAvailable_Equal(Boolean.TRUE);
                cb.query().setUpdatedTime_GreaterThan(updateTime);
            });
        }
    
        /**
         * Gets a scheduled job by its ID.
         * @param id The ID of the scheduled job.
         * @return An optional entity of the scheduled job.
         */
        public OptionalEntity<ScheduledJob> getScheduledJob(final String id) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

            }, "ThumbnailMigrator").start();
        }
    
        /**
         * Sets the thumbnail path cache size.
         *
         * @param thumbnailPathCacheSize the cache size to set
         */
        public void setThumbnailPathCacheSize(final int thumbnailPathCacheSize) {
            this.thumbnailPathCacheSize = thumbnailPathCacheSize;
        }
    
        /**
         * Sets the image file extension for thumbnails.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/dict/stopwords/StopwordsItem.java

            if (id == 0) {
                // create
                newInput = input;
            }
        }
    
        /**
         * Gets the new stopword.
         *
         * @return The new stopword.
         */
        public String getNewInput() {
            return newInput;
        }
    
        /**
         * Sets the new stopword.
         *
         * @param newInput The new stopword.
         */
        public void setNewInput(final String newInput) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.6K bytes
    - Viewed (0)
Back to top