Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 4,428 for THIS (0.01 sec)

  1. src/main/java/org/codelibs/fess/opensearch/query/StoredLtrQueryBuilder.java

            }
            if (storeName != null) {
                builder.field(STORE_NAME.getPreferredName(), storeName);
            }
            if (this.params != null && !this.params.isEmpty()) {
                builder.field(PARAMS.getPreferredName(), this.params);
            }
            if (activeFeatures != null && !activeFeatures.isEmpty()) {
                builder.field(ACTIVE_FEATURES.getPreferredName(), activeFeatures);
    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. okhttp-sse/src/main/kotlin/okhttp3/sse/internal/RealEventSource.kt

          if (!response.isSuccessful) {
            listener.onFailure(this, null, response)
            return
          }
    
          val body = response.body
    
          if (!body.isEventStream()) {
            listener.onFailure(
              this,
              IllegalStateException("Invalid content-type: ${body.contentType()}"),
              response,
            )
            return
          }
    
          // This is a long-lived response. Cancel full-call timeouts.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 30 11:47:47 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/log/bsentity/BsSearchLog.java

            registerModifiedProperty("accessType");
            this.accessType = value;
        }
    
        public String getClientIp() {
            checkSpecifiedProperty("clientIp");
            return convertEmptyToNull(clientIp);
        }
    
        public void setClientIp(String value) {
            registerModifiedProperty("clientIp");
            this.clientIp = value;
        }
    
        public Long getHitCount() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 12.2K bytes
    - Viewed (0)
  4. src/main/webapp/js/admin/popper.min.js

    document.body.style[r])return r}return null}function H(){return this.state.isDestroyed=!0,W(this.modifiers,'applyStyle')&&(this.popper.removeAttribute('x-placement'),this.popper.style.position='',this.popper.style.top='',this.popper.style.left='',this.popper.style.right='',this.popper.style.bottom='',this.popper.style.willChange='',this.popper.style[B('transform')]=''),this.disableEventListeners(),this.options.removeOnDestroy&&this.popper.parentNode.removeChild(this.popper),this}function A(e){var t=e.ownerDocument;return...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/beans/util/CopyOptions.java

         *
         * @return This instance itself
         */
        public CopyOptions excludeNull() {
            excludesNull = true;
            return this;
        }
    
        /**
         * Excludes properties with only whitespace from the operation.
         *
         * @return This instance itself
         */
        public CopyOptions excludeWhitespace() {
            excludesWhitespace = true;
            return this;
        }
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 17.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractEntity.java

            public DocMeta id(String id) {
                this.id = id;
                myuniqueByProperty("_id");
                return this;
            }
    
            public String id() {
                return id;
            }
    
            public DocMeta version(Long version) {
                this.version = version;
                return this;
            }
    
            public Long version() {
                return version;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 11K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/opensearch/log/allcommon/EsAbstractEntity.java

            public DocMeta id(String id) {
                this.id = id;
                myuniqueByProperty("_id");
                return this;
            }
    
            public String id() {
                return id;
            }
    
            public DocMeta version(Long version) {
                this.version = version;
                return this;
            }
    
            public Long version() {
                return version;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/crawlinginfo/EditForm.java

     * This form handles the editing of crawling session data, which tracks
     * the status and metadata of web crawling operations.
     *
     */
    public class EditForm {
    
        /**
         * Creates a new EditForm instance.
         */
        public EditForm() {
            // Default constructor
        }
    
        /**
         * The CRUD operation mode for this form.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/exception/DataStoreCrawlingException.java

         * @param e the underlying exception that caused this error
         * @param abort whether the crawling process should be aborted due to this error
         */
        public DataStoreCrawlingException(final String url, final String message, final Exception e, final boolean abort) {
            super(message, e);
            this.url = url;
            this.abort = abort;
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  10. okhttp-testing-support/src/main/kotlin/okhttp3/TestValueFactory.kt

          proxySelector = proxySelector,
        )
    
      fun newHttpsAddress(
        uriHost: String = this.uriHost,
        uriPort: Int = this.uriPort,
        proxy: Proxy? = null,
        proxySelector: ProxySelector = this.proxySelector,
        sslSocketFactory: SSLSocketFactory? = this.sslSocketFactory,
        hostnameVerifier: HostnameVerifier? = this.hostnameVerifier,
      ): Address =
        Address(
          uriHost = uriHost,
          uriPort = uriPort,
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri May 30 21:28:20 UTC 2025
    - 7.7K bytes
    - Viewed (0)
Back to top