Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 781 - 787 of 787 for api2 (0.17 seconds)

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

            return System.getProperty(Constants.FESS_LOG_LEVEL, Level.WARN.toString());
        }
    
        private static final String[] LLM_LOG_PACKAGES =
                { "org.codelibs.fess.llm", "org.codelibs.fess.chat", "org.codelibs.fess.api.chat", "org.codelibs.fess.app.web.chat" };
    
        /**
         * Sets the log level for LLM-related packages.
         *
         * @param level the log level to set
         */
        public void setLlmLogLevel(final String level) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 43.2K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java

    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.codelibs.fess.util.ComponentUtil;
    import org.codelibs.fess.util.MemoryUtil;
    import org.codelibs.nekohtml.parsers.DOMParser;
    import org.junit.jupiter.api.Test;
    import org.junit.jupiter.api.TestInfo;
    import org.lastaflute.di.core.exception.ComponentNotFoundException;
    import org.lastaflute.di.core.factory.SingletonLaContainerFactory;
    import org.w3c.dom.Document;
    import org.w3c.dom.Node;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 62.9K bytes
    - Click Count (0)
  3. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

            //custom options from user
            if (typeof options !== 'object' || options === null)
                options = {};
    
            //allow setting options with data attributes
            //data-api options will be overwritten with custom javascript options
            options = $.extend(this.element.data(), options);
    
            //html template for the picker UI
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 26 01:49:09 GMT 2024
    - 64.8K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/curl/io/IOIntegrationTest.java

        }
    
        // --- No params: URL unchanged test ---
    
        @Test
        public void test_NoParams_UrlUnchanged() throws Exception {
            // ## Arrange ##
            String originalUrl = "http://example.com/api/v1/resource";
            final AtomicReference<URL> capturedUrl = new AtomicReference<>();
            CurlRequest req = new OpenOverrideCurlRequest(Curl.Method.GET, originalUrl, u -> {
                capturedUrl.set(u);
    Created: Thu Apr 02 15:34:12 GMT 2026
    - Last Modified: Sat Mar 21 12:00:34 GMT 2026
    - 44.1K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java

        /** Buffer size reserved when truncating context to fit within max chars limit. */
        protected static final int CONTEXT_TRUNCATION_BUFFER = 100;
    
        /** The HTTP client used for API communication. */
        protected CloseableHttpClient httpClient;
    
        /** Cached availability status of the LLM provider. */
        protected volatile Boolean cachedAvailability = null;
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 72K bytes
    - Click Count (0)
  6. src/main/resources/fess_indices/_aws/fess.json

    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 07:52:55 GMT 2026
    - 117.5K bytes
    - Click Count (0)
  7. src/main/resources/fess_indices/_cloud/fess.json

    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 07:52:55 GMT 2026
    - 117.5K bytes
    - Click Count (0)
Back to Top