Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 438 for Otherwise (0.09 sec)

  1. src/main/java/org/codelibs/fess/helper/IntervalControlHelper.java

         *
         * @return true if the crawler is running, false otherwise
         */
        public boolean isCrawlerRunning() {
            return crawlerRunning;
        }
    
        /**
         * Sets the crawler running status.
         *
         * @param crawlerRunning true to indicate the crawler is running, false otherwise
         */
        public void setCrawlerRunning(final boolean crawlerRunning) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/pager/CrawlingInfoPager.java

         *
         * @return true if a previous page exists, false otherwise
         */
        public boolean isExistPrePage() {
            return existPrePage;
        }
    
        /**
         * Sets whether a previous page exists before the current page.
         *
         * @param existPrePage true if a previous page exists, false otherwise
         */
        public void setExistPrePage(final boolean existPrePage) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/pager/FailureUrlPager.java

         * Checks if a previous page exists.
         *
         * @return true if a previous page exists, false otherwise
         */
        public boolean isExistPrePage() {
            return existPrePage;
        }
    
        /**
         * Sets whether a previous page exists.
         *
         * @param existPrePage true if a previous page exists, false otherwise
         */
        public void setExistPrePage(final boolean existPrePage) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/io/ResourceBundleUtil.java

            return convertMap(bundle);
        }
    
        /**
         * Returns the {@literal locale} if not {@literal null}, otherwise returns the default locale.
         *
         * @param locale the locale
         * @return the {@literal locale} if not {@literal null}, otherwise the default locale
         */
        protected static Locale getLocale(final Locale locale) {
            if (locale != null) {
                return locale;
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  5. okhttp-zstd/README.md

    OkHttp Zstandard (zstd) Integration
    ===================================
    
    This module enables [Zstandard (zstd)][1] response compression in addition to Gzip, as long as
    the `Accept-Encoding` header is not otherwise set. Web servers must be configured to return zstd
    responses.
    
    Note that zstd is not used for sending requests.
    
    ```java
    OkHttpClient client = new OkHttpClient.Builder()
      .addInterceptor(ZstdInterceptor.INSTANCE)
      .build();
    ```
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jul 19 13:41:00 UTC 2025
    - 556 bytes
    - Viewed (0)
  6. okhttp/src/commonJvmAndroid/kotlin/okhttp3/ResponseBody.kt

       * used to determine the charset of the response bytes.
       *
       * Otherwise if the response has a `Content-Type` header that specifies a charset, that is used
       * to determine the charset of the response bytes.
       *
       * Otherwise the response bytes are decoded as UTF-8.
       */
      fun charStream(): Reader =
        reader ?: BomAwareReader(source(), charset()).also {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue May 27 14:51:25 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/dict/protwords/ProtwordsItem.java

        }
    
        /**
         * Checks if this item has been updated.
         * @return true if updated, false otherwise
         */
        public boolean isUpdated() {
            return newInput != null;
        }
    
        /**
         * Checks if this item has been deleted.
         * @return true if deleted, false otherwise
         */
        public boolean isDeleted() {
            return isUpdated() && newInput.length() == 0;
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/pager/SynonymPager.java

            this.allPageCount = allPageCount;
        }
    
        /**
         * Checks if a previous page exists.
         *
         * @return true if a previous page exists, false otherwise.
         */
        public boolean isExistPrePage() {
            return existPrePage;
        }
    
        /**
         * Sets the flag for the existence of a previous page.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/crawler/util/FieldConfigs.java

         *
         * @param fieldName the name of the field to get configuration for
         * @return an OptionalThing containing the Config if the field exists and has a non-blank value,
         *         otherwise an empty OptionalThing
         */
        public OptionalThing<Config> getConfig(final String fieldName) {
            final String value = params.get(fieldName);
            if (StringUtil.isNotBlank(value)) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/pager/DuplicateHostPager.java

         *
         * @return true if there is a previous page, false otherwise
         */
        public boolean isExistPrePage() {
            return existPrePage;
        }
    
        /**
         * Sets whether there is a previous page available.
         *
         * @param existPrePage true if there is a previous page, false otherwise
         */
        public void setExistPrePage(final boolean existPrePage) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.5K bytes
    - Viewed (0)
Back to top